diff --git a/test/realm/concurrent_memspeed b/test/realm/concurrent_memspeed index eaa292cfcf..c3e4988542 100755 Binary files a/test/realm/concurrent_memspeed and b/test/realm/concurrent_memspeed differ diff --git a/test/realm/concurrent_memspeed.cc b/test/realm/concurrent_memspeed.cc index 8faf635f9d..156e30328f 100644 --- a/test/realm/concurrent_memspeed.cc +++ b/test/realm/concurrent_memspeed.cc @@ -243,7 +243,7 @@ void do_copies(Processor p, const std::vector &memories) { int experiment_count = 0; long long mean_copy_duration = 0; - double mean_bandwith = 0.0; + double mean_throughput = 0.0; log_app.info() << "Memspeed Results"; for (size_t i = 0; i < memspeed_experiments.size(); ++i) { long long copy_duration = (memspeed_experiments[i].copy_end_time - @@ -260,12 +260,12 @@ void do_copies(Processor p, const std::vector &memories) { << " copied_bytes=" << memspeed_experiments[i].copied_bytes << " throughput=" << throughput; mean_copy_duration += copy_duration; - mean_bandwith += bandwidth; + mean_throughput += throughput; experiment_count++; } log_app.print() << "Mean copy_duration=" << mean_copy_duration / experiment_count << " mean bandwidth=" - << static_cast(mean_bandwith) / experiment_count; + << static_cast(mean_throughput) / experiment_count; for (auto &instance : dst_instances) { instance.destroy();