Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ClientType (0.14 sec)

  1. tensorflow/compiler/jit/device_executable_persistor.h

    template <typename ExecutableType, typename ClientType>
    std::string DeviceExecutablePersistor<ExecutableType, ClientType>::GetFilePath(
        const XlaSerializedCacheKey& key) const {
      const std::string file_name =
          absl::StrCat(XlaSerializedCacheKeyToString(key), ".pb");
      return io::JoinPath(persistent_cache_directory_, file_name);
    }
    
    template <typename ExecutableType, typename ClientType>
    XlaSerializedCacheKey
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_compiler_client.h

    #include "xla/client/executable_build_options.h"
    
    namespace tensorflow {
    
    template <typename ExecutableType, typename ClientType>
    class DeviceCompilerClient {
     public:
      DeviceCompilerClient() = default;
      virtual ~DeviceCompilerClient() = default;
    
      // Compiles `result` (HLO) to an `ExecutableType` using `ClientType` and
      // returns it.
      virtual StatusOr<std::unique_ptr<ExecutableType>> BuildExecutable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compiler.h

    }
    }  // namespace device_compiler_internal
    
    template <typename ExecutableType, typename ClientType>
    DeviceCompiler<ExecutableType, ClientType>::DeviceCompiler(
        std::unique_ptr<DeviceExecutablePersistor<ExecutableType, ClientType>>
            persistor,
        std::unique_ptr<DeviceCompilerClient<ExecutableType, ClientType>>
            compiler_client)
        : persistor_(std::move(persistor)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/kernels/xla_ops.cc

    // during execution) because otherwise we risk observing a different snapshot
    // with shapes different from what we compiled for.
    template <typename ExecutableType, typename ClientType>
    class ExecutableClosure {
     public:
      explicit ExecutableClosure(
          ClientType* client, ExecutableType* executable,
          const XlaCompiler::CompilationResult* compilation_result,
          ResourceVarsSnapshot resource_var_snapshots, int num_constant_args)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top