Changeset 3f7e12cb for src/benchmark/bench.h
- Timestamp:
- Nov 8, 2017, 5:43:33 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, 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:
- 954908d
- Parents:
- 78315272 (diff), e35f30a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/benchmark/bench.h
r78315272 r3f7e12cb 1 1 #pragma once 2 2 3 #if defined(__CFORALL__) 3 4 extern "C" { 5 #endif 6 #include <stdlib.h> 4 7 #include <unistd.h> // sysconf 5 8 #include <sys/times.h> // times 6 9 #include <time.h> 10 #if defined(__CFORALL__) 7 11 } 12 #endif 8 13 9 inline unsigned long long int Time() {10 timespec ts;14 static inline unsigned long long int Time() { 15 struct timespec ts; 11 16 clock_gettime( 12 17 #if defined( __linux__ ) … … 23 28 } // Time 24 29 25 #ifndef N26 #define N1000000030 #ifndef BENCH_N 31 #define BENCH_N 500 //10000000 27 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 long long int StartTime, EndTime; \ 41 StartTime = Time(); \ 42 statement; \ 43 EndTime = Time(); \ 44 unsigned long long int output = \ 45 ( EndTime - StartTime ) / n; 28 46 29 47 unsigned int default_preemption() {
Note:
See TracChangeset
for help on using the changeset viewer.