Skip to content

Commit

Permalink
WIP: run benchmarks on all precisions
Browse files Browse the repository at this point in the history
  • Loading branch information
soonum committed Jan 7, 2025
1 parent 8ba03a6 commit 4a7f25c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/benchmark_gpu_integer_common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ jobs:
name: Cuda benchmarks (${{ inputs.profile }})
needs: [ prepare-matrix, setup-instance ]
runs-on: ${{ needs.setup-instance.outputs.runner-name }}
timeout-minutes: 1440 # 24 hours
# timeout-minutes: 1440 # 24 hours
timeout-minutes: 2880 # 48 hours
continue-on-error: true
strategy:
fail-fast: false
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/benchmark_integer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,13 @@ jobs:
group: ${{ github.workflow }}_${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
continue-on-error: true
timeout-minutes: 1440 # 24 hours
# timeout-minutes: 1440 # 24 hours
timeout-minutes: 2880 # 48 hours
strategy:
max-parallel: 1
matrix:
command: [ integer, integer_multi_bit]
# command: [ integer, integer_multi_bit]
command: [ integer ]
op_flavor: ${{ fromJson(needs.prepare-matrix.outputs.op_flavor) }}
bench_type: ${{ fromJSON(needs.prepare-matrix.outputs.bench_type) }}
steps:
Expand Down Expand Up @@ -151,10 +153,10 @@ jobs:
make BENCH_OP_FLAVOR=${{ matrix.op_flavor }} BENCH_TYPE=${{ matrix.bench_type }} bench_${{ matrix.command }}
# Run these benchmarks only once per benchmark type
- name: Run compression benchmarks with AVX512
if: matrix.op_flavor == 'default' && matrix.command == 'integer'
run: |
make BENCH_TYPE=${{ matrix.bench_type }} bench_integer_compression
# - name: Run compression benchmarks with AVX512
# if: matrix.op_flavor == 'default' && matrix.command == 'integer'
# run: |
# make BENCH_TYPE=${{ matrix.bench_type }} bench_integer_compression

- name: Parse results
run: |
Expand Down

0 comments on commit 4a7f25c

Please sign in to comment.