HomeSort by relevance Sort by last modified time
    Searched refs:atol (Results 226 - 250 of 389) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/apps/CameraITS/pymodules/its/
cv2image.py 330 numpy.sqrt(2), atol=0.1))
332 numpy.sqrt(2), atol=0.1))
  /external/scapy/scapy/layers/
dhcp.py 322 self.network = ltoa(atol(netw)&msk)
323 self.broadcast = ltoa( atol(self.network) | (0xffffffff&~msk) )
  /external/tensorflow/tensorflow/compiler/tests/
depthwise_conv_op_test.py 342 self.assertAllClose(cpu_value, gpu_value, rtol=1e-4, atol=1e-4)
376 self.assertAllClose(cpu_value, gpu_value, rtol=1e-4, atol=1e-4)
pooling_ops_test.py 108 self.assertAllClose(expected, actual.flatten(), rtol=1e-5, atol=1e-6)
380 atol=1e-6)
randomized_tests.cc 327 // atol + rtol * abs(x); or both elements may be NaN or infinity. For
330 double atol = 1e-2,
645 bool IsClose(const T& x, const T& y, double atol, double rtol) {
648 return Abs(x - y) < atol + rtol * Abs(x);
652 bool IsClose<complex64>(const complex64& x, const complex64& y, double atol,
659 return Abs(x.imag() - y.imag()) < atol + rtol * Abs(x.imag());
662 return Abs(x.real() - y.real()) < atol + rtol * Abs(x.real());
665 return Abs(x - y) < atol + rtol * Abs(x);
678 Status TensorsAreCloseImpl(const Tensor& x, const Tensor& y, double atol,
683 if (!IsClose(Tx(i), Ty(i), atol, rtol))
    [all...]
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
negative_binomial_test.py 237 atol=0.,
241 atol=0.,
poisson_test.py 212 atol=0)
228 sample_values.var(axis=0), stats.poisson.var(lam_v), rtol=.03, atol=0)
  /external/tensorflow/tensorflow/contrib/losses/python/losses/
loss_ops_test.py     [all...]
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
math_utils_test.py 73 atol=1e-5)
87 atol=1e-5)
  /external/tensorflow/tensorflow/python/kernel_tests/
batchtospace_op_test.py 250 self.assertAllClose(x_jacob_t, x_jacob_n, rtol=1e-2, atol=epsilon)
308 self.assertAllClose(x_jacob_t, x_jacob_n, rtol=1e-2, atol=epsilon)
scan_ops_test.py 153 self.assertAllClose(jacob_t, jacob_n, rtol=1e-8, atol=1e-8)
259 self.assertAllClose(jacob_t, jacob_n, rtol=1e-8, atol=1e-8)
tensordot_op_test.py 182 self.assertAllClose(tf_ans, np_ans, rtol=tol, atol=tol)
212 self.assertAllClose(tf_ans, np_ans, rtol=tol, atol=tol)
  /external/tensorflow/tensorflow/python/kernel_tests/random/
random_gamma_test.py 200 self.assertAllClose(results[False], results[True], rtol=1e-3, atol=1e-3)
202 self.assertAllClose(results[False], results[True], rtol=1e-6, atol=1e-6)
  /hardware/qcom/display/msm8994/libqdutils/
mdp_version.cpp 325 mLowBw = atol(tokens[1]);
328 mHighBw = atol(tokens[1]);
  /bionic/benchmarks/
stdlib_benchmark.cpp 131 benchmark::DoNotOptimize(atol(" -123"));
  /bionic/libc/include/
stdlib.h 90 long atol(const char* __s) __attribute_pure__;
  /cts/apps/CameraITS/tests/scene3/
test_lens_movement_reporting.py 138 assert np.isclose(np.amax(diffs)-np.amax(diffs), 0, atol=FRAME_TIME_TOL)
test_lens_position.py 179 assert np.isclose(np.amin(diffs), np.amax(diffs), atol=FRAME_TIME_TOL)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
server.py 134 response = string.atol(string.strip(response))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stringold.py 237 def atol(*args): function
238 """atol(s [,base]) -> long
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
NumericInt.c 4 The atoi, atol, and atoll functions convert the initial portion of the string
8 - atol: strtol(nptr, (char **)NULL, 10)
60 /** The atol function converts the initial portion of the string pointed to by
65 @return The atol function returns the converted value.
68 atol(const char *nptr) function
  /external/clang/utils/VtableTest/
gen.cc 329 seed = atol(argv[1]);
  /external/elfutils/libelf/
elf_getarsym.c 184 size_t index_size = atol (tmpbuf);
  /external/f2fs-tools/lib/
libf2fs_zoned.c 87 sectors = atol(str);
  /external/libcxx/test/std/language.support/support.runtime/
cstdlib.pass.cpp 62 static_assert((std::is_same<decltype(std::atol("")), long>::value), "");

Completed in 561 milliseconds

1 2 3 4 5 6 7 8 91011>>