File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -296,12 +296,12 @@ int main(int argc, char **argv) {
296296
297297 std::size_t const alignment_cache = alignment_cache_line ();
298298 std::size_t const alignment_page = alignment_ram_page ();
299- fmt::print (" Page size: {:, } bytes\n " , alignment_page);
300- fmt::print (" Cache line size: {:, } bytes\n " , alignment_cache);
299+ fmt::print (" Page size: {} bytes\n " , alignment_page);
300+ fmt::print (" Cache line size: {} bytes\n " , alignment_cache);
301301
302302 dataset_t dataset = make_dataset (elements, alignment_cache, alignment_page);
303303 std::fill_n (dataset.data (), dataset.size (), 1 .f );
304- fmt::print (" Dataset size: {:, } elements\n " , dataset.size ());
304+ fmt::print (" Dataset size: {} elements\n " , dataset.size ());
305305 fmt::print (" Dataset alignment: {} bytes\n " , alignment_cache);
306306 fmt::print (" Dataset allocation type: {}\n " ,
307307 dataset.allocator == dataset_t ::allocator_t ::malloc ? " malloc" : " mmap" );
You can’t perform that action at this time.
0 commit comments