Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for Edges (0.04 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.h

    // and transforms the module in place to cluster the given ops for compilation
    // that is compatible with the given device_type. The MLIR should be in the TF
    // Executor Dialect for graph nodes and edges or TF Functional. It will convert
    // to TF Functional internally. Individual Op inside a node should be the
    // Tensorflow Dialect. The output MLIR is in the TF Functional Dialect.  The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 14:08:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

      // We need to introduce this version to adapt to the output of gpu inference
      // converter. The single argument overload version calls this function.
      //
      // When add_edges_to_output_of_downstream_nodes is true, the output edges of
      // the xla_launch_node's immediate downstream nodes would be attached to the
      // generated xla node. For example, if the original graph is
      // StatefulPartitionedCall{_xla_compile_id=1} -> XlaClusterOutput -> NodeA
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.h

    // and transforms the module in place to cluster the given ops for compilation
    // that is compatible with the given device_type. The MLIR should be in the TF
    // Executor Dialect for graph nodes and edges or be in TF Functional already.
    // Individual Op inside a node should be the Tensorflow Functional Dialect. The
    // output MLIR is in the TF Functional Dialect. Returns OkStatus if passed,
    // otherwise an error.
    //
    // Inputs:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/DependencyGraphsRenderer.java

                }
                renderer.completeChildren();
            }
        }
    
        private void doRender(final RenderableDependency node, boolean last, Set<Object> visited) {
            // Do a shallow render of any constraint edges, and do not mark the node as visited.
            if (node.getResolutionState() == RenderableDependency.ResolutionState.RESOLVED_CONSTRAINT) {
                renderNode(node, last, false, dependenciesRenderer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/VirtualPlatformState.java

         * to resolve the platform itself. If the platform was declared as a dependency,
         * then the engine thinks that the platform module is unresolved. We need to
         * remember such edges, because in case a virtual platform gets defined, the error
         * is no longer valid and we can attach the target revision.
         *
         * @param edge the orphan edge
         */
        void addOrphanEdge(EdgeState edge) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencySuccessorsOnlyNodeSet.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.plan.edges;
    
    import com.google.common.collect.ImmutableSortedSet;
    import org.gradle.execution.plan.Node;
    
    import java.util.HashSet;
    import java.util.Iterator;
    import java.util.NavigableSet;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadcode.go

    	reachable := ReachableBlocks(f)
    
    	// Get rid of edges from dead to live code.
    	for _, b := range f.Blocks {
    		if reachable[b.ID] {
    			continue
    		}
    		for i := 0; i < len(b.Succs); {
    			e := b.Succs[i]
    			if reachable[e.b.ID] {
    				b.removeEdge(i)
    			} else {
    				i++
    			}
    		}
    	}
    
    	// Get rid of dead edges from live code.
    	for _, b := range f.Blocks {
    		if !reachable[b.ID] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/StandardMutableValueGraph.java

        if (connections == null) {
          return false;
        }
    
        if (allowsSelfLoops()) {
          // Remove self-loop (if any) first, so we don't get CME while removing incident edges.
          if (connections.removeSuccessor(node) != null) {
            connections.removePredecessor(node);
            --edgeCount;
          }
        }
    
        for (N successor : ImmutableList.copyOf(connections.successors())) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Oct 21 01:50:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/graph/StandardValueGraph.java

      private final boolean allowsSelfLoops;
      private final ElementOrder<N> nodeOrder;
    
      final MapIteratorCache<N, GraphConnections<N, V>> nodeConnections;
    
      long edgeCount; // must be updated when edges are added or removed
    
      /** Constructs a graph with the properties specified in {@code builder}. */
      StandardValueGraph(AbstractGraphBuilder<? super N> builder) {
        this(
            builder,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/graph/StandardMutableValueGraph.java

        if (connections == null) {
          return false;
        }
    
        if (allowsSelfLoops()) {
          // Remove self-loop (if any) first, so we don't get CME while removing incident edges.
          if (connections.removeSuccessor(node) != null) {
            connections.removePredecessor(node);
            --edgeCount;
          }
        }
    
        for (N successor : ImmutableList.copyOf(connections.successors())) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Oct 21 01:50:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top