Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CompileSingleOp (0.59 sec)

  1. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.cc

          xla_compiler_.CompileFunction(options, function, args, result));
    }
    
    Status TfGraphToHloCompiler::CompileSingleOp(
        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)
  2. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.h

                     XlaCompilationResult* result) override;
    
      // Compiles a Tensorflow single op into an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result` by calling
      // XlaCompiler::CompileSingleOp.
      Status CompileSingleOp(const XlaCompiler::CompileOptions& options,
                             const OpKernelContext* ctx,
                             absl::Span<const XlaArgument> args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tf_to_hlo_compiler.h

                             XlaCompilationResult* result) = 0;
    
      // Compiles a Tensorflow single op to an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result`.
      virtual Status CompileSingleOp(const XlaCompiler::CompileOptions& options,
                                     const OpKernelContext* ctx,
                                     absl::Span<const XlaArgument> args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compiler.h

      DeviceCompilerClient<ExecutableType, ClientType>* compiler_client() {
        return compiler_client_.get();
      }
    
      string DebugString() const override;
    
     private:
      // Common implementation of Compile and CompileSingleOp. The `OpKernelContext`
      // parameter is always null for the former.
      Status CompileImpl(
          const XlaCompiler::CompileOptions& compile_options,
          const XlaCompiler::Options& options, const NameAttrList& function,
    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