Changeset 034165a for src/benchmark/bench.h
- Timestamp:
- Oct 26, 2017, 11:17:20 AM (5 years ago)
- Branches:
- aaron-thesis, arm-eh, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 4149d9d
- Parents:
- f1dd17a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/benchmark/bench.h
rf1dd17a r034165a 1 1 #pragma once 2 2 3 #if def __CFORALL__3 #if defined(__CFORALL__) 4 4 extern "C" { 5 5 #endif 6 #include <stdlib.h> 6 7 #include <unistd.h> // sysconf 7 8 #include <sys/times.h> // times 8 9 #include <time.h> 9 #if def __CFORALL__10 #if defined(__CFORALL__) 10 11 } 11 12 #endif … … 27 28 } // Time 28 29 29 #ifndef N30 #define N1000000030 #ifndef BENCH_N 31 #define BENCH_N 500 //10000000 31 32 #endif 33 34 #define BENCH(statement, output) \ 35 size_t n = BENCH_N; \ 36 if( argc > 2 ) return 1; \ 37 if( argc == 2 ) { \ 38 n = atoi(argv[1]); \ 39 } \ 40 const unsigned int NoOfTimes = n; \ 41 long long int StartTime, EndTime; \ 42 StartTime = Time(); \ 43 statement; \ 44 EndTime = Time(); \ 45 unsigned long long int output = \ 46 ( EndTime - StartTime ) / NoOfTimes; 32 47 33 48 unsigned int default_preemption() {
Note: See TracChangeset
for help on using the changeset viewer.