diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2016-03-04 20:14:10 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2016-03-04 20:14:10 -0500 |
commit | 8faeec44a69ee56ca9252cd36a2bb8e22d02bddd (patch) | |
tree | 7ec23df429d457f9f9039a7118091daeb39fe592 /src/gpu-compute/gpu_tlb.cc | |
parent | 4f303785dc3001a8c952f19540e16a9b437278f2 (diff) | |
download | gem5-8faeec44a69ee56ca9252cd36a2bb8e22d02bddd.tar.xz |
base: Fix gpu-compute output stream creation
Match changes in output stream.
Diffstat (limited to 'src/gpu-compute/gpu_tlb.cc')
-rw-r--r-- | src/gpu-compute/gpu_tlb.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu-compute/gpu_tlb.cc b/src/gpu-compute/gpu_tlb.cc index de005fd04..7a4f883f6 100644 --- a/src/gpu-compute/gpu_tlb.cc +++ b/src/gpu-compute/gpu_tlb.cc @@ -1709,7 +1709,7 @@ namespace X86ISA // print per page statistics to a separate file (.csv format) // simout is the gem5 output directory (default is m5out or the one // specified with -d - page_stat_file = simout.create(name().c_str()); + page_stat_file = simout.create(name().c_str())->stream(); // print header *page_stat_file << "page,max_access_distance,mean_access_distance, " |