projects
/
fjl
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add an x86 optimized version of extend().
[fjl]
/
benchmark.h
1
#ifndef _BENCHMARK_H
2
#define _BENChMARK_H 1
3
4
// Benchmark timing functions for reading out used CPU time. Not thread-safe
5
// as they store the information in a global variable.
6
void start_benchmark_timer();
7
double stop_benchmark_timer();
8
9
#endif /* !defined(_BENCHMARK_H) */
10
11