OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:total_flops
(Results
1 - 3
of
3
) sorted by null
/external/tensorflow/tensorflow/compiler/xla/service/
human_readable_profile_builder.cc
103
int64
total_flops
= 0.;
local
117
total_flops
+= std::max(op.flop_count, int64{0});
122
VLOG(1) << "Total floating point ops: " <<
total_flops
;
125
/*category=*/"", total_cycles_,
total_flops
, total_transcendentals,
/external/tensorflow/tensorflow/tools/benchmark/
benchmark_model.cc
150
Session* session, int64*
total_flops
,
169
*
total_flops
= 0;
208
*
total_flops
+= current_flops;
614
int64
total_flops
;
local
617
&
total_flops
, &flops_by_op);
623
if (
total_flops
< 1000) {
624
pretty_flops = strings::StrCat(
total_flops
, " FLOPs");
625
} else if (
total_flops
< (1000 * 1000)) {
626
const float rounded_flops = (
total_flops
/ 1000.0f);
628
} else if (
total_flops
< (1000 * 1000 * 1000))
[
all
...]
/external/tensorflow/tensorflow/compiler/xla/client/
client.cc
471
int64
total_flops
=
local
476
double gflops =
total_flops
/ nanoseconds;
Completed in 190 milliseconds