Home
last modified time | relevance | path

Searched refs:flop_count (Results 1 – 13 of 13) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_cost_analysis_test.cc160 EXPECT_EQ(analysis.flop_count(), 2 * 10 * 30 * 5); in TEST_F()
181 EXPECT_EQ(analysis.flop_count(), 10); in TEST_F()
206 EXPECT_EQ(analysis.flop_count(), 8 * 18 * 2 * 3 * 3); in TEST_F()
228 EXPECT_EQ(analysis.flop_count(), 10 * 20 - 10); in TEST_F()
245 EXPECT_EQ(analysis.flop_count(), 2 * 4 * (4 * 5 - 1)); in TEST_F()
266 EXPECT_EQ(analysis.flop_count(), 2 * 4 * (4 * 5 - 1 + 1)); in TEST_F()
276 EXPECT_EQ(analysis.flop_count(), 0); in TEST_F()
299 EXPECT_EQ(analysis.flop_count(), 2 * 1000 + 200 + 3 * 200); in TEST_F()
330 EXPECT_EQ(conv_analysis.flop_count(), matmul_analysis.flop_count()); in TEST_F()
386 EXPECT_EQ(fusion_analysis.flop_count(), 16); in TEST_F()
[all …]
Dhuman_readable_profile_builder.h47 tensorflow::StringPiece category, int64 cycles, int64 flop_count, in AddOp() argument
52 flop_count, transcendental_count, bytes_accessed, optimal_seconds}); in AddOp()
64 int64 flop_count; member
Dhuman_readable_profile_builder.cc66 op.flop_count <= 0 in ToString()
68 : HumanReadableNumFlops(op.flop_count, nsecs).c_str(), in ToString()
82 total_flops += op.flop_count; in ToString()
Dhlo_cost_analysis.h122 float flop_count() const;
129 int64 flop_count(const HloInstruction& hlo) const;
Dhlo_profile_printer.cc53 instruction_info.flop_count(), in PrintHloProfile()
Dhlo_execution_profile.cc94 instruction_info->set_flop_count(cost_analysis.flop_count(*hlo)); in CreateHloProfilePrinterData()
Dhlo_profile_printer_data.proto32 float flop_count = 4; field
Dhlo_cost_analysis.cc545 float HloCostAnalysis::flop_count() const { in flop_count() function in xla::HloCostAnalysis
561 int64 HloCostAnalysis::flop_count(const HloInstruction& hlo) const { in flop_count() function in xla::HloCostAnalysis
Dservice.cc1344 stats.set_flop_count(analysis.flop_count()); in GetComputationStats()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dparallel_task_assignment.cc68 cost_analysis_->flop_count(*instruction) / in GetParallelTaskCount()
88 1 * cost_analysis_->flop_count(*instruction) + in GetParallelTaskCount()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dfusion_merger.cc113 return bytes > 0.0 ? analysis.flop_count() / bytes : analysis.flop_count(); in CalculateFlopsToBytesRatio()
/external/tensorflow/tensorflow/compiler/xla/client/
Dclient.cc385 computation_stats.flop_count() + computation_stats.transcendental_count(); in ExecutionStatsAsString()
391 "[Execution Statistics] flop count: ", computation_stats.flop_count(), in ExecutionStatsAsString()
/external/tensorflow/tensorflow/compiler/xla/
Dxla_data.proto208 double flop_count = 1; field