diff options
Diffstat (limited to 'src/experiment.h')
-rw-r--r-- | src/experiment.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/experiment.h b/src/experiment.h index 87ffbbb..3f6d0b1 100644 --- a/src/experiment.h +++ b/src/experiment.h @@ -53,7 +53,7 @@ public: int64 chains_per_thread;// memory loading per thread int64 num_threads; // number of threads in the experiment int64 bytes_per_test; // test working set size (bytes) - int64 busy_cycles; // processing cycles + int64 loop_length; // length of the inner loop (cycles) bool prefetch; // use of prefetching float seconds; // number of seconds per experiment @@ -96,7 +96,7 @@ public: const static int32 DEFAULT_BYTES_PER_THREAD = DEFAULT_BYTES_PER_CHAIN * DEFAULT_CHAINS_PER_THREAD; const static int32 DEFAULT_THREADS = 1; const static int32 DEFAULT_BYTES_PER_TEST = DEFAULT_BYTES_PER_THREAD * DEFAULT_THREADS; - const static int32 DEFAULT_BUSY_CYCLES = 0; + const static int32 DEFAULT_LOOPLENGTH = 0; const static int32 DEFAULT_SECONDS = 1; const static int32 DEFAULT_ITERATIONS = 0; const static int32 DEFAULT_EXPERIMENTS = 1; |