Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 99 for Edges (0.04 sec)

  1. src/go/types/initorder.go

    			M[obj] = &graphNode{obj: obj}
    		}
    	}
    
    	// compute edges for graph M
    	// (We need to include all nodes, even isolated ones, because they still need
    	// to be scheduled for initialization in correct order relative to other nodes.)
    	for obj, n := range M {
    		// for each dependency obj -> d (= deps[i]), create graph edges n->s and s->n
    		for d := range objMap[obj].deps {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/gradients.cc

        auto const& pair = visited.insert(nout.node());
        if (pair.second) {
          queue.push_back(std::make_pair(nout.node(), static_cast<Node*>(nullptr)));
        }
      }
      // BFS from nodes in 'inputs_' along out edges for the entire graph. Internal
      // output nodes are recorded during the traversal. All nodes that are output
      // nodes but not internal output nodes are considered the frontier of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

            return current;
        }
    
        private Collection<DependencyEdge> toDependencyEdges(Collection<DependencyResult> dependencies) {
            List<DependencyEdge> edges = CollectionUtils.collect(dependencies, TO_EDGES);
            return DependencyResultSorter.sort(edges, versionSelectorScheme, versionComparator, versionParser);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/rearrange_function_argument_pass_test.cc

      ASSERT_EQ(f1_rewritten->signature().output_arg_size(), 1);
      EXPECT_EQ(f1_rewritten->signature().output_arg(0).type(), DT_BOOL);
    
      // Check node "if" input and output edges.
      auto node_name_index = g->BuildNodeNameIndex();
      const Node *if_node = node_name_index.at("if");
      ASSERT_NE(if_node, nullptr);
      const Node *input_node;
      TF_CHECK_OK(if_node->input_node(1, &input_node));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     *       locks---to each of the acquired locks, an edge from the soon-to-be-acquired lock is either
     *       verified or created.
     *   <li>If a new edge needs to be created, the outgoing edges of the acquired locks are traversed
     *       to check for a cycle that reaches the lock to be acquired. If no cycle is detected, a new
     *       "safe" edge is created.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/compile.go

    	{"tighten tuple selectors", "schedule"},
    	// remove critical edges before phi tighten, so that phi args get better placement
    	{"critical", "phi tighten"},
    	// don't layout blocks until critical edges have been removed
    	{"critical", "layout"},
    	// regalloc requires the removal of all critical edges
    	{"critical", "regalloc"},
    	// regalloc requires all the values in a block to be scheduled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/scope.h

      /// successful. Otherwise, return the error status.
      // TODO(josh11b, keveman): Make this faster; right now it converts
      // Graph->GraphDef->Graph.  This cleans up the graph (e.g. adds
      // edges from the source and to the sink node, resolves back edges
      // by name), and makes sure the resulting graph is valid.
      Status ToGraph(
          Graph* g, GraphConstructorOptions opts = GraphConstructorOptions{}) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                }
            }
    
            where:
            classpath | usage
            'compile' | 'api'
            'runtime' | 'runtime'
        }
    
        def 'platform deselection / reselection does not cause orphan edges'() {
            given:
            def depExcluded = mavenHttpRepo.module('org.test', 'excluded', '1.0').publish()
            def depA = mavenHttpRepo.module('org.test', 'depA', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

            assert newSelection != null;
            assert this.selected != newSelection;
            assert newSelection.getModule() == this;
    
            changingSelection = true;
    
            // Remove any outgoing edges for the current selection
            selected.removeOutgoingEdges();
    
            this.selected = newSelection;
            this.replaced = false;
    
            doRestart(newSelection);
            changingSelection = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/build_xla_ops_pass.cc

        return;
      }
    
      // We can't merge control edges directly so we instead first "convert" them to
      // normal values that can be merged, merge the values and then "convert" the
      // merged value back into control.
      //
      // NB! We need to copy out the outgoing control edges before constructing
      // old_ctrl_as_data otherwise the control edge from old_node to the constant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top