HomeSort by relevance Sort by last modified time
    Searched defs:flops (Results 1 - 4 of 4) sorted by null

  /external/eigen/bench/perf_monitoring/gemm/
gemm.cpp 43 double flops = 2. * m * n * k; local
44 long rep = std::max(1., std::min(100., up/flops) );
45 long tries = std::max(tm0, std::min(tm1, up/flops) );
49 return 1e-9 * rep * flops / t.best();
lazy_gemm.cpp 44 double flops = 2. * m * n * k; local
45 long rep = std::max(10., std::min(10000., up/flops) );
46 long tries = std::max(tm0, std::min(tm1, up/flops) );
50 return 1e-9 * rep * flops / t.best();
  /external/tensorflow/tensorflow/compiler/xla/tests/
xla_hlo_profile_test.cc 45 string flops; member in struct:xla::__anon39118::ParsedProfileOutputLine
54 if (RE2::FullMatch(parsed_line.flops, "[0-9.TGMk]+FLOP/s")) {
56 << "'flops' field present in " << parsed_line.opcode << ": '"
57 << parsed_line.flops << "'";
61 << "'flops' field absent in " << parsed_line.opcode << ": '"
62 << parsed_line.flops << "'";
105 &parsed_line.usec, &parsed_line.flops, &parsed_line.trops,
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_cost_analysis.cc 99 // FLOPs.
420 double flops = 0.0; local
424 flops += ShapeUtil::ElementsIn(subshape);
427 current_properties_[kFlopsKey] = flops;
537 // Gather does not issue any flops.

Completed in 108 milliseconds