Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for graph_op (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      builder_.setInsertionPointToEnd(&graph_op.getBody().front());
      builder_.create<mlir::tf_executor::FetchOp>(graph_op.getLoc(),
                                                  inst_to_return);
      builder_.setInsertionPointToEnd(bb);
      builder_.create<mlir::func::ReturnOp>(mlir::UnknownLoc::get(context_),
                                            graph_op.getResults());
    
      func.setAllArgAttrs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      }
      return changed;
    }
    
    bool ShapeInference::InferShapeForNonTFDialectOperation(Operation* op) {
      if (auto graph_op = dyn_cast<tf_executor::GraphOp>(op)) {
        return ForceTypeForPassThroughOperands(graph_op.GetFetch(),
                                               graph_op.GetFetch().getFetches(),
                                               op->getResults());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def ExecutorIslandCoarseningPass : Pass<"tf-executor-island-coarsening", "mlir::func::FuncOp"> {
      let summary = "Walks tf_executor::GraphOp and merges individual tf_executor::IslandOps.";
      let description = [{
        This pass performs whole graph analysis for a graph encapsulated into tf_executor::GraphOp.
        The analysis identifies all IslandOps within the graph which could be merged together.
        The goal is to merge as many islands as possible.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top