Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 589 for graphml (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/split_into_island_per_op_pass.cc

      if (func.isExternal()) {
        // Just ignore the op if this is an external func with no body.
        return;
      }
    
      tf_executor::GraphOp graph_op;
    
      if (llvm::hasSingleElement(func.front().without_terminator())) {
        graph_op = dyn_cast<tf_executor::GraphOp>(func.front().front());
      }
    
      if (!graph_op) {
        func.emitError("expected function to contain only a graph_op");
        signalPassFailure();
        return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. test/typeparam/graph.go

    			}
    		}
    	}
    	return true
    }
    
    // A Graph is a collection of nodes. A node may have an arbitrary number
    // of edges. An edge connects two nodes. Both nodes and edges must be
    // comparable. This is an undirected simple graph.
    type _Graph[_Node _NodeC[_Edge], _Edge _EdgeC[_Node]] struct {
    	nodes []_Node
    }
    
    // _NodeC is the constraints on a node in a graph, given the _Edge type.
    type _NodeC[_Edge any] interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Node* read_1 = MakeRead(root, "R1");
    
      root.graph()->AddControlEdge(write_0, neutral_0);
      root.graph()->AddControlEdge(neutral_0, read_0);
      root.graph()->AddControlEdge(read_0, write_1);
      root.graph()->AddControlEdge(write_1, neutral_1);
      root.graph()->AddControlEdge(neutral_1, read_1);
    
      FixupSourceAndSinkEdges(root.graph());
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/graph.css

    #graph {
        cursor: grab;
    }
    
    #graph:active {
        cursor: grabbing;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 70 bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    }
    
    // New summarizes performance data from a profile into a graph.
    func New(prof *profile.Profile, o *Options) *Graph {
    	if o.CallTree {
    		return newTree(prof, o)
    	}
    	g, _ := newGraph(prof, o)
    	return g
    }
    
    // newGraph computes a graph from a profile. It returns the graph, and
    // a map from the profile location indices to the corresponding graph
    // nodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/ImmutableValueGraph.java

      private ImmutableValueGraph(ValueGraph<N, V> graph) {
        super(ValueGraphBuilder.from(graph), getNodeConnections(graph), graph.edges().size());
      }
    
      /** Returns an immutable copy of {@code graph}. */
      public static <N, V> ImmutableValueGraph<N, V> copyOf(ValueGraph<N, V> graph) {
        return (graph instanceof ImmutableValueGraph)
            ? (ImmutableValueGraph<N, V>) graph
            : new ImmutableValueGraph<N, V>(graph);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  7. src/unicode/example_test.go

    	// 	is graphic rune
    	// 	is number rune
    	// 	is printable rune
    	// For '!':
    	// 	is graphic rune
    	// 	is printable rune
    	// 	is punct rune
    	// For ' ':
    	// 	is graphic rune
    	// 	is printable rune
    	// 	is space rune
    	// For '℃':
    	// 	is graphic rune
    	// 	is printable rune
    	// 	is symbol rune
    	// For 'ᾭ':
    	// 	is graphic rune
    	// 	is letter rune
    	// 	is printable rune
    	// 	is title case rune
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 00:18:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/graph.go

    	virtual     bool
    	virtualLock sync.RWMutex
    	// when processing an Update event, we need to compare the updated
    	// ownerReferences with the owners recorded in the graph.
    	owners []metav1.OwnerReference
    }
    
    // clone() must only be called from the single-threaded GraphBuilder.processGraphChanges()
    func (n *node) clone() *node {
    	c := &node{
    		identity:           n.identity,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 13:37:56 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/PredecessorsFunction.java

     */
    
    package com.google.common.graph;
    
    import com.google.common.annotations.Beta;
    import com.google.errorprone.annotations.DoNotMock;
    
    /**
     * A functional interface for <a
     * href="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)">graph</a>-structured data.
     *
     * <p>This interface is meant to be used as the type of a parameter to graph algorithms (such as
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        [Terminator, ControlOperandsAfterAllData, HasParent<"GraphOp">]> {
      let summary = [{
        The `tf_executor.fetch` operation terminates the graph and returns values;
      }];
    
      let description = [{
        The non-control operands of the fetch operation are returned outside of the
        graph and must match the return type of the graph.
      }];
    
      let arguments = (ins
        Variadic<AnyType>:$fetches
      );
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
Back to top