HomeSort by relevance Sort by last modified time
    Searched full:epsilon (Results 126 - 150 of 1186) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
batch_norm_op.cc 29 OP_REQUIRES_OK(ctx, ctx->GetAttr("epsilon", &epsilon_));
106 OP_REQUIRES_OK(ctx, ctx->GetAttr("epsilon", &epsilon_));
166 // epsilon))
167 // x_backprop = y_backprop * (scale * rsqrt(pop_var + epsilon))
172 // scratch1 = rsqrt(pop_var + epsilon)
  /frameworks/support/graphics/drawable/animated/src/main/java/androidx/vectordrawable/graphics/drawable/
PathInterpolatorCompat.java 61 public static final double EPSILON = 0.00001;
158 if (abs(mX[0]) > EPSILON || abs(mY[0]) > EPSILON || abs(mX[numPoints - 1] - 1) > EPSILON
159 || abs(mY[numPoints - 1] - 1) > EPSILON) {
  /cts/hostsidetests/incident/src/com/android/server/cts/
BatteryStatsIncidentTest.java 110 final long epsilon = 500; // Allow ~500 ms of error when comparing times. local
119 assertTrue(totalUptimeMs <= totalRealtimeMs + epsilon);
123 assertTrue(batteryUptimeMs <= batteryRealtimeMs + epsilon);
125 batteryRealtimeMs <= totalRealtimeMs + epsilon);
126 assertTrue(batteryUptimeMs <= totalUptimeMs + epsilon);
130 assertTrue(screenOffUptimeMs <= screenOffRealtimeMs + epsilon);
131 assertTrue(screenOffRealtimeMs <= totalRealtimeMs + epsilon);
132 assertTrue(screenOffUptimeMs <= totalUptimeMs + epsilon);
135 assertTrue(screenDozeDurationMs <= screenOffRealtimeMs + epsilon);
  /external/eigen/Eigen/src/Core/util/
Meta.h 178 static T epsilon() { return 0; } function in struct:Eigen::internal::device::numeric_limits
187 static float epsilon() { return __FLT_EPSILON__; } function in struct:Eigen::internal::device::numeric_limits
200 static double epsilon() { return __DBL_EPSILON__; } function in struct:Eigen::internal::device::numeric_limits
213 static int epsilon() { return 0; } function in struct:Eigen::internal::device::numeric_limits
222 static unsigned int epsilon() { return 0; } function in struct:Eigen::internal::device::numeric_limits
231 static long epsilon() { return 0; } function in struct:Eigen::internal::device::numeric_limits
240 static unsigned long epsilon() { return 0; } function in struct:Eigen::internal::device::numeric_limits
249 static long long epsilon() { return 0; } function in struct:Eigen::internal::device::numeric_limits
258 static unsigned long long epsilon() { return 0; } function in struct:Eigen::internal::device::numeric_limits
  /external/protobuf/js/binary/
