Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for out_nodes (0.29 sec)

  1. tensorflow/compiler/aot/tfcompile.bzl

            # First run tfcompile to generate the list of out_nodes.
            #
            # Here and below, we set CUDA_VISIBLE_DEVICES='' to prevent the code we
            # launch from using any GPUs which might be present.  This is important
            # because builds may run concurrently with tests, and tests need to be
            # able to assume that they have control of the full GPU.
            out_nodes_file = "out_nodes_" + freeze_name
            native.genrule(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // increasing its live range.
        //
        // See b/221997940 for a real-world example of this.
        if (n->op_def().name() == "Fill" &&
            n->out_nodes().begin() != n->out_nodes().end() &&
            absl::c_all_of(n->out_nodes(), [&](Node* user) {
              return GetClusterForNode(user) != cluster;
            })) {
          declustered_nodes_.insert(n);
        }
      }
    
      return absl::OkStatus();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/graph/GraphMutationTest.java

    @RunWith(JUnit4.class)
    
    public final class GraphMutationTest {
      private static final int NUM_TRIALS = 50;
      private static final int NUM_NODES = 100;
      private static final int NUM_EDGES = 1000;
      private static final int NODE_POOL_SIZE = 1000; // must be >> NUM_NODES
    
      @Test
      public void directedGraph() {
        testGraphMutation(GraphBuilder.directed());
      }
    
      @Test
      public void undirectedGraph() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 18 16:17:46 UTC 2017
    - 4.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      return recv_at_host_node;
    }
    
    // Gets data types from `ret_nodes` and fills them into `send_from_host_dtypes`.
    Status GetRetDataTypes(const std::vector<Node*>& ret_nodes,
                           std::vector<DataType>* send_from_host_dtypes) {
      send_from_host_dtypes->resize(ret_nodes.size(), DT_INVALID);
      for (auto* n : ret_nodes) {
        int index;
        TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "index", &index));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. cluster/kubemark/gce/config-default.sh

    # NUM_NODES should not be specified by the user. Instead we use
    # NUM_NODES=KUBEMARK_AUTOSCALER_MAX_NODES. This gives other cluster components
    # (e.g. kubemark master, Heapster) enough resources to handle maximum cluster size.
    if [[ "${ENABLE_KUBEMARK_CLUSTER_AUTOSCALER}" == "true" ]]; then
      NUM_REPLICAS=1
      if [[ -n "$NUM_NODES" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 09 19:04:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. tests/integration/create_cluster_gke.sh

    MACHINE_TYPE=${MACHINE_TYPE:-n1-standard-4}
    NUM_NODES=${NUM_NODES:-3}
    # Store the previous value (which may have been unset) so we can restore it on cleanup
    OLD_USE_CLIENT_CERT=$(gcloud config list 2>/dev/null | grep use_client_certificate | cut -d' ' -f3)
    
    function usage() {
      echo "${0} -p PROJECT [-z ZONE] [-c CLUSTER_NAME] [-v CLUSTER_VERSION] [-m MACHINE_TYPE] [-n NUM_NODES]"
      echo ''
      # shellcheck disable=SC2016
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 12 16:02:51 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  7. cluster/gce/config-common.sh

    # limitations under the License.
    
    # Returns the total number of Linux and Windows nodes in the cluster.
    #
    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    function get-num-nodes {
      echo "$((NUM_NODES + NUM_WINDOWS_NODES))"
    }
    
    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    function get-master-size {
      local suggested_master_size=2
      if [[ "$(get-num-nodes)" -gt "10" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. cluster/kubemark/iks/config-default.sh

    # User defined
    # number of real workers in spawnTester cluster
    NUM_NODES="${NUM_NODES:-2}"
    # spec of real workers in spawnTester cluster
    NODE_SIZE=${NODE_SIZE:-u2c.2x4}
    DESIRED_NODES="${DESIRED_NODES:-10}"
    # number of hollow nodes
    # TODO: once IKS supports `kubetest`, i.e. the base cluster provisioning implemented in `kubetest`
    # we can use NUM_NODES=${KUBEMARK_NUM_NODES:-10} to avoid usage of KUBEMARK_NUM_NODES
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 17:15:29 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  9. pkg/apis/storage/v1beta1/defaults_test.go

    	output := roundTrip(t, runtime.Object(driver)).(*storagev1beta1.CSIDriver)
    	outModes := output.Spec.VolumeLifecycleModes
    	if len(outModes) != 1 {
    		t.Errorf("Expected VolumeLifecycleModes to be defaulted to: %+v, got: %+v", defaultMode, outModes)
    	} else if outModes[0] != defaultMode {
    		t.Errorf("Expected VolumeLifecycleModes to be defaulted to: %+v, got: %+v", defaultMode, outModes)
    	}
    }
    
    func TestSetDefaultCSIDriver(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. hack/e2e-internal/e2e-grow-cluster.sh

      export MULTIZONE="${2}"
    fi
    if [[ -n "${3:-}" ]]; then
      export KUBE_REPLICATE_EXISTING_MASTER="${3}"
    fi
    if [[ -n "${4:-}" ]]; then
      export KUBE_USE_EXISTING_MASTER="${4}"
    fi
    if [[ -z "${NUM_NODES:-}" ]]; then
      export NUM_NODES=3
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 1K bytes
    - Viewed (0)
Back to top