Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/haupt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
SKIP_HYRISE_MASTER: false
SKIP_MONETDB: false
SKIP_DUCKDB: false
SCALE_FACTOR: 1
SCALE_FACTOR: 2
CMAKE_GENERATOR: Ninja

jobs:
Expand Down Expand Up @@ -55,9 +55,9 @@ jobs:
- name: Determine core and client counts for database comparison
id: core_client_counts
run: |
core_count=`grep -Pc '^processor\t' /proc/cpuinfo`
client_count=$(python -c "import math; print(int(math.ceil(${core_count}*0.75)))")
comparison_runtime=$(python -c "print(min(1800, max(300, int(${{ env.SCALE_FACTOR }}*3500))))")
core_count=1
client_count=1
comparison_runtime=60
echo "Using ${core_count} cores and ${client_count} clients, comparison benchmarks running for ${comparison_runtime} seconds."

echo "CORE_COUNT=${core_count}" >> $GITHUB_ENV
Expand Down Expand Up @@ -202,9 +202,9 @@ jobs:
- name: Determine client and core counts for database comparison
id: core_client_counts
run: |
core_count=`grep -Pc '^processor\t' /proc/cpuinfo`
client_count=$(python -c "import math; print(int(math.ceil(${core_count}*0.75)))")
comparison_runtime=$(python -c "print(min(1800, max(300, int(${{ env.SCALE_FACTOR }}*3500))))")
core_count=1
client_count=1
comparison_runtime=60
echo "Using ${core_count} cores and ${client_count} clients, comparison benchmarks running for ${comparison_runtime} seconds."

echo "CORE_COUNT=${core_count}" >> $GITHUB_ENV
Expand Down