Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for xla_compile (0.18 sec)

  1. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.h

      Status CompileSingleOp(const XlaCompiler::CompileOptions& options,
                             const OpKernelContext* ctx,
                             absl::Span<const XlaArgument> args,
                             XlaCompilationResult* result) override;
    
     private:
      XlaCompiler xla_compiler_;
    
      TfGraphToHloCompiler(const TfGraphToHloCompiler&) = delete;
      void operator=(const TfGraphToHloCompiler&) = delete;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.cc

        const XlaCompiler::CompileOptions& options, const OpKernelContext* ctx,
        absl::Span<const XlaArgument> args, XlaCompilationResult* result) {
      return ADD_SOURCE_LOCATION(xla_compiler_.CompileSingleOp(
          options, XlaCompiler::SingleOpCompileArgument(*ctx), args, result));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 00:37:01 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compiler_client.h

      virtual absl::StatusOr<std::string> BuildSerializedExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result) = 0;
    
      // Loads `serialized_executable` into an `ExecutableType` using `ClientType`.
      virtual StatusOr<std::unique_ptr<ExecutableType>> LoadExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result,
          const std::string& serialized_executable) = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compiler_disable_test.cc

          XlaCompiler::Options{}, fn, args, XlaCompiler::CompileOptions{},
          DeviceCompileMode::kStrict, profiler, &compilation_result, &executable);
      EXPECT_FALSE(status.ok());
      EXPECT_TRUE(absl::StrContains(status.message(), "XLA compilation disabled"));
    
      // Check that async compilation is disallowed.
      status = xla_device_compiler->CompileIfNeeded(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/tf_to_hlo_compiler.h

    #ifndef TENSORFLOW_COMPILER_JIT_TF_TO_HLO_COMPILER_H_
    #define TENSORFLOW_COMPILER_JIT_TF_TO_HLO_COMPILER_H_
    
    #include <memory>
    #include <vector>
    
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "tensorflow/core/framework/op_kernel.h"
    
    namespace tensorflow {
    
    class TfToHloCompiler {
     public:
      TfToHloCompiler() = default;
      virtual ~TfToHloCompiler() = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_compile_on_demand_op.h

     private:
      Status Compile(const std::vector<XlaCompiler::Argument>& args,
                     OpKernelContext* ctx,
                     DeviceCompiler<xla::LocalExecutable, xla::LocalClient>**
                         xla_device_compiler,
                     DeviceCompilationProfiler** profiler,
                     const XlaCompiler::CompilationResult** result,
                     xla::LocalExecutable** executable);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/pjrt_compile_util.cc

        const DeviceBase* device, const XlaPlatformInfo& platform_info,
        const NameAttrList& function,
        const std::vector<XlaCompiler::Argument>& args,
        DeviceCompileMode compile_mode, bool has_ref_vars,
        bool may_alias_resource_update, FunctionLibraryRuntime* flr,
        ResourceMgr* rm, const XlaCompiler::CompilationResult** compilation_result,
        xla::PjRtClient** client, xla::PjRtLoadedExecutable** executable) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_compiler_options_util.h

    #include "tensorflow/compiler/jit/device_compiler.h"
    #include "tensorflow/compiler/jit/xla_platform_info.h"
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "xla/client/local_client.h"
    #include "xla/pjrt/pjrt_client.h"
    
    namespace tensorflow {
    
    // Returns created options for the XLA compiler.
    XlaCompiler::Options GenerateCompilerOptions(
        const DeviceCompiler<xla::LocalExecutable, xla::LocalClient>&
            xla_device_compiler,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 29 01:41:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/pjrt_compile_util.h

    Status CompileToPjRtLoadedExecutable(
        const OpKernelContext& ctx, const XlaPlatformInfo& platform_info,
        const NameAttrList& function,
        const std::vector<XlaCompiler::Argument>& args,
        DeviceCompileMode compile_mode, bool has_ref_vars,
        bool may_alias_resource_update,
        const XlaCompiler::CompilationResult** compilation_result,
        xla::PjRtClient** client, xla::PjRtLoadedExecutable** executable);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compiler_client.cc

    #include "tensorflow/compiler/jit/device_compiler_client.h"
    
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "tensorflow/core/util/determinism.h"
    
    namespace tensorflow {
    
    xla::ExecutableBuildOptions GetExecutableBuildOptions(
        const XlaCompiler::Options& options,
        const XlaCompiler::CompilationResult& result, int default_device_ordinal) {
      xla::ExecutableBuildOptions build_options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 20:35:26 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top