Home
last modified time | relevance | path

Searched refs:tf_d (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/ctypes/test/
Dtest_cfuncs.py151 self._dll.tf_d.restype = c_double
152 self._dll.tf_d.argtypes = (c_double,)
153 self.assertEqual(self._dll.tf_d(42.), 14.)
/external/python/cpython2/Lib/ctypes/test/
Dtest_cfuncs.py151 self._dll.tf_d.restype = c_double
152 self._dll.tf_d.argtypes = (c_double,)
153 self.assertEqual(self._dll.tf_d(42.), 14.)
/external/tensorflow/tensorflow/python/eager/
Dtape_test.py81 tf_d, tf_f = array_ops.split(tf_c, 2, axis=1)
82 tf_e = tf_d + tf_f
Dcore_test.py282 tf_d = constant_op.constant([[1, 2], [1, 2]])
294 self.assertNotEqual(tf_a, tf_d)
305 bool(tf_a == tf_d)
306 self.assertAllEqual(tf_a == tf_d, [[True, False], [True, False]])
/external/python/cpython2/Modules/_ctypes/
D_ctypes_test.c486 EXPORT(double) tf_d(double c) { S; return c/3; } in tf_d() function
/external/python/cpython3/Modules/_ctypes/
D_ctypes_test.c646 EXPORT(double) tf_d(double c) { S; return c/3; } in tf_d() function