Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 349 for node_names (0.15 sec)

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

      std::vector<string> node_names;
      std::vector<string> node_dtypes;
      std::vector<std::optional<std::vector<int>>> node_shapes;
      TF_RETURN_IF_ERROR(ParseNodeNames(array_names, node_names));
      TF_RETURN_IF_ERROR(ParseNodeDataTypes(data_types, node_dtypes));
      TF_RETURN_IF_ERROR(ParseNodeShapes(shapes, node_shapes));
      return ParseInputArrayInfo(node_names, node_dtypes, node_shapes, inputs);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. cluster/log-dump/log-dump.sh

      else
        echo 'Detecting nodes in the cluster'
        detect-node-names &> /dev/null
        if [[ -n "${NODE_NAMES:-}" ]]; then
          node_names=( "${NODE_NAMES[@]}" )
        fi
        if [[ -n "${WINDOWS_NODE_NAMES:-}" ]]; then
          windows_node_names=( "${WINDOWS_NODE_NAMES[@]}" )
        fi
      fi
    
      if [[ "${#node_names[@]}" == 0 && "${#windows_node_names[@]}" == 0 ]]; then
        echo 'No nodes found!'
        return
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      QDQConversionMode qdq_conversion_mode = QDQConversionMode::kQDQNone;
    };
    
    // Parses the command line flag strings to the CustomOpMap specification.
    void ParseCustomOpSpecs(absl::string_view node_names,
                            const CustomOpUpdateOptions& update_option,
                            CustomOpMap& custom_op_map);
    
    // Parses the command line flag strings to the quantization specification for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

    }
    
    absl::Status PopulateQuantizationSpecs(
        const toco::ModelFlags& model_flags, toco::TocoFlags& toco_flags,
        mlir::quant::QuantizationSpecs* quant_specs,
        std::vector<std::string>* node_names, std::vector<std::string>* node_dtypes,
        std::vector<std::optional<std::vector<int>>>* node_shapes,
        std::vector<std::optional<double>>* node_mins,
        std::vector<std::optional<double>>* node_maxs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

      // Parse input arrays.
      std::vector<string> node_names;
      std::vector<string> node_dtypes;
      std::vector<std::optional<std::vector<int>>> node_shapes;
      std::vector<std::optional<double>> node_mins;
      std::vector<std::optional<double>> node_maxs;
    
      // Populate quantization specs.
      TF_RETURN_IF_ERROR(internal::PopulateQuantizationSpecs(
          model_flags, toco_flags, &quant_specs, &node_names, &node_dtypes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. cluster/gce/upgrade.sh

      write-cluster-name
      tars_from_version
    }
    
    # Reads kube-env metadata from first node in NODE_NAMES.
    #
    # Assumed vars:
    #   NODE_NAMES
    #   PROJECT
    #   ZONE
    function get-node-env() {
      # TODO(zmerlynn): Make this more reliable with retries.
      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${NODE_NAMES[0]}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    	dsw := NewDesiredStateOfWorld(volumePluginMgr)
    	nodeName := k8stypes.NodeName("node-name")
    
    	// Act
    	dsw.AddNode(nodeName)
    
    	// Assert
    	nodeExists := dsw.NodeExists(nodeName)
    	if !nodeExists {
    		t.Fatalf("Added node %q does not exist, it should.", nodeName)
    	}
    
    	// Act
    	dsw.AddNode(nodeName)
    
    	// Assert
    	nodeExists = dsw.NodeExists(nodeName)
    	if !nodeExists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  8. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    				p = EmptyUniquePodName
    				n = types.NodeName("operation-nodename")
    			}
    			volumeNames = append(volumeNames, v)
    			podNames = append(podNames, p)
    			nodeNames = append(nodeNames, n)
    		}
    
    		t.Run(fmt.Sprintf("Test %d", test.testID), func(t *testing.T) {
    			if test.expectPass {
    				testConcurrentOperationsPositive(t,
    					volumeNames[0], podNames[0], nodeNames[0],
    					volumeNames[1], podNames[1], nodeNames[1],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/plan.go

    			components = append(components, newComponentUpgradePlan(constants.KubeAPIServer, oldVersion, up.After.KubeVersion, nodeName))
    		}
    	}
    
    	for _, oldVersion := range sortedSliceFromStringStringArrayMap(up.Before.KubeControllerManagerVersions) {
    		nodeNames := up.Before.KubeControllerManagerVersions[oldVersion]
    		for _, nodeName := range nodeNames {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. pkg/scheduler/extender.go

    	}
    	if result.Error != "" {
    		return nil, nil, nil, fmt.Errorf(result.Error)
    	}
    
    	if h.nodeCacheCapable && result.NodeNames != nil {
    		nodeResult = make([]*framework.NodeInfo, len(*result.NodeNames))
    		for i, nodeName := range *result.NodeNames {
    			if n, ok := fromNodeName[nodeName]; ok {
    				nodeResult[i] = n
    			} else {
    				return nil, nil, nil, fmt.Errorf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top