Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for VerifyPersistentCacheUseListenerHistory (0.68 sec)

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

      // detect non-determinism in TF when running the test.
      listener()->ClearListenerHistory();
      for (int b = 1; b < 4; ++b) {
        TF_ASSERT_OK(ExecuteWithBatch(graph, b));
      }
      TF_ASSERT_OK(listener()->VerifyPersistentCacheUseListenerHistory(
          /*expect_persistent_cache_use=*/false));
    
      // Reset the cluster numbering between sessions so we can get the same
      // cluster numbering.
      testing::ResetClusterSequenceNumber();
    
    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

      // detect non-determinism in TF when running the test.
      listener()->ClearListenerHistory();
      for (int b = 1; b < 4; ++b) {
        TF_ASSERT_OK(ExecuteWithBatch(graph, b));
      }
      TF_ASSERT_OK(listener()->VerifyPersistentCacheUseListenerHistory(
          /*expect_persistent_cache_use=*/false));
    
      // Reset the cluster numbering between sessions so we can get the same
      // cluster numbering.
      testing::ResetClusterSequenceNumber();
    
    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/device_compiler_test_helper.h

      }
    
      Status Listen(const XlaOptimizationRemark& optimization_remark) override {
        return absl::OkStatus();
      }
    
      ~JitCompilationListener() override = default;
    
      Status VerifyPersistentCacheUseListenerHistory(
          bool expect_persistent_cache_use) {
        for (const auto& activity : activity_history_) {
          if (activity.used_persistent_cache() != expect_persistent_cache_use) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top