Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 951 for node_names (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.cc

      return result;
    }
    }  // namespace
    
    void ParseCustomOpSpecs(const absl::string_view node_names,
                            const CustomOpUpdateOptions& update_option,
                            CustomOpMap& custom_op_map) {
      if (node_names.empty()) return;
    
      const std::vector<std::string> custom_nodes = absl::StrSplit(node_names, ',');
    
      for (const std::string& cur_node : custom_nodes) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.cc

      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;
    
      // 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: Mon Mar 11 19:29:56 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. cluster/skeleton/util.sh

    function detect-master {
    	echo "KUBE_MASTER_IP: ${KUBE_MASTER_IP:-}" 1>&2
    	echo "KUBE_MASTER: ${KUBE_MASTER:-}" 1>&2
    }
    
    # Get node names if they are not static.
    function detect-node-names {
    	echo "NODE_NAMES: [${NODE_NAMES[*]}]" 1>&2
    }
    
    # Get node IP addresses and store in KUBE_NODE_IP_ADDRESSES[]
    function detect-nodes {
    	echo "KUBE_NODE_IP_ADDRESSES: [${KUBE_NODE_IP_ADDRESSES[*]}]" 1>&2
    }
    
    # Verify prereqs on host machine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 13 00:54:20 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/lite/python/jax_to_tfl_flatbuffer.cc

      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;
    
      // 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: Mon Mar 11 19:29:56 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.h

    // input arrays.
    Status PopulateQuantizationSpecs(
        const toco::ModelFlags& model_flags, toco::TocoFlags& toco_flags,
        mlir::quant::QuantizationSpecs* quant_specs,
        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);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. 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)
Back to top