Skip to content

Commit

Permalink
Merge pull request #393 from eseiler/misc/header
Browse files Browse the repository at this point in the history
[MISC] Rename _KiB to _kibibytes
  • Loading branch information
eseiler committed Oct 26, 2023
2 parents d7fcbb9 + b7dab3e commit c154be5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/argument_parsing/build_arguments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ void build_arguments::write_timings_to_file() const
std::ofstream output_stream{timing_out};
output_stream << std::fixed << std::setprecision(2);
output_stream << "wall_clock_time_in_seconds\t"
<< "peak_memory_usage_in_KiB\t"
<< "index_size_in_KiB\t"
<< "peak_memory_usage_in_kibibytes\t"
<< "index_size_in_kibibytes\t"
<< "determine_ibf_size_in_seconds\t"
<< "index_allocation_in_seconds\t"
<< "user_bin_io_avg_per_thread_in_seconds\t"
Expand Down
4 changes: 2 additions & 2 deletions src/argument_parsing/search_arguments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ void search_arguments::write_timings_to_file() const
std::ofstream output_stream{timing_out};
output_stream << std::fixed << std::setprecision(2);
output_stream << "wall_clock_time_in_seconds\t"
<< "peak_memory_usage_in_KiB\t"
<< "index_size_in_KiB\t"
<< "peak_memory_usage_in_kibibytes\t"
<< "index_size_in_kibibytes\t"
<< "determine_query_length_in_seconds\t"
<< "query_file_io_in_seconds\t"
<< "load_index_in_seconds\t"
Expand Down

1 comment on commit c154be5

@vercel
Copy link

@vercel vercel bot commented on c154be5 Oct 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

raptor – ./

raptor-seqan.vercel.app
raptor-git-main-seqan.vercel.app
seqan-raptor.vercel.app

Please sign in to comment.