OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CPU_TIMER
(Results
1 - 3
of
3
) sorted by null
/external/eigen/bench/
BenchTimer.h
37
CPU_TIMER
= 0,
72
m_starts[
CPU_TIMER
] = getCpuTime();
77
m_times[
CPU_TIMER
] = getCpuTime() - m_starts[
CPU_TIMER
];
93
inline double value(int TIMER =
CPU_TIMER
) const
100
inline double best(int TIMER =
CPU_TIMER
) const
107
inline double worst(int TIMER =
CPU_TIMER
) const
114
inline double total(int TIMER =
CPU_TIMER
) const
quatmul.cpp
33
std::cout << label << " default " << 1e3*t.best(
CPU_TIMER
) << "ms \t" << 1e-6*double(rep)/(t.best(
CPU_TIMER
)) << " M mul/s\n";
36
std::cout << label << " novec " << 1e3*t.best(
CPU_TIMER
) << "ms \t" << 1e-6*double(rep)/(t.best(
CPU_TIMER
)) << " M mul/s\n";
bench_gemm.cpp
202
std::cout << "blas cpu " << tblas.best(
CPU_TIMER
)/rep << "s \t" << (double(m)*n*p*rep*2/tblas.best(
CPU_TIMER
))*1e-9 << " GFLOPS \t(" << tblas.total(
CPU_TIMER
) << "s)\n";
209
std::cout << "eigen cpu " << tmt.best(
CPU_TIMER
)/rep << "s \t" << (double(m)*n*p*rep*2/tmt.best(
CPU_TIMER
))*1e-9 << " GFLOPS \t(" << tmt.total(
CPU_TIMER
) << "s)\n";
220
std::cout << "eigen mono cpu " << tmono.best(
CPU_TIMER
)/rep << "s \t" << (double(m)*n*p*rep*2/tmono.best(
CPU_TIMER
))*1e-9 << " GFLOPS \t(" << tmono.total(
CPU_TIMER
) << "s)\n";
222
std::cout << "mt speed up x" << tmono.best(
CPU_TIMER
) / tmt.best(REAL_TIMER) << " => " << (100.0*tmono.best(CPU_TIMER) / tmt.best(REAL_TIMER))/procs < (…)
[
all
...]
Completed in 500 milliseconds