Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RunAutoClusteringTestWithPbtxt (0.27 sec)

  1. tensorflow/compiler/jit/tests/auto_clustering_test.cc

     protected:
      // Test auto-clustering with a proto text file ${key}.pbtxt.
      Status RunAutoClusteringTestWithPbtxt(absl::string_view key) {
        string file_name_without_extension =
            absl::StrCat(testing::TensorFlowSrcRoot(), "/compiler/jit/tests/", key);
    
        return AutoClusteringTest::RunAutoClusteringTestWithPbtxt(
            absl::StrCat(file_name_without_extension, ".pbtxt"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 13 20:13:03 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. 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)
  3. 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