Skip to content

Commit

Permalink
Fix: Reopen memmove benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
ashvardanian committed Oct 17, 2024
1 parent 0c9a0f8 commit 169685f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/bench_memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,11 +232,11 @@ void bench_memory(std::vector<std::string_view> const &slices, sz_cptr_t dataset
bench_memory(slices, copy_functions<true>(dataset_start_ptr, output_buffer_ptr));
bench_memory(slices, copy_functions<false>(dataset_start_ptr, output_buffer_ptr));
bench_memory(slices, fill_functions(dataset_start_ptr, output_buffer_ptr));
// bench_memory(slices, move_functions(dataset_start_ptr, output_buffer_ptr, 1));
// bench_memory(slices, move_functions(dataset_start_ptr, output_buffer_ptr, 8));
// bench_memory(slices, move_functions(dataset_start_ptr, output_buffer_ptr, SZ_CACHE_LINE_WIDTH));
// bench_memory(slices, move_functions(dataset_start_ptr, output_buffer_ptr, max_shift_length));
// bench_memory(slices, transform_functions());
bench_memory(slices, move_functions(dataset_start_ptr, output_buffer_ptr, 1));
bench_memory(slices, move_functions(dataset_start_ptr, output_buffer_ptr, 8));
bench_memory(slices, move_functions(dataset_start_ptr, output_buffer_ptr, SZ_CACHE_LINE_WIDTH));
bench_memory(slices, move_functions(dataset_start_ptr, output_buffer_ptr, max_shift_length));
bench_memory(slices, transform_functions());
}

int main(int argc, char const **argv) {
Expand Down

0 comments on commit 169685f

Please sign in to comment.