Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,734 for Nodes (0.04 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.h

    limitations under the License.
    ==============================================================================*/
    
    // An optimization passes that marks nodes that are to be compiled with
    // attribute kXlaClusterAttr. Nodes with the same cluster ID will be compiled
    // together.
    
    #ifndef TENSORFLOW_COMPILER_JIT_MARK_FOR_COMPILATION_PASS_H_
    #define TENSORFLOW_COMPILER_JIT_MARK_FOR_COMPILATION_PASS_H_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 10 22:46:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

       private:
        // The subgraph extracted from the input graph, suitable for being turned
        // into a FunctionDef. Inputs are fed by _Arg nodes, and outputs are
        // returned by _Retval nodes.
        std::unique_ptr<Graph> graph_;
    
        // Which device are these nodes on? Used to assign a device to the call
        // node.
        string device_;
    
        // NodeDef for the function call node.
        NodeDef call_node_def_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    			pod:  makePod("pod-a").Pod,
    			nodes: []*v1.Node{
    				makeNode("node-a").Node,
    			},
    			wantPreFilterStatus: framework.NewStatus(framework.Skip),
    			wantFilterStatus: []*framework.Status{
    				nil,
    			},
    			wantPreScoreStatus: framework.NewStatus(framework.Skip),
    		},
    		{
    			name: "all bound",
    			pod:  makePod("pod-a").withPVCVolume("pvc-a", "").Pod,
    			nodes: []*v1.Node{
    				makeNode("node-a").Node,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/ValueGraph.java

     * href="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)">graph</a>-structured data,
     * whose edges have associated non-unique values.
     *
     * <p>A graph is composed of a set of nodes and a set of edges connecting pairs of nodes.
     *
     * <p>There are three primary interfaces provided to represent graphs. In order of increasing
     * complexity they are: {@link Graph}, {@link ValueGraph}, and {@link Network}. You should generally
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. pkg/scheduler/extender_test.go

    					Predicates:   []tf.FitPredicate{tf.Node1PredicateExtender},
    				},
    			},
    			nodes: []string{"node1", "node2"},
    			expectedResult: ScheduleResult{
    				SuggestedHost:  "node1",
    				EvaluatedNodes: 2,
    				FeasibleNodes:  1,
    			},
    			name: "test 10 - no scoring, extender filters configured, multiple feasible nodes are evaluated",
    		},
    		{
    			registerPlugins: []tf.RegisterPluginFunc{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	nodes := make([]*corev1.Node, 0, opts.nodes)
    	pods := make([]*corev1.Pod, 0, opts.nodes*opts.podsPerNode)
    	pvs := make([]*corev1.PersistentVolume, 0, (opts.nodes*opts.podsPerNode*opts.uniquePVCsPerPod)+(opts.sharedPVCsPerPod*opts.namespaces))
    	attachments := make([]*storagev1.VolumeAttachment, 0, opts.nodes*opts.attachmentsPerNode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Network.java

    /**
     * An interface for <a
     * href="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)">graph</a>-structured data,
     * whose edges are unique objects.
     *
     * <p>A graph is composed of a set of nodes and a set of edges connecting pairs of nodes.
     *
     * <p>There are three primary interfaces provided to represent graphs. In order of increasing
     * complexity they are: {@link Graph}, {@link ValueGraph}, and {@link Network}. You should generally
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. cluster/addons/cloud-controller-manager/cloud-node-controller-role.yaml

      - endpoints
      - serviceaccounts
      verbs:
      - create
      - get
      - update
    - apiGroups:
      - ""
      resources:
      - nodes
      verbs:
      - get
      - update
      - patch
    - apiGroups:
      - ""
      resources:
      - namespaces
      verbs:
      - get
    - apiGroups:
      - ""
      resources:
      - nodes/status
      verbs:
      - patch
      - update
    - apiGroups:
      - ""
      resources:
      - secrets
      verbs:
      - create
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 08 14:40:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DependencyArtifactsVisitor.java

    public interface DependencyArtifactsVisitor {
        /**
         * Visits a node in the graph. All nodes are visited prior to visiting the edges
         */
        default void visitNode(DependencyGraphNode node) {}
    
        /**
         * Visits the artifacts introduced by a particular edge in the graph. Called for every edge in the graph.
         * The nodes are visited in consumer-first order.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:04:06 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/BaseGraph.java

     */
    @ElementTypesAreNonnullByDefault
    interface BaseGraph<N> extends SuccessorsFunction<N>, PredecessorsFunction<N> {
      //
      // Graph-level accessors
      //
    
      /** Returns all nodes in this graph, in the order specified by {@link #nodeOrder()}. */
      Set<N> nodes();
    
      /** Returns all edges in this graph. */
      Set<EndpointPair<N>> edges();
    
      //
      // Graph properties
      //
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top