Searched refs:tf_d (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/ctypes/test/ |
D | test_cfuncs.py | 151 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/ |
D | test_cfuncs.py | 151 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/ |
D | tape_test.py | 81 tf_d, tf_f = array_ops.split(tf_c, 2, axis=1) 82 tf_e = tf_d + tf_f
|
D | core_test.py | 282 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.c | 486 EXPORT(double) tf_d(double c) { S; return c/3; } in tf_d() function
|
/external/python/cpython3/Modules/_ctypes/ |
D | _ctypes_test.c | 646 EXPORT(double) tf_d(double c) { S; return c/3; } in tf_d() function
|