reader_test.js 197 * @param {number} epsilon
204 writeField, epsilon, upperLimit, filter) {
212 writeField.call(writer, 2, filter(epsilon));
216 for (var cursor = epsilon; cursor < upperLimit; cursor *= 1.1) {
229 assertEquals(filter(epsilon), readField.call(reader));
236 for (var cursor = epsilon; cursor < upperLimit; cursor *= 1.1) {
248 * @param {number} epsilon
256 writeField, epsilon, lowerLimit, upperLimit, filter) {
261 writeField.call(writer, 2, filter(-epsilon));
263 writeField.call(writer, 4, filter(epsilon));
    [all...]
  /external/tensorflow/tensorflow/core/ops/
training_ops.cc 164 TF_RETURN_IF_ERROR(c->WithRank(c->input(5), 0, &unused)); // epsilon
179 .Input("epsilon: T")
194 .Input("epsilon: T")
211 .Input("epsilon: T")
225 .Input("epsilon: T")
694 TF_RETURN_IF_ERROR(c->WithRank(c->input(8), 0, &unused)); // epsilon
712 .Input("epsilon: T")
731 .Input("epsilon: T")
748 TF_RETURN_IF_ERROR(c->WithRank(c->input(6), 0, &unused)); // epsilon
766 TF_RETURN_IF_ERROR(c->WithRank(c->input(7), 0, &unused)); // epsilon
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
cudnn_batchnorm_thunk.cc 83 const BufferAllocation::Slice& variance, float epsilon, int64 feature_index,
91 epsilon_(epsilon),
136 float epsilon, int64 feature_index,
145 epsilon_(epsilon),
214 const BufferAllocation::Slice& grad_output, float epsilon,
225 epsilon_(epsilon),
gpu_layout_assignment_test.cc 133 auto* epsilon = builder.AddInstruction( local
141 {operand, scale, offset, mean, variance, epsilon, feature_index},
201 auto* epsilon = builder.AddInstruction( local
208 batchnorm_shape, {operand, scale, offset, epsilon, feature_index},
277 auto* epsilon = builder.AddInstruction( local
286 {operand, scale, mean, var, grad_offset, epsilon,
  /external/tensorflow/tensorflow/python/lib/core/
bfloat16_test.py 39 epsilon = float.fromhex("1.0p-7")
41 0.0, 1.0, -1, 0.5, -0.5, epsilon, 1.0 + epsilon, 1.0 - epsilon,
42 -1.0 - epsilon, -1.0 + epsilon, 3.5, 42.0, 255.0, 256.0,
  /external/tensorflow/tensorflow/python/training/
rmsprop.py 25 mom = momentum * mom{t-1} + learning_rate * g_t / sqrt(mean_square + epsilon)
36 sqrt(mean_square - mean_grad**2 + epsilon)
65 epsilon=1e-10,
87 epsilon: Small value to avoid zero denominator.
100 self._epsilon = epsilon
128 self._epsilon_tensor = ops.convert_to_tensor(self._epsilon, name="epsilon")
  /external/valgrind/drd/tests/
matinv.c 298 /** Compute epsilon for the numeric type elem_t. Epsilon is defined as the
303 static elem_t epsilon() function
344 eps = epsilon();
354 printf("error = %g; epsilon = %g; error / (epsilon * n) = %g\n",
omp_matinv.c 262 /** Compute epsilon for the numeric type elem_t. Epsilon is defined as the
267 static elem_t epsilon() function
324 eps = epsilon();
334 printf("error = %g; epsilon = %g; error / (epsilon * n) = %g\n",
  /external/deqp/external/openglcts/modules/gles31/
es31cTextureStorageMultisampleGLCoverageTests.cpp 100 const float epsilon = (float)1e-5; local
139 if (de::abs(float_value - float(int_value)) > epsilon)
152 const float epsilon = (float)1e-5; local
163 if (bool_value != GL_FALSE || de::abs(float_value) > epsilon || int_value != 0)
182 if (bool_value != GL_FALSE || de::abs(float_value) > epsilon || int_value != 0)
224 if (bool_value != GL_TRUE || de::abs(float_value - expected_float_value) > epsilon ||
246 if (bool_value != GL_TRUE || de::abs(float_value - expected_float_value) > epsilon ||
305 const float epsilon = (float)1e-5; local
474 if (de::abs(float(expected_int_value) - float_value) > epsilon)
509 const float epsilon = (float)1e-5 local
    [all...]
  /external/skia/tests/
FloatingPointTextureTest.cpp 28 void runFPTest(skiatest::Reporter* reporter, GrContext* context, T min, T max, T epsilon, T maxInt,
44 controlPixelData[i + 2] = epsilon;
  /external/skqp/tests/
FloatingPointTextureTest.cpp 29 T min, T max, T epsilon, T maxInt, int arraySize, GrPixelConfig config) {
44 controlPixelData[i + 2] = epsilon;
  /external/toybox/tests/
cut.test 14 alpha:beta:gamma:delta:epsilon:zeta:eta:teta:iota:kappa:lambda:mu
20 testing "with -f (a)" "cut -d ' ' -f 3 abc.txt" "one:two:three:four:five:six:seven\nalpha:beta:gamma:delta:epsilon:zeta:eta:teta:iota:kappa:lambda:mu\nbrown\n" "" ""
  /external/vulkan-validation-layers/libs/glm/gtc/
constants.inl 34 GLM_FUNC_QUALIFIER genType epsilon()
36 return std::numeric_limits<genType>::epsilon();
  /packages/inputmethods/LatinIME/java/res/xml/
rowkeys_greek1.xml 66 <!-- U+03B5: "?" GREEK SMALL LETTER EPSILON
67 U+03AD: "?" GREEK SMALL LETTER EPSILON WITH TONOS -->
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtc/
constants.inl 34 GLM_FUNC_QUALIFIER genType epsilon()
36 return std::numeric_limits<genType>::epsilon();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
limits 322 /** The @e machine @e epsilon: the difference between 1 and the least
325 epsilon() _GLIBCXX_USE_NOEXCEPT { return _Tp(); }
396 epsilon() _GLIBCXX_USE_NOEXCEPT { return false; }
466 epsilon() _GLIBCXX_USE_NOEXCEPT { return 0; }
534 epsilon() _GLIBCXX_USE_NOEXCEPT { return 0; }
605 epsilon() _GLIBCXX_USE_NOEXCEPT { return 0; }
677 epsilon() _GLIBCXX_USE_NOEXCEPT { return 0; }
741 epsilon() noexcept { return 0; }
802 epsilon() noexcept { return 0; }
868 epsilon() _GLIBCXX_USE_NOEXCEPT { return 0;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
limits 322 /** The @e machine @e epsilon: the difference between 1 and the least
325 epsilon() _GLIBCXX_USE_NOEXCEPT { return _Tp(); }
396 epsilon() _GLIBCXX_USE_NOEXCEPT { return false; }
466 epsilon() _GLIBCXX_USE_NOEXCEPT { return 0; }
534 epsilon() _GLIBCXX_USE_NOEXCEPT { return 0; }
605 epsilon() _GLIBCXX_USE_NOEXCEPT { return 0; }
677 epsilon() _GLIBCXX_USE_NOEXCEPT { return 0; }
741 epsilon() noexcept { return 0; }
802 epsilon() noexcept { return 0; }
868 epsilon() _GLIBCXX_USE_NOEXCEPT { return 0;
    [all...]
  /external/deqp/framework/delibs/decpp/
deRandom.cpp 91 const float epsilon = 0.01f; local
94 DE_TEST_ASSERT(de::abs(expected[i] - rnd.getFloat()) < epsilon);
101 const float epsilon = 0.01f;
104 DE_TEST_ASSERT(de::abs(expected[i] - rnd.getFloat(-542.2f, 1248.7f)) < epsilon);
  /external/libmojo/mojo/edk/system/
test_utils.cc 25 // Originally, our epsilon timeout was 10 ms, which was mostly fine but flaky on
  /external/opencv/cvaux/src/
cvlevmar.cpp 60 int maxIter,double epsilon)
125 if( epsilon < 0 )
127 CV_ERROR( CV_StsUnmatchedSizes, "Epsilon must be >= 0" );
226 } while ( change > epsilon && currIter < maxIter );
  /external/tensorflow/tensorflow/core/kernels/
training_ops.h 44 typename TTypes<T>::ConstScalar epsilon,
138 typename TTypes<T>::ConstScalar epsilon,
149 typename TTypes<T>::ConstScalar epsilon,
161 typename TTypes<T>::ConstScalar epsilon,

Completed in 809 milliseconds

1 2 3 4 56 7 8 91011>>