Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 194 for node_ (0.08 sec)

  1. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

        AddNodeAttr("function", function, &def);
    
        for (Node* node : nodes_to_remove) {
          VLOG(2) << "Deleting node " << node->DebugString();
          // Ensure that we do not attempt to add control edges to nodes that are
          // deleted.
          control_inputs.erase(node);
          control_outputs.erase(node);
          graph->RemoveNode(node);
        }
    
        TF_ASSIGN_OR_RETURN(Node * xla_launch, graph->AddNode(def));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. tensorflow/cc/tools/freeze_saved_model.cc

          &variable_to_value_map));
      // We copy the nodes in the same order they were in the original graph_def.
      for (const NodeDef& node : graph_def.node()) {
        if (reachable_node_names.find(node.name()) == reachable_node_names.end()) {
          continue;
        }
        if (variable_node_names.find(node.name()) != variable_node_names.end()) {
          ConvertVariableToConstant(node, variable_to_value_map[node.name()],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util_test.cc

              .Finalize(root.graph(), &call));
      call->AddAttr(std::string(kMustCompileAttr), true);
    
      TF_ASSERT_OK(root.ToGraph(&graph));
    
      // Required for passing the PS server parameter check.
      for (Node* node : graph.nodes()) {
        node->set_assigned_device_name("/job:ps/replica:0/task:0/device:GPU:0");
      }
    
      EXPECT_TRUE(
          IsSupportedByNonReplicatedBridge(graph, /*function_library=*/nullptr));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 19:51:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/partially_decluster_pass.cc

                                absl::flat_hash_set<Node*>* result,
                                absl::Span<Node* const> post_order) {
      // Find nodes that have at least one user outside their cluster that expects
      // hostmem output.  These nodes should be cloned to outside the cluster to
      // avoid the device-host copy we'd otherwise need.
    
      MemoryTypeVector input_mtypes, output_mtypes;
    
      for (Node* n : post_order) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    		{
    			"allocate 4 full cores with 3 coming from the first NUMA node (filling it up) and 1 coming from the second NUMA node",
    			topoDualSocketHT,
    			mustParseCPUSet(t, "0-11"),
    			8,
    			"",
    			mustParseCPUSet(t, "0,6,2,8,4,10,1,7"),
    		},
    		{
    			"allocate 32 full cores with 30 coming from the first 3 NUMA nodes (filling them up) and 2 coming from the fourth NUMA node",
    			topoDualSocketMultiNumaPerSocketHT,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/tls/HostnameVerifierTest.kt

        // [distinguished_name]
        // [req_extensions]
        // [x509_extensions]
        // subjectAltName=DNS:localhost.localdomain,DNS:localhost,IP:127.0.0.1
        //
        // $ openssl req -x509 -nodes -days 36500 -subj '/CN=localhost' -config ./cert.cnf \
        //     -newkey rsa:512 -out cert.pem
        val certificate =
          certificate(
            """
            -----BEGIN CERTIFICATE-----
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"template":             "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). The only allowed template.spec.restartPolicy value is \"Always\". More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_experimental.h

    // Creates a new eager Executor. Nodes in one executor are guaranteed to be
    // executed in sequence. Assigning nodes to different executors allows executing
    // nodes in parallel.
    // in_flight_nodes_limit: when is_async is true, this value controls the
    // maximum number of in flight async nodes. Enqueuing of additional async ops
    // after the limit is reached blocks until some inflight nodes finishes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	c := pprofCommands[cmd[0]]
    	if c == nil {
    		panic("unexpected nil command")
    	}
    
    	cfg = applyCommandOverrides(cmd[0], c.format, cfg)
    
    	// Create label pseudo nodes before filtering, in case the filters use
    	// the generated nodes.
    	generateTagRootsLeaves(p, cfg, o.UI)
    
    	// Delay focus after configuring report to get percentages on all samples.
    	relative := cfg.RelativePercentages
    	if relative {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. .github/actions/notify-translations/app/main.py

    all_discussions_query = """
    query Q($category_id: ID) {
      repository(name: "fastapi", owner: "tiangolo") {
        discussions(categoryId: $category_id, first: 100) {
          nodes {
            title
            id
            number
            labels(first: 10) {
              edges {
                node {
                  id
                  name
                }
              }
            }
          }
        }
      }
    }
    """
    
    translation_discussion_query = """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top