Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for xla_compile (0.16 sec)

  1. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      Node* write_op = MakeWrite(root, Output(call), "write_result");
      write_op->AddAttr(kXlaHasReferenceVarsAttr, false);
    
      auto xla_compile = NodeWith(Op("_XlaCompile"), Attr("must_compile", false));
      auto predicated_compilation_key =
          NodeWith(Op("Switch"), Inputs(Out(0, xla_compile), Out(1, xla_compile)));
      auto xla_run =
          NodeWith(Op("_XlaRun"), Inputs(Out(1, predicated_compilation_key)));
      auto tf_call =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/build_xla_ops_pass.cc

        //       Switch(pred=xla_compile.compilation_successful,
        //              value=xla_compile.key)
        //
        //   tf_call_outputs = cluster_N(..., ^use_tf_call)
        //   xla_run_outputs = _XlaRun(..., key=use_xla_run)
        //   outputs = Merge(tf_call_outputs, xla_run_outputs).
        ops::Switch s(root.WithOpName("predicated_compilation_key"),
                      xla_compile.key, xla_compile.compilation_successful);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/jit/kernels/xla_ops.cc

        OP_REQUIRES_OK(ctx, args_and_variables_snapshot.status());
        const std::vector<XlaCompiler::Argument>& args =
            args_and_variables_snapshot->first;
        variables_snapshot = std::move(args_and_variables_snapshot->second);
    
        // Do not alias resource updates as locking variables in XlaCompile and
        // unlocking them in XlaRun may lead to deadlocks.
        Status status;
        if (use_pjrt) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top