@@ -97,6 +97,7 @@ fn mem_optimized_pbs<Scalar: UnsignedTorus + CastInto<usize> + Serialize>(
9797 ) ;
9898
9999 bench_id = format ! ( "{bench_name}::{name}" ) ;
100+ println ! ( "{bench_id}" ) ;
100101
101102 bench_group. bench_function ( & bench_id, |b| {
102103 b. iter ( || {
@@ -114,6 +115,7 @@ fn mem_optimized_pbs<Scalar: UnsignedTorus + CastInto<usize> + Serialize>(
114115 }
115116 BenchmarkType :: Throughput => {
116117 bench_id = format ! ( "{bench_name}::throughput::{name}" ) ;
118+ println ! ( "{bench_id}" ) ;
117119 let blocks: usize = 1 ;
118120 let elements = throughput_num_threads ( blocks, 1 ) ;
119121 bench_group. throughput ( Throughput :: Elements ( elements) ) ;
@@ -326,6 +328,7 @@ fn mem_optimized_batched_pbs<Scalar: UnsignedTorus + CastInto<usize> + Serialize
326328 ) ;
327329
328330 bench_id = format ! ( "{bench_name}::{name}" ) ;
331+ println ! ( "{bench_id}" ) ;
329332 bench_group. bench_function ( & bench_id, |b| {
330333 b. iter ( || {
331334 batch_programmable_bootstrap_lwe_ciphertext_mem_optimized (
@@ -342,6 +345,7 @@ fn mem_optimized_batched_pbs<Scalar: UnsignedTorus + CastInto<usize> + Serialize
342345 }
343346 BenchmarkType :: Throughput => {
344347 bench_id = format ! ( "{bench_name}::throughput::{name}" ) ;
348+ println ! ( "{bench_id}" ) ;
345349 let blocks: usize = 1 ;
346350 let elements = throughput_num_threads ( blocks, 1 ) ;
347351 bench_group. throughput ( Throughput :: Elements ( elements) ) ;
@@ -552,6 +556,7 @@ fn multi_bit_pbs<
552556 ) ;
553557
554558 bench_id = format ! ( "{bench_name}::{name}::parallelized" ) ;
559+ println ! ( "{bench_id}" ) ;
555560 bench_group. bench_function ( & bench_id, |b| {
556561 b. iter ( || {
557562 multi_bit_programmable_bootstrap_lwe_ciphertext (
@@ -568,6 +573,7 @@ fn multi_bit_pbs<
568573 }
569574 BenchmarkType :: Throughput => {
570575 bench_id = format ! ( "{bench_name}::throughput::{name}" ) ;
576+ println ! ( "{bench_id}" ) ;
571577 let blocks: usize = 1 ;
572578 let elements = throughput_num_threads ( blocks, 1 ) ;
573579 bench_group. throughput ( Throughput :: Elements ( elements) ) ;
@@ -779,6 +785,7 @@ fn mem_optimized_pbs_ntt(c: &mut Criterion) {
779785 buffers. resize ( stack_size) ;
780786
781787 bench_id = format ! ( "{bench_name}::{name}" ) ;
788+ println ! ( "{bench_id}" ) ;
782789 bench_group. bench_function ( & bench_id, |b| {
783790 b. iter ( || {
784791 programmable_bootstrap_ntt64_lwe_ciphertext_mem_optimized (
@@ -795,6 +802,7 @@ fn mem_optimized_pbs_ntt(c: &mut Criterion) {
795802 }
796803 BenchmarkType :: Throughput => {
797804 bench_id = format ! ( "{bench_name}::throughput::{name}" ) ;
805+ println ! ( "{bench_id}" ) ;
798806 let blocks: usize = 1 ;
799807 let elements = throughput_num_threads ( blocks, 1 ) ;
800808 bench_group. throughput ( Throughput :: Elements ( elements) ) ;
@@ -1020,6 +1028,7 @@ mod cuda {
10201028 let cuda_indexes = CudaIndexes :: new ( & h_indexes, & streams, 0 ) ;
10211029
10221030 bench_id = format ! ( "{bench_name}::{name}" ) ;
1031+ println ! ( "{bench_id}" ) ;
10231032 {
10241033 bench_group. bench_function ( & bench_id, |b| {
10251034 b. iter ( || {
@@ -1043,6 +1052,7 @@ mod cuda {
10431052 let gpu_count = get_number_of_gpus ( ) as usize ;
10441053
10451054 bench_id = format ! ( "{bench_name}::throughput::{name}" ) ;
1055+ println ! ( "{bench_id}" ) ;
10461056 let blocks: usize = 1 ;
10471057 let elements = throughput_num_threads ( blocks, 1 ) ;
10481058 let elements_per_stream = elements as usize / gpu_count;
@@ -1280,6 +1290,7 @@ mod cuda {
12801290 let cuda_indexes = CudaIndexes :: new ( & h_indexes, & streams, 0 ) ;
12811291
12821292 bench_id = format ! ( "{bench_name}::{name}" ) ;
1293+ println ! ( "{bench_id}" ) ;
12831294 bench_group. bench_function ( & bench_id, |b| {
12841295 b. iter ( || {
12851296 cuda_multi_bit_programmable_bootstrap_lwe_ciphertext (
@@ -1301,6 +1312,7 @@ mod cuda {
13011312 let gpu_count = get_number_of_gpus ( ) as usize ;
13021313
13031314 bench_id = format ! ( "{bench_name}::throughput::{name}" ) ;
1315+ println ! ( "{bench_id}" ) ;
13041316 let blocks: usize = 1 ;
13051317 let elements = throughput_num_threads ( blocks, 1 ) ;
13061318 let elements_per_stream = elements as usize / gpu_count;
0 commit comments