Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RunAutoClusteringTestWithPbtxt (0.25 sec)

  1. tensorflow/compiler/jit/tests/auto_clustering_test_helper.h

    // rule for :auto_clustering_test and then see the comment on update_golden on
    // how to auto-generate the .golden_summary file.
    
    class AutoClusteringTest : public ::testing::Test {
     protected:
      Status RunAutoClusteringTestWithPbtxt(
          absl::string_view pbtxt_file_path,
          absl::string_view golden_summary_file_path);
      Status RunAutoClusteringTestWithGzippedPbtxt(
          absl::string_view gzipped_pbtxt_file_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

          Env::Default(), string(golden_summary_file_path), &golden_file_contents));
    
      EXPECT_EQ(golden_file_contents, clustering_summary);
    
      return absl::OkStatus();
    }
    
    Status AutoClusteringTest::RunAutoClusteringTestWithPbtxt(
        absl::string_view pbtxt_file_path,
        absl::string_view golden_summary_file_path) {
      GraphDef graphdef;
      TF_RETURN_IF_ERROR(
          ReadTextProto(Env::Default(), string(pbtxt_file_path), &graphdef));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top