Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BuildHloFromGraph (0.2 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util_test.cc

    }
    
    absl::Status BuildHloFromGraph(Graph& graph, bool use_output_shapes) {
      xla::XlaBuilder builder(
          ::testing::UnitTest::GetInstance()->current_test_info()->name());
      mlir::MLIRContext mlir_context;
      llvm::SmallVector<xla::XlaOp, 4> xla_params;
      std::vector<xla::XlaOp> returns(1);
      return BuildHloFromGraph(graph, builder, mlir_context, xla_params, returns,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 19:54:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    // attribute _output_shapes is always used to set the output shapes of the ops.
    ABSL_DEPRECATED(
        "Use v1/compile_tf_graph.h::CompileTensorflowGraphToHlo instead.")
    Status BuildHloFromGraph(
        const Graph& graph, xla::XlaBuilder& builder,
        mlir::MLIRContext& mlir_context, llvm::ArrayRef<xla::XlaOp> xla_params,
        std::vector<xla::XlaOp>& returns, bool unconditionally_use_output_shapes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      // do it optionally.
      config.unconditionally_use_set_output_shapes =
          unconditionally_use_set_output_shapes;
      return ConvertGraphToMlir(graph, debug_info, flib_def, config, context);
    }
    
    Status BuildHloFromGraph(
        const Graph& graph, xla::XlaBuilder& builder,
        mlir::MLIRContext& mlir_context, llvm::ArrayRef<xla::XlaOp> xla_params,
        std::vector<xla::XlaOp>& returns, bool unconditionally_use_output_shapes,
    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