Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for float1 (0.12 sec)

  1. doc/go1.17_spec.html

    </p>
    
    <pre>
    uint(iota)               // iota value of type uint
    float32(2.718281828)     // 2.718281828 of type float32
    complex128(1)            // 1.0 + 0.0i of type complex128
    float32(0.49999999)      // 0.5 of type float32
    float64(-1e-1000)        // 0.0 of type float64
    string('x')              // "x" of type string
    string(0x266c)           // "♬" of type string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      std::vector<float> result_values;
      result_values.reserve(output_size);
    
      for (int i = 0; i < output_size; ++i) {
        // Dot product with Kahan/Neumaier summation to minimize numeric errors.
        float sum = has_bias ? *bias_values_it : 0.0f;
        float compensation = 0.0f;
        for (int j = 0; j < input_size; ++j) {
          const float addend = input_values_it[j] * weights_row_it[j];
          const float new_sum = sum + addend;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                     element_type)) {
        std::vector<float> mins = {static_cast<float>(qtype.getMin())};
        std::vector<float> maxs = {static_cast<float>(qtype.getMax())};
        q_params = tflite::CreateQuantizationParameters(
            builder_, builder_.CreateVector<float>(mins),
            builder_.CreateVector<float>(maxs));
      }
      return tflite::CreateTensor(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK-LABEL: dot_general_upstream_srq_wrong_contracting
    // CHECK: stablehlo.dot_general
    // CHECK-NOT: tfl.batch_matmul
    
    // -----
    
    // Tests static range quantized dot_general with float operands
    
    // CHECK-LABEL: dot_general_upstream_srq_float_operands
    func.func @dot_general_upstream_srq_float_operands(%arg0: tensor<1x2x3x4xf32>, %arg1: tensor<1x2x4x5xf32>) -> tensor<1x2x3x5xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    	return j
    }
    
    type PrecisionItem struct {
    	Name    string  `json:"name,omitempty"`
    	Int32   int32   `json:"int32,omitempty"`
    	Int64   int64   `json:"int64,omitempty"`
    	Float32 float32 `json:"float32,omitempty"`
    	Float64 float64 `json:"float64,omitempty"`
    }
    
    var (
    	precisionItem             PrecisionItem
    	precisionItemStructSchema = PatchMetaFromStruct{T: GetTagStructTypeOrDie(precisionItem)}
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

    REGISTER_OP("UnaryTest")
        .Input("a: float")
        .Output("o: float")
        .SetShapeFn([](::tensorflow::shape_inference::InferenceContext* c) {
          ::tensorflow::shape_inference::ShapeHandle o;
          TF_RETURN_IF_ERROR(c->Merge(c->UnknownShape(), c->input(0), &o));
          c->set_output(0, o);
          return absl::OkStatus();
        });
    REGISTER_OP("BinaryTest")
        .Input("a: float")
        .Input("b: float")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Trunc64to32 (Const64  [c])) => (Const32  [int32(c)])
    (Cvt64Fto32F (Const64F [c])) => (Const32F [float32(c)])
    (Cvt32Fto64F (Const32F [c])) => (Const64F [float64(c)])
    (Cvt32to32F  (Const32  [c])) => (Const32F [float32(c)])
    (Cvt32to64F  (Const32  [c])) => (Const64F [float64(c)])
    (Cvt64to32F  (Const64  [c])) => (Const32F [float32(c)])
    (Cvt64to64F  (Const64  [c])) => (Const64F [float64(c)])
    (Cvt32Fto32  (Const32F [c])) => (Const32  [int32(c)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    		return nil, nil
    	}
    	return int64(n.Byte), nil
    }
    
    // NullFloat64 represents a float64 that may be null.
    // NullFloat64 implements the [Scanner] interface so
    // it can be used as a scan destination, similar to [NullString].
    type NullFloat64 struct {
    	Float64 float64
    	Valid   bool // Valid is true if Float64 is not NULL
    }
    
    // Scan implements the [Scanner] interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    l-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:lef...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    }
    
    // Converts an Attribute with a single value of float or integral type to an
    // Attribute holding a single value of float type. If attr has no elements, the
    // result is 0.0f.
    TypedAttr ConvertSingleElementAttrToFloatAttr(Attribute attr) {
      const auto dense_fp_attr = mlir::dyn_cast_or_null<DenseFPElementsAttr>(attr);
      if (dense_fp_attr) {
        // Already float => return
        return dense_fp_attr;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top