Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for xla_builder (0.19 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

      std::unique_ptr<tensorflow::FunctionLibraryDefinition> flib_def_;
      std::unique_ptr<tensorflow::ProcessFunctionLibraryRuntime> pflr_;
      tensorflow::OpKernelContext::Params params_;
    
      xla::XlaBuilder xla_builder_;
    };
    
    }  // namespace mhlo
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util_test.cc

    #include "tensorflow/compiler/mlir/tensorflow/dialect_registration.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/serialize_mlir_module_utils.h"
    #include "tensorflow/compiler/tf2xla/xla_helpers.h"
    #include "xla/client/xla_builder.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/node_def_builder.h"
    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 19:54:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

    #include "tensorflow/compiler/tf2xla/xla_context.h"
    #include "tensorflow/compiler/tf2xla/xla_expression.h"
    #include "tensorflow/compiler/tf2xla/xla_helpers.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "xla/client/xla_builder.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    #include "tensorflow/core/common_runtime/device.h"
    #include "tensorflow/core/common_runtime/device_factory.h"
    #include "tensorflow/core/common_runtime/device_mgr.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_to_hlo.h

    #include "tsl/platform/statusor.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)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf.cc

          compilation_result.get());
    
      if (combined_bridge_status.ok()) {
        VLOG(1) << "Successfully compiled MLIR computation to XLA HLO using "
                   "Combined MLIR and XlaBuilder Bridge.";
    
        DumpHloCompilationResult("legalize_tf_combined_bridge.hlo",
                                 compilation_result.get())
            .IgnoreError();
        return *compilation_result;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 00:40:46 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top