Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test 8b (Bench Read Parallel): Support Variable encoding, Fix Bugs #1131

Merged
merged 15 commits into from
Oct 27, 2021
Merged
Prev Previous commit
Next Next commit
Update examples/8b_benchmark_read_parallel.cpp
Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja>
  • Loading branch information
guj and ax3l authored Oct 27, 2021
commit 4aa7d6be758111c431248d39ad0a81df02fa6acd
2 changes: 1 addition & 1 deletion examples/8b_benchmark_read_parallel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ class TestInput
if (prefix.find(m_Backend) == std::string::npos) {
// file based, default to %07T
std::ostringstream s;
s <<prefix<<"_%07T"<<m_Backend;
s << prefix << "_%07T" << m_Backend;
std::string filename = s.str();
read(filename);
} else {
Expand Down