Changeset 977
- Timestamp:
- Sep 22, 2011, 6:16:58 PM (12 years ago)
- Location:
- trunk/test
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/Makefile.am
r965 r977 26 26 27 27 benchsuite_SOURCES = benchsuite.cpp \ 28 benchmark/matrix.cpp benchmark/half.cpp benchmark/trig.cpp 28 benchmark/matrix.cpp benchmark/half.cpp benchmark/trig.cpp \ 29 benchmark/real.cpp 29 30 benchsuite_CPPFLAGS = @LOL_CFLAGS@ @PIPI_CFLAGS@ 30 31 benchsuite_LDFLAGS = $(top_builddir)/src/liblol.a @LOL_LIBS@ @PIPI_LIBS@ -
trunk/test/benchsuite.cpp
r961 r977 24 24 using namespace lol; 25 25 26 void bench_real(int mode); 26 27 void bench_trig(int mode); 27 28 void bench_matrix(int mode); … … 30 31 int main(int argc, char **argv) 31 32 { 33 Log::Info("-----------------------\n"); 34 Log::Info(" High precision floats\n"); 35 Log::Info("-----------------------\n"); 36 bench_real(1); 37 32 38 Log::Info("--------------------------\n"); 33 39 Log::Info(" Trigonometry [-1e5, 1e5]\n");
Note: See TracChangeset
for help on using the changeset viewer.