Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for XlaCompilationResult (0.4 sec)

  1. tensorflow/compiler/jit/tf_to_hlo_compiler.h

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

      // 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/mlir/tf2xla/api/v1/compile_mlir_util_test.cc

        }
      })";
    
    TEST(LegalizeMlirTest, LegalizesModule) {
      mlir::DialectRegistry mlir_registry;
      RegisterAllTensorFlowDialects(mlir_registry);
    
      std::vector<tensorflow::TensorShape> arg_shapes;
      XlaCompilationResult compilation_result;
      auto status = CompileSerializedMlirToXlaHlo(
          kMlirModuleStr, arg_shapes, /*device_type=*/"XLA_TPU_JIT",
          /*use_tuple_args=*/true, /*enable_op_fallback=*/false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 19:54:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.cc

                                         XlaCompilationResult* result) {
      return ADD_SOURCE_LOCATION(
          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(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 00:37:01 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf.cc

        } break;
        default:
          VLOG(2) << "LegalizeMlirToHlo computation input: unknown";
          break;
      }
    }
    
    Status DumpHloCompilationResult(std::string_view name,
                                    XlaCompilationResult* compilation_result) {
      if (!VLOG_IS_ON(2) &&
          !DEBUG_DATA_DUMPER()->ShouldDump(std::string(name), kDebugGroupMain)) {
        return absl::OkStatus();
      }
    
      TF_ASSIGN_OR_RETURN(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 00:40:46 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

                          llvm::MutableArrayRef<std::unique_ptr<mlir::Pass>>
                              custom_legalization_passes);
    
    // Apply shape, description, and resource information to inputs and outputs
    // in the XlaCompilationResult. This should be called after
    // compilation_result->computation was set.
    ABSL_DEPRECATED("Not meant to be used directly and should be a util.")
    Status PopulateResultIOInfo(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_to_hlo.h

    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    // Legalize the given MLIR module to XLA HLO using a combination of the MLIR
    // Bridge and XlaBuilder
    absl::StatusOr<XlaCompilationResult> LegalizeTfToHlo(
        const tpu::MlirToHloArgs& computation,
        const tpu::TPUCompileMetadataProto& metadata, bool use_tuple_args,
        llvm::StringRef device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_mlir.h

        std::vector<std::vector<xla::Shape>>* per_core_arg_shapes);
    
    // Compiles a serialized MLIR module into XLA HLO, generates all accompanying
    // metadata and stores them in CompilationResult.
    absl::StatusOr<XlaCompilationResult> LegalizeWithMlirBridge(
        const tpu::MlirToHloArgs& computation,
        const tpu::TPUCompileMetadataProto& metadata, bool use_tuple_args,
        llvm::StringRef device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_to_hlo.cc

    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    using metrics::IncrementTfMlirBridgeSecondPhaseCounter;
    using metrics::MlirBridgeSecondPhaseMetric;
    using tpu::MlirToHloArgs;
    
    absl::StatusOr<XlaCompilationResult> LegalizeTfToHlo(
        const tpu::MlirToHloArgs& computation,
        const tpu::TPUCompileMetadataProto& metadata, bool use_tuple_args,
        llvm::StringRef device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_mlir_test.cc

      std::vector<std::vector<xla::Shape>> per_core_arg_shapes;
      std::vector<std::unique_ptr<mlir::Pass>> custom_legalization_passes;
    
      auto compilation_result = std::make_unique<XlaCompilationResult>();
    
      return CompileFromMlirToXlaHlo(
          compile_to_xla_hlo, mlir_to_hlo_args, metadata_proto,
          /*device_type=*/"XLA_TPU_JIT",
          /*shape_determination_fns=*/{}, use_tuple_args, compilation_result.get(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top