Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 219 for Edges (0.09 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            // the following only needs to be done serially to preserve ordering of dependencies in the graph: we have visited the edges
            // but we still didn't add the result to the queue. Doing it from resolve threads would result in non-reproducible graphs, where
            // edges could be added in different order. To avoid this, the addition of new edges is done serially.
            for (EdgeState dependency : dependencies) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

    }
    
    Status Encapsulator::AddEdgesToOutputGraph(
        const absl::flat_hash_map<const Node*, Node*>& node_images,
        Graph* graph_out) {
      // Set of edges already added to the output graph, represented as (src, dst)
      // pairs. We use the set to deduplicate edges; multiple edges in the input
      // graph may map to one edge in the output graph.
      absl::flat_hash_set<std::pair<OutputTensor, InputTensor>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/graph/AbstractGraphTest.java

              assertThat(graph.hasEdgeConnecting(endpoints.nodeU(), endpoints.nodeV())).isTrue();
            }
          }
        }
    
        sanityCheckSet(graph.edges());
        assertThat(graph.edges()).doesNotContain(EndpointPair.of(graph, new Object(), new Object()));
        assertThat(graph.edges()).isEqualTo(allEndpointPairs);
      }
    
      /**
       * Verifies that the {@code Set} returned by {@code nodes} has the expected mutability property
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/GraphConstants.java

      static final String MULTIPLE_EDGES_CONNECTING =
          "Cannot call edgeConnecting() when parallel edges exist between %s and %s. Consider calling "
              + "edgesConnecting() instead.";
      static final String PARALLEL_EDGES_NOT_ALLOWED =
          "Nodes %s and %s are already connected by a different edge. To construct a graph "
              + "that allows parallel edges, call allowsParallelEdges(true) on the Builder.";
      static final String SELF_LOOPS_NOT_ALLOWED =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

      graph_->AddEdge(input_node_it->second, 0, dst_node, dst_index);
      return absl::OkStatus();
    }
    
    Status Exporter::AddEdge(Operation* inst) {
      // For tf_executor.fetch, add only its data edges. Control edges are captured
      // later.
      if (auto fetch = llvm::dyn_cast<mlir::tf_executor::FetchOp>(inst)) {
        for (auto operand_and_idx : llvm::enumerate(fetch.getOperands())) {
          Value operand = operand_and_idx.value();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      graph_->AddEdge(input_node_it->second, 0, dst_node, dst_index);
      return absl::OkStatus();
    }
    
    Status Exporter::AddEdge(Operation* inst) {
      // For tf_executor.fetch, add only its data edges. Control edges are captured
      // later.
      if (auto fetch = llvm::dyn_cast<mlir::tf_executor::FetchOp>(inst)) {
        for (auto operand_and_idx : llvm::enumerate(fetch.getOperands())) {
          Value operand = operand_and_idx.value();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactsGraphVisitor.java

                }
            }
    
            if (node.isRoot() || hasTransitiveIncomingEdge) {
                // Since file dependencies are not modeled as actual edges, we need to verify
                // there are edges to this node that would follow this file dependency.
                for (LocalFileDependencyMetadata fileDependency : node.getOutgoingFileEdges()) {
                    int id = nextId++;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/graph/AbstractStandardUndirectedGraphTest.java

                EndpointPair.unordered(1, 1),
                EndpointPair.unordered(1, 3))
            .inOrder();
      }
    
      /**
       * Populates the graph with nodes and edges in a star shape with node `1` in the middle.
       *
       * <p>Note that the edges are added in a shuffled order to properly test the effect of the
       * insertion order.
       */
      private void populateTShapedGraph() {
        putEdge(2, 1);
        putEdge(1, 4);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. pkg/controller/garbagecollector/dump_test.go

    		file  string
    		nodes []*dotVertex
    		edges []dotEdge
    	}{
    		{
    			file: "empty.dot",
    		},
    		{
    			file: "simple.dot",
    			nodes: []*dotVertex{
    				NewDOTVertex(alphaNode()),
    				NewDOTVertex(bravoNode()),
    				NewDOTVertex(charlieNode()),
    				NewDOTVertex(deltaNode()),
    				NewDOTVertex(foxtrotNode()),
    				NewDOTVertex(golfNode()),
    			},
    			edges: []dotEdge{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. src/internal/profile/graph.go

    			*em = (*em)[:len(*em)-1]
    			return
    		}
    	}
    }
    
    // Edge contains any attributes to be represented about edges in a graph.
    type Edge struct {
    	Src, Dest *Node
    	// The summary weight of the edge
    	Weight, WeightDiv int64
    
    	// residual edges connect nodes that were connected through a
    	// separate node, which has been removed from the report.
    	Residual bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top