Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CompileGraphToXlaHlo (0.29 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    // and run the TensorFlow standard pipeline prior to invoking
    // `CompileMlirToXlaHlo`.
    ABSL_DEPRECATED("Use v2/legalize_tf.h::LegalizeMlirToHlo instead.")
    Status CompileGraphToXlaHlo(
        mlir::ModuleOp module_op, llvm::ArrayRef<XlaArgument> args,
        llvm::StringRef device_type, bool use_tuple_args, bool enable_op_fallback,
        bool use_return_tuple,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

      if (!args_status.ok()) {
        LOG(ERROR) << args_status;
        return mlir::failure();
      }
    
      XlaCompilationResult compilation_result;
      auto compilation_status =
          CompileGraphToXlaHlo(module_op, xla_arguments,
                               /*device_type=*/"XLA_CPU_JIT", emit_use_tuple_arg,
                               /*analyse_graph=*/false, emit_return_tuple,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      return BuildHloFromTf(module_op, builder, remaining_xla_params, returns,
                            arg_shapes, device_type, custom_legalization_passes);
    }
    
    Status CompileGraphToXlaHlo(
        mlir::ModuleOp module_op, llvm::ArrayRef<XlaArgument> args,
        llvm::StringRef device_type, bool use_tuple_args, bool enable_op_fallback,
        bool use_return_tuple,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
Back to top