Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 878 for _Graph (0.42 sec)

  1. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultClasspathTransformationTestType.java

             *       v3-v4
             *
             */
            v1 = graph.addVertex(new ArtifactMetadata("g", "a1", "1.0"));
            graph.setEntry(v1);
            v2 = graph.addVertex(new ArtifactMetadata("g", "a2", "1.0"));
            v3 = graph.addVertex(new ArtifactMetadata("g", "a3", "1.0"));
            v4 = graph.addVertex(new ArtifactMetadata("g", "a4", "1.0"));
    
            // v1-->v2
            graph.addEdge(v1, v2, new MetadataGraphEdge("1.1", true, null, null, 2, 1));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      // Build host side graph for the "If" node.
      // If then/else branch does not have outside compilation, we won't build host
      // graph for the branch. But here we need a host graph for both branches, so
      // we need to create a no-op host graph.
      if (!then_branch_has_outside_compilation) {
        std::unique_ptr<Graph> then_branch_host_graph(new Graph(fld));
        std::vector<string> then_branch_host_graphs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_cluster_util.cc

    string DescribeCycle(const GraphCycles* cycles, const Graph& graph, int src,
                         int dst) {
      int32_t max_path_size = graph.num_node_ids() + 1;
      std::vector<int32> path(max_path_size);
      int32_t path_size = cycles->FindPath(dst, src, max_path_size, path.data());
      if (path_size == 0) {
        return "";
      }
    
      auto node_name = [&graph](int node_id) {
        if (!FastBoundsCheck(node_id, graph.num_node_ids())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/AbstractBaseGraph.java

     * limitations under the License.
     */
    
    package com.google.common.graph;
    
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.base.Preconditions.checkState;
    import static com.google.common.graph.GraphConstants.ENDPOINTS_MISMATCH;
    import static com.google.common.graph.GraphConstants.NODE_PAIR_REMOVED_FROM_GRAPH;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

          VLOG(2) << "Run MLIR graph optimization pass: " << StringRefToView(name);
          VLOG(2) << "Graph #nodes " << (*graph)->num_nodes() << " #edges "
                  << (*graph)->num_edges();
          timings.Reset({kTfMlirCategory, name.str()});
          pass_status = pass_registration.pass->Run(
              function_name, config_proto, *module_ref, **graph, *flib_def);
          timings.ReportAndStop();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/ProxyCodec.kt

    import org.gradle.internal.serialize.graph.codecs.Decoding
    import org.gradle.internal.serialize.graph.codecs.Encoding
    import org.gradle.internal.serialize.graph.codecs.EncodingProducer
    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.WriteContext
    import org.gradle.internal.serialize.graph.readClassArray
    import org.gradle.internal.serialize.graph.writeClassArray
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

      static Status Encapsulate(std::unique_ptr<Graph>* graph,
                                FunctionLibraryDefinition* flib_def);
    
      // b) we rewrite the function calls generated in phase (a) into XlaLaunch
      //    operators. We also convert the XlaClusterOutput output nodes of the
      //    function call into the outputs of the XlaLaunch operator.
      static Status BuildXlaLaunchOps(Graph* graph);
    
      struct XlaFunctionInfo {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top