HomeSort by relevance Sort by last modified time
    Searched refs:rmin (Results 1 - 14 of 14) sorted by null

  /external/tensorflow/tensorflow/lite/kernels/internal/
quantization_util.h 31 QuantizationParams ChooseQuantizationParams(double rmin, double rmax,
39 TFLITE_CHECK_LE(rmin, 0.);
41 if (rmin == rmax) {
43 TFLITE_CHECK_EQ(rmin, 0.);
54 const double scale = (rmax - rmin) / (qmax_double - qmin_double);
60 // We know two such pairs: (rmin, qmin) and (rmax, qmax).
64 const double zero_point_from_min = qmin_double - rmin / scale;
67 std::abs(qmin_double) + std::abs(rmin / scale);
102 QuantizationParams ChooseQuantizationParams(double rmin, double rmax) {
103 return ChooseQuantizationParams<T>(rmin, rmax, false)
    [all...]
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/cpio/
CpioArchiveEntry.java 187 private long rmin = 0; field in class:CpioArchiveEntry
587 return this.rmin;
613 return this.rmin;
853 this.rmin = device;
873 * @param rmin
879 public void setRemoteDeviceMin(final long rmin) {
881 this.rmin = rmin;
  /external/v8/src/compiler/
operation-typer.cc 233 double rmin = rhs.AsRange()->Min(); local
235 results[0] = lmin * rmin;
237 results[2] = lmax * rmin;
244 (rmin == -V8_INFINITY || rmax == +V8_INFINITY)) ||
248 bool maybe_minuszero = (lhs.Maybe(cache_.kSingletonZero) && rmin < 0) ||
762 double const rmin = rhs.Min(); local
771 double rabs = std::max(std::abs(rmin), std::abs(rmax)) - 1;
809 double rmin = rhs.Min(); local
815 lmin >= 0 && rmin >= 0 ? std::max(lmin, rmin) : std::min(lmin, rmin)
846 double rmin = rhs.Min(); local
877 double rmin = rhs.Min(); local
    [all...]
  /external/swiftshader/third_party/subzero/bloat/
webtreemap.js 110 var rmin = node.data['$area']; // Smallest seen child so far.
111 var rmax = rmin; // Largest child.
116 if (size < rmin)
117 rmin = size;
127 1*rsum*rsum / (space*space*rmin));
  /frameworks/av/media/codec2/tests/
C2ComponentInterface_test.cpp 371 auto rmin = prim2Value(range.min); local
375 ASSERT_LE(rmin, rmax);
379 for (auto v = rmin; v <= rmax; v = TField(v + rstep)) {
382 if (rmin > std::numeric_limits<TField>::min()) {
383 invalidValues->emplace_back(TField(rmin - 1));
415 for (auto v = rmin; v <= rmax; v = TField(v * num / denom)) {
419 if (rmin > std::numeric_limits<TField>::min()) {
420 invalidValues->emplace_back(TField(rmin - 1));
  /external/eigen/lapack/
dlamch.f 35 *> = 'U' or 'u', DLAMCH := rmin
46 *> rmin = underflow threshold - base**(emin-1)
slamch.f 39 *> = 'U' or 'u', SLAMCH := rmin
50 *> rmin = underflow threshold - base**(emin-1)
  /external/mesa3d/src/mesa/swrast/
s_points.c 306 const GLfloat rmin = radius - 0.7071F; /* 0.7071 = sqrt(2)/2 */ local
308 const GLfloat rmin2 = MAX2(0.0F, rmin * rmin);
  /external/tensorflow/tensorflow/python/layers/
normalization_test.py     [all...]
  /external/tensorflow/tensorflow/python/keras/layers/
normalization.py 76 renorm_clipping: A dictionary that may map keys 'rmax', 'rmin', 'dmax' to
79 `r` clipped to [rmin, rmax], and `d` to [-dmax, dmax]. Missing rmax, rmin,
200 keys = ['rmax', 'rmin', 'dmax']
515 rmin, rmax, dmax = [self.renorm_clipping.get(key)
516 for key in ['rmin', 'rmax', 'dmax']]
517 if rmin is not None:
518 r = math_ops.maximum(r, rmin)
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_setup.c 1341 const float rmin = halfSize - 0.7071F; \/* 0.7071 = sqrt(2)\/2 *\/ local
    [all...]
  /external/tensorflow/tensorflow/lite/kernels/internal/reference/
reference_ops.h     [all...]
legacy_reference_ops.h     [all...]
  /external/libxml2/
xmlschemas.c     [all...]

Completed in 2520 milliseconds