Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for float2 (0.16 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

          // If the tensor is a weight, it should have type FLOAT16.
          // If the tensor is a bias, it should have type FLOAT16.
          // If the tensor is an input or output it should have type FLOAT32.
          // The input to dequantize should be FLOAT16, and all other tensors should
          // be FLOAT32.
          if (i == dequant_input_idx) {
            EXPECT_EQ(quant_tensor->type(), TensorType_FLOAT16);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.h

    //
    // The `input_type`, `output_type` and `inference_type` can be float32 / qint8 /
    // int8 / int16.
    //
    // Returns a partially quantized model if `fully_quantize` is false. Returns a
    // non-OK status if the quantization fails.
    //
    // When `verify_numeric` is true, the model will have it's original float ops
    // and NumericVerify ops to compare output values from the quantized and float
    // ops.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      const int max_T = std::numeric_limits<T>::max();
      const float max_float = std::numeric_limits<float>::max();
    
      const float scale_factor_from_min_side =
          (min_T * min_range > 0) ? min_T / min_range : max_float;
      const float scale_factor_from_max_side =
          (max_T * max_range > 0) ? max_T / max_range : max_float;
    
      const float scale_factor = std::min(scale_factor_from_min_side,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                ConstantValueKind.Double -> KaConstantValue.KaDoubleConstantValue(value as Double, psi)
                ConstantValueKind.Float -> KaConstantValue.KaFloatConstantValue(value as Float, psi)
    
                ConstantValueKind.Boolean -> KaConstantValue.KaBooleanConstantValue(value as Boolean, psi)
                ConstantValueKind.Char -> KaConstantValue.KaCharConstantValue(value as Char, psi)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

          CreateOpMetadata(fb_builder, 1, 0,
                           fb_builder.CreateVector(std::vector<float>({1.0, 5.0}))),
          CreateOpMetadata(fb_builder, 2, 0,
                           fb_builder.CreateVector(std::vector<float>({1.0, 5.0}))),
          CreateOpMetadata(
              fb_builder, 3, 1,
              fb_builder.CreateVector(std::vector<float>({-1.0, 2.0}))),
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. cmd/metrics-v2.go

    		if globalExpiryState != nil {
    			expPendingTasks.Value = float64(globalExpiryState.PendingTasks())
    			expMissedTasks.Value = float64(globalExpiryState.stats.MissedTasks())
    			expMissedFreeVersions.Value = float64(globalExpiryState.stats.MissedFreeVersTasks())
    			expMissedTierJournalTasks.Value = float64(globalExpiryState.stats.MissedTierJournalTasks())
    			expNumWorkers.Value = float64(globalExpiryState.stats.NumWorkers())
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

        const QuantizationParametersT& quantized_quant_params, const int bit_num,
        const bool symmetric) {
      const float eps = 1e-7;
      ASSERT_THAT(*float_quant_params.min(), SizeIs(1));
      ASSERT_THAT(*float_quant_params.max(), SizeIs(1));
      float float_min = std::min(0.f, float_quant_params.min()->Get(0));
      float float_max = std::max(0.f, float_quant_params.max()->Get(0));
      if (symmetric) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/extra-data-types.md

    # 추가 데이터 자료형
    
    지금까지 일반적인 데이터 자료형을 사용했습니다. 예를 들면 다음과 같습니다:
    
    * `int`
    * `float`
    * `str`
    * `bool`
    
    하지만 더 복잡한 데이터 자료형 또한 사용할 수 있습니다.
    
    그리고 지금까지와 같은 기능들을 여전히 사용할 수 있습니다.
    
    * 훌륭한 편집기 지원.
    * 들어오는 요청의 데이터 변환.
    * 응답 데이터의 데이터 변환.
    * 데이터 검증.
    * 자동 어노테이션과 문서화.
    
    ## 다른 데이터 자료형
    
    아래의 추가적인 데이터 자료형을 사용할 수 있습니다:
    
    * `UUID`:
        * 표준 "범용 고유 식별자"로, 많은 데이터베이스와 시스템에서 ID로 사용됩니다.
        * 요청과 응답에서 `str`로 표현됩니다.
    * `datetime.datetime`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 02:45:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

      return device_name_str.str();
    }
    
    std::optional<std::vector<float>> GetPerDeviceCosts(
        const std::map<std::string, uint8_t>& hardware_map, mlir::Operation* op) {
      auto device_costs_attr =
          op->getAttrOfType<mlir::DictionaryAttr>("per_device_costs");
      if (device_costs_attr == nullptr) return std::nullopt;
    
      std::vector<float> device_costs(hardware_map.size(), -1.f);
    
      for (const auto& kv : hardware_map) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/propertyInit_Float.txt

    expression: 3.14f
    constant: 3.14f
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 59 bytes
    - Viewed (0)
Back to top