HomeSort by relevance Sort by last modified time
    Searched refs:optimal_seconds (Results 1 - 8 of 8) sorted by null

  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_profile_printer_data.proto 35 float optimal_seconds = 7;
human_readable_profile_builder.h 51 float optimal_seconds) {
54 bytes_accessed, optimal_seconds});
69 float optimal_seconds; // -1 if unknown member in struct:xla::HumanReadableProfileBuilder::OpInfo
human_readable_profile_builder.cc 45 if (op.optimal_seconds == 0 && op.cycles == 0) {
90 op.optimal_seconds < 0
92 : StrFormat("(%12.1f optimal)", op.optimal_seconds * 1e6),
107 if (op.optimal_seconds > 0) {
115 std::min(double{op.optimal_seconds}, CyclesToSeconds(op.cycles));
154 if (op.optimal_seconds < 0) {
170 0., CyclesToMicroseconds(op.cycles) - op.optimal_seconds * 1e6);
187 if (op.cycles == 0 && op.optimal_seconds == 0) {
hlo_profile_printer.cc 63 instruction_info.optimal_seconds());
hlo_execution_profile.cc 107 cost_analysis.optimal_seconds(*hlo));
hlo_cost_analysis.h 45 static constexpr char kOptimalSecondsKey[] = "optimal_seconds";
136 float optimal_seconds() const;
143 float optimal_seconds(const HloInstruction& hlo) const;
hlo_cost_analysis.cc 65 float optimal_seconds = 0.0f; local
68 optimal_seconds = std::max(
69 optimal_seconds,
74 current_properties_[kOptimalSecondsKey] = optimal_seconds;
757 float HloCostAnalysis::optimal_seconds() const { function in class:xla::HloCostAnalysis
773 float HloCostAnalysis::optimal_seconds(const HloInstruction& hlo) const { function in class:xla::HloCostAnalysis
hlo_cost_analysis_test.cc 493 EXPECT_EQ(fusion_analysis.optimal_seconds(), 1 << i);

Completed in 209 milliseconds