Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for graph_op (0.25 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      }
    
      Exporter exporter(&configs, graph.get(), tf_dialect, &symbol_table);
    
      auto graph_op = llvm::cast<mlir::tf_executor::GraphOp>(block.front());
    
      // Set input and output names and increment the use counter for them to help
      // generate unique names.
      if (!output_names.empty()) {
        const int num_data_results = graph_op.getNumResults();
        const int64_t output_names_size = output_names.size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.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/translate/tf_mlir_translate_registration.cc

      options.client = client;
      options.flib_def = flib_def.get();
      tensorflow::XlaCompiler compiler(options);
    
      std::unique_ptr<tensorflow::Graph> graph_copy(
          new tensorflow::Graph(tensorflow::OpRegistry::Global()));
      tensorflow::CopyGraph(*graph, graph_copy.get());
    
      tensorflow::XlaCompiler::CompileOptions compile_options;
      tensorflow::XlaCompiler::CompilationResult result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. 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