Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 522 for _Graph (0.14 sec)

  1. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

                   const Graph& graph,
                   const FunctionLibraryDefinition& function_library),
                  (const, override));
    
      // Just modify MLIR module so that we can check whether original TF graph
      // has changed or not.
      Status Run(const std::string& function_name, const ConfigProto& config_proto,
                 mlir::ModuleOp module, const Graph& graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

      std::unique_ptr<Graph> graph;
      TF_RETURN_IF_ERROR(ConvertMlirToGraph(module, configs, &graph, &flib_def));
    
      // If the entry function is exported to flib, then no graph is constructed.
      // Construct one in that case.
      if (configs.export_entry_func_to_flib) {
        graph = std::make_unique<Graph>(OpRegistry::Global());
        TF_RETURN_IF_ERROR(
            graph->mutable_flib_def()->AddLibrary(std::move(flib_def)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      std::unique_ptr<Graph> graph;
      TF_RETURN_IF_ERROR(ConvertMlirToGraph(module, configs, &graph, &flib_def));
    
      // If the entry function is exported to flib, then no graph is constructed.
      // Construct one in that case.
      if (configs.export_entry_func_to_flib) {
        graph = std::make_unique<Graph>(OpRegistry::Global());
        TF_RETURN_IF_ERROR(
            graph->mutable_flib_def()->AddLibrary(std::move(flib_def)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/shape_inference.cc

        }
      }
      return absl::OkStatus();
    }
    
    }  // namespace
    
    Status InferShapes(Graph* graph, const std::map<int, InferredShape>& arg_shapes,
                       const tensorflow::FunctionLibraryDefinition* fnlib_def,
                       GraphShapeInfo* shape_info) {
      ShapeRefiner shape_refiner(graph->versions(), graph->op_registry());
      shape_refiner.set_require_shape_inference_fns(false);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

    // -----
    
    // Check that tf_executor.graph does not accept any operand.
    func.func @graph_with_invalid_op(%arg0: tensor<*xf32>) {
      "tf_executor.graph" (%arg0) ({}) : (tensor<*xf32>) -> ()
    // expected-error@-1 {{'tf_executor.graph' op requires zero operands}}
      func.return
    }
    
    // -----
    
    // Check that an empty graph is invalid (it needs a region).
    func.func @empty_graph() {
     "tf_executor.graph" () ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            taskGraphOps[0].details.buildPath == ":buildB"
            taskGraphOps[0].parentId == treeTaskGraphOps[0].id
            taskGraphOps[1].displayName == "Calculate task graph (:buildC)"
            taskGraphOps[1].details.buildPath == ":buildC"
            taskGraphOps[1].parentId == treeTaskGraphOps[0].id
            taskGraphOps[2].displayName == "Calculate task graph"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/ValueGraph.java

      // ValueGraph-level accessors
      //
    
      /** Returns all nodes in this graph, in the order specified by {@link #nodeOrder()}. */
      @Override
      Set<N> nodes();
    
      /** Returns all edges in this graph. */
      @Override
      Set<EndpointPair<N>> edges();
    
      /**
       * Returns a live view of this graph as a {@link Graph}. The resulting {@link Graph} will have an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcBuildOperationsIntegrationTest.groovy

            treeTaskGraphOps[0].parentId == buildSrcOps[0].id
            treeTaskGraphOps[1].displayName == "Calculate build tree task graph"
            treeTaskGraphOps[1].parentId == root.id
    
            def taskGraphOps = operations.all(CalculateTaskGraphBuildOperationType)
            taskGraphOps.size() == 3
            taskGraphOps[0].displayName == "Calculate task graph (:buildB:buildSrc)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/compilability_check_util_test.cc

      TF_EXPECT_OK(builder.ToGraphDef(&graph_def));
      std::unique_ptr<Graph> graph(new Graph(flib_def_.get()));
      TF_CHECK_OK(GraphDefBuilderToGraph(builder, graph.get()));
    
      auto while_node_it = std::find_if(
          graph->nodes().begin(), graph->nodes().end(),
          [&](const Node* n) { return n->name() == kFunctionalWhileNodeName; });
      EXPECT_NE(while_node_it, graph->nodes().end());
    
      auto* flib_runtime = GetFunctionLibraryRuntime();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/edit.go

    	return true
    }
    
    // disqualify records why the dependencies of m cannot be included in the module
    // graph if reached from a part of the graph with the given pruning.
    //
    // Since the pruned graph is a subgraph of the unpruned graph, disqualifying a
    // module from a pruned part of the graph also disqualifies it in the unpruned
    // parts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top