Skip to content

Commit

Permalink
make the execution time a little smaller
Browse files Browse the repository at this point in the history
  • Loading branch information
pasko committed Sep 3, 2014
1 parent 71d96e3 commit 7b53fd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ int64_t TimeDiffMicros(const struct timespec* start, const struct timespec* end)
}

void __attribute__ ((visibility ("default"))) RunBenchmark() {
const size_t kNumIterations = 1024 * 1024 * 1024;
const size_t kNumIterations = 1024 * 1024 * 256;
struct timespec start, end;

clock_gettime(CLOCK_MONOTONIC, &start);
Expand Down

0 comments on commit 7b53fd0

Please sign in to comment.