Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hlo_profile_printer_data (2.08 sec)

  1. tensorflow/compiler/aot/codegen.cc

              ? R"(#include "xla/xla_data.pb.h")"
              : "";
    
      const string include_hlo_profile_printer_data_proto =
          opts.gen_hlo_profile_printer_data
              ? R"(#include "xla/service/hlo_profile_printer_data.pb.h")"
              : "";
    
      // When HLO profiling is disabled we only forward declare the
      // HloProfilePrinter protobuf.  So we can only conditionally emit this code
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/tfcompile_test.cc

      fn.arg1(0, 0) = 10;
      fn.arg1(0, 1) = 20;
      fn.arg1(1, 0) = 30;
      fn.arg1(1, 1) = 40;
    
      EXPECT_TRUE(fn.Run());
    
      string hlo_profile_as_string =
          xla::PrintHloProfile(fn.hlo_profile_printer_data(), fn.profile_counters(),
                               /*clock_rate_ghz=*/1.0);
      VLOG(1) << "Original HLO profile string:\n" << hlo_profile_as_string;
    
      // Replace Arg_n with argn when the MLIR bridge is used.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
Back to top