OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tblas
(Results
1 - 1
of
1
) sorted by null
/external/eigen/bench/
bench_gemm.cpp
199
BenchTimer
tblas
;
local
201
BENCH(
tblas
, tries, rep, blas_gemm(a,b,c));
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";
203
std::cout << "blas real " <<
tblas
.best(REAL_TIMER)/rep << "s \t" << (double(m)*n*p*rep*2/
tblas
.best(REAL_TIMER))*1e-9 << " GFLOPS \t(" <<
tblas
.total(REAL_TIMER) << "s)\n";
Completed in 3802 milliseconds