Skip to content

Commit dfedfc5

Browse files
committed
[no-ci] WIP: bench only mul and div_rem
1 parent cb247dd commit dfedfc5

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/benchmark_cpu_common.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ jobs:
148148
name: benchmark_cpu_common/integer-benchmarks
149149
needs: [ prepare-matrix, setup-instance ]
150150
runs-on: ${{ needs.setup-instance.outputs.runner-name }}
151-
timeout-minutes: 1440 # 24 hours
151+
# timeout-minutes: 1440 # 24 hours
152+
timeout-minutes: 2880 # 48 hours
152153
strategy:
153154
max-parallel: 1
154155
matrix:

tfhe-benchmark/benches/integer/bench.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3540,10 +3540,10 @@ criterion_group!(
35403540

35413541
criterion_group!(
35423542
default_dedup_ops,
3543-
add_parallelized,
3544-
// mul_parallelized,
3545-
// div_rem_parallelized,
3546-
bitand_parallelized,
3543+
//add_parallelized,
3544+
mul_parallelized,
3545+
div_rem_parallelized,
3546+
/*bitand_parallelized,
35473547
bitnot,
35483548
left_shift_parallelized,
35493549
rotate_left_parallelized,
@@ -3564,7 +3564,7 @@ criterion_group!(
35643564
scalar_rotate_left_parallelized,
35653565
scalar_max_parallelized,
35663566
scalar_eq_parallelized,
3567-
scalar_gt_parallelized,
3567+
scalar_gt_parallelized,*/
35683568
);
35693569

35703570
criterion_group!(
@@ -3854,7 +3854,7 @@ fn go_through_cpu_bench_groups(val: &str) {
38543854
}
38553855
"fast_default" => {
38563856
default_dedup_ops();
3857-
vector_find();
3857+
// vector_find();
38583858
}
38593859
"smart" => {
38603860
smart_ops();

0 commit comments

Comments
 (0)