Searched refs:flop_count (Results 1 – 13 of 13) sorted by relevance
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_cost_analysis_test.cc | 160 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 …]
|
D | human_readable_profile_builder.h | 47 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
|
D | human_readable_profile_builder.cc | 66 op.flop_count <= 0 in ToString() 68 : HumanReadableNumFlops(op.flop_count, nsecs).c_str(), in ToString() 82 total_flops += op.flop_count; in ToString()
|
D | hlo_cost_analysis.h | 122 float flop_count() const; 129 int64 flop_count(const HloInstruction& hlo) const;
|
D | hlo_profile_printer.cc | 53 instruction_info.flop_count(), in PrintHloProfile()
|
D | hlo_execution_profile.cc | 94 instruction_info->set_flop_count(cost_analysis.flop_count(*hlo)); in CreateHloProfilePrinterData()
|
D | hlo_profile_printer_data.proto | 32 float flop_count = 4; field
|
D | hlo_cost_analysis.cc | 545 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
|
D | service.cc | 1344 stats.set_flop_count(analysis.flop_count()); in GetComputationStats()
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | parallel_task_assignment.cc | 68 cost_analysis_->flop_count(*instruction) / in GetParallelTaskCount() 88 1 * cost_analysis_->flop_count(*instruction) + in GetParallelTaskCount()
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | fusion_merger.cc | 113 return bytes > 0.0 ? analysis.flop_count() / bytes : analysis.flop_count(); in CalculateFlopsToBytesRatio()
|
/external/tensorflow/tensorflow/compiler/xla/client/ |
D | client.cc | 385 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/ |
D | xla_data.proto | 208 double flop_count = 1; field
|