Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ResetClusterSequenceNumber (0.39 sec)

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

          /*expect_persistent_cache_use=*/false));
    
      // Reset the cluster numbering between sessions so we can get the same
      // cluster numbering.
      testing::ResetClusterSequenceNumber();
    
      // Run again but these should all hit in the persistent cache.
      listener()->ClearListenerHistory();
      for (int b = 1; b < 4; ++b) {
        TF_ASSERT_OK(ExecuteWithBatch(graph, b));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.h

    };
    
    absl::flat_hash_map<string, std::vector<string>>* GetAllowlistTable();
    
    namespace testing {
    // DO NOT USE IN PRODUCTION.
    //
    // Resets some internal state to let us write reliable unit tests.
    void ResetClusterSequenceNumber();
    
    // Return a list of operation that we choose not to put into the allowlist.
    absl::flat_hash_set<string> GetKnownXLAAllowlistOp();
    }  // namespace testing
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 10 22:46:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tests/device_compiler_serialize_options_test.cc

          /*expect_persistent_cache_use=*/false));
    
      // Reset the cluster numbering between sessions so we can get the same
      // cluster numbering.
      testing::ResetClusterSequenceNumber();
    
      auto status =
          AlterPersistentCacheEntryHloModuleNames(tensorflow::testing::TmpDir());
      EXPECT_FALSE(status.ok());
      EXPECT_TRUE(absl::StrContains(
          status.message(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

    #include "tensorflow/tools/optimization/optimization_pass_runner.h"
    
    namespace tensorflow {
    namespace {
    absl::StatusOr<string> SummarizeClustering(
        const GraphDef& auto_clustered_graph_def) {
      testing::ResetClusterSequenceNumber();
      Graph graph(OpRegistry::Global());
      GraphConstructorOptions graph_opts;
      graph_opts.expect_device_spec = true;
      graph_opts.allow_internal_ops = true;
      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