diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-05-08 19:20:30 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-06-02 11:18:47 +0200 |
| commit | e79d496769fc5a09ab137409638512e4e50732ed (patch) | |
| tree | 9b97e3a09d112988ef6cedbd99166fda4b68aee7 | |
| parent | 85e408352b4ce2d1b5dd93e551e10dd27a225fcf (diff) | |
| download | allocbench-e79d496769fc5a09ab137409638512e4e50732ed.tar.gz allocbench-e79d496769fc5a09ab137409638512e4e50732ed.zip | |
fix falsesharing
| -rw-r--r-- | allocbench/benchmarks/falsesharing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/allocbench/benchmarks/falsesharing.py b/allocbench/benchmarks/falsesharing.py index 95af12e..1fd4931 100644 --- a/allocbench/benchmarks/falsesharing.py +++ b/allocbench/benchmarks/falsesharing.py @@ -68,7 +68,7 @@ class BenchmarkFalsesharing(Benchmark): measure["time"]) measure["l1chache_misses"] = ( measure['L1-dcache-load-misses'] / - measures['L1-dcache-loads']) * 100 + measure['L1-dcache-loads']) * 100 # delete and recalculate stats del self.results["stats"] |
