Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RunAutoClusteringTestWithGzippedPbtxt (0.94 sec)

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

      }
    
      // Test auto-clustering with a gzipped proto text file ${key}.pbtxt.gz.
      Status RunAutoClusteringTestWithGzippedPbtxt(absl::string_view key) {
        string file_name_without_extension =
            absl::StrCat(testing::TensorFlowSrcRoot(), "/compiler/jit/tests/", key);
    
        return AutoClusteringTest::RunAutoClusteringTestWithGzippedPbtxt(
            absl::StrCat(file_name_without_extension, ".pbtxt.gz"),
    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

    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,
          absl::string_view golden_summary_file_path);
    
     private:
      Status RunAutoClusteringTestImpl(GraphDef graphdef,
    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

      return RunAutoClusteringTestImpl(std::move(graphdef),
                                       golden_summary_file_path);
    }
    
    Status AutoClusteringTest::RunAutoClusteringTestWithGzippedPbtxt(
        absl::string_view gzipped_pbtxt_file_path,
        absl::string_view golden_summary_file_path) {
      Env* env = Env::Default();
      std::unique_ptr<RandomAccessFile> file_reader;
      TF_RETURN_IF_ERROR(
    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