Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TryToPersistExecutable (0.8 sec)

  1. tensorflow/compiler/jit/device_executable_persistor_test.cc

                                             DefaultXlaOptions().device_type);
    
      MockXlaCompilerClient mock_client;
      TF_ASSERT_OK_AND_ASSIGN(auto executable, BuildSampleExecutable());
      TF_EXPECT_OK(persistor.TryToPersistExecutable(
          /*signature_hash=*/123, "signature_string", DefaultXlaOptions(),
          compilation_result_add_, *executable, &mock_client));
    
      auto key =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_executable_persistor.h

      // pipeline and persists that to disk.
      // TODO(b/255826209): Take in Signature instead hash and string once cache
      // is refactored.
      virtual Status TryToPersistExecutable(
          uint64 signature_hash, const std::string& signature_str,
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& compilation_result,
          const ExecutableType& executable,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compiler_test.cc

          : DeviceExecutablePersistor<xla::LocalExecutable, xla::LocalClient>(
                Config{testing::TmpDir(), false, "xla"},
                DeviceType(DEVICE_CPU_XLA_JIT)) {}
      MOCK_METHOD(Status, TryToPersistExecutable,
                  (uint64, const std::string&, const XlaCompiler::Options&,
                   const XlaCompiler::CompilationResult&,
                   const xla::LocalExecutable&,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compiler.h

        TF_RETURN_IF_ERROR(
            device_compiler_internal::EligibleToPersist<ExecutableType>(
                cache_value.compile_state, out_executable.get()));
        TF_RETURN_IF_ERROR(persistor_->TryToPersistExecutable(
            DeviceCompilationClusterSignature::Hash()(sig), sig.HumanString(),
            options, *out_compilation_result, *out_executable,
            compiler_client_.get()));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top