Skip to content

Commit

Permalink
small bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TeachRaccooon committed Feb 24, 2025
1 parent ad29f8e commit e539793
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion benchmark/bench_BQRRP/BQRRP_runtime_breakdown.cc
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ int main(int argc, char *argv[]) {
oss << val << ", ";
std::string b_sz_string = oss.str();

//std::vector<int64_t> b_sz = {256, 512, 1024, 2048, 4096, 8192};
auto state = RandBLAS::RNGState<r123::Philox4x32>();
auto state_constant = state;
// Timing results
Expand Down
6 changes: 3 additions & 3 deletions benchmark/bench_BQRRP/BQRRP_subroutines_speed.cc
Original file line number Diff line number Diff line change
Expand Up @@ -410,13 +410,13 @@ int main(int argc, char *argv[]) {
"\n";
file.flush();

for (;i < n_sz.size(); ++i)
for (i = 0 ;i < n_sz.size(); ++i)
call_wide_qrcp(m_info, numruns, n_sz[i], all_data, state, output_filename);

for (;i < n_sz.size(); ++i)
for (i = 0 ;i < n_sz.size(); ++i)
call_tsqr(m_info, numruns, n_sz[i], nb_start, all_data, state, output_filename);

for (;i < n_sz.size(); ++i)
for (i = 0 ;i < n_sz.size(); ++i)
call_apply_q(m_info, numruns, n_sz[i], nb_start, all_data, state, state_B, output_filename);
}
#endif

0 comments on commit e539793

Please sign in to comment.