Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ResetClusterSequenceNumber (1.34 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/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)
  3. 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