Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CompileFunction (0.25 sec)

  1. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.cc

                                         absl::Span<const XlaArgument> args,
                                         XlaCompilationResult* result) {
      return ADD_SOURCE_LOCATION(
          xla_compiler_.CompileFunction(options, function, args, result));
    }
    
    Status TfGraphToHloCompiler::CompileSingleOp(
        const XlaCompiler::CompileOptions& options, const OpKernelContext* ctx,
    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

          : xla_compiler_(options) {}
    
      // Compiles a Tensorflow `function` into an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result` by calling
      // XlaCompiler::CompileFunction.
      Status Compile(const XlaCompiler::CompileOptions& options,
                     const NameAttrList& function,
                     absl::Span<const XlaArgument> args,
                     XlaCompilationResult* result) override;
    
    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/get_compiler_ir.cc

      compile_options.always_return_tuple = false;
      compile_options.alias_resource_update = true;
    
      XlaCompiler compiler(options);
      XlaCompiler::CompilationResult result;
      TF_RETURN_IF_ERROR(
          compiler.CompileFunction(compile_options, function, args, &result));
    
      return BuildHLOString(stage, result, local_client, options);
    }
    
    /**
     * Clarifies the different meanings of 'input_arg_shape_and_dtype' and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top