/external/mesa3d/src/compiler/nir/ |
D | nir_gather_ssa_types.c | 28 set_type(unsigned idx, nir_alu_type type, BITSET_WORD *float_types, in set_type() argument 42 if (float_types && !BITSET_TEST(float_types, idx)) { in set_type() 44 BITSET_SET(float_types, idx); in set_type() 72 copy_types(nir_src src, nir_dest *dest, BITSET_WORD *float_types, in copy_types() argument 77 copy_type(src.ssa->index, dest->ssa.index, src_is_sink, float_types, progress); in copy_types() 96 BITSET_WORD *float_types, in nir_gather_ssa_types() argument 119 float_types, int_types, &progress); in nir_gather_ssa_types() 126 float_types, int_types, &progress); in nir_gather_ssa_types() 128 float_types, int_types, &progress); in nir_gather_ssa_types() 130 float_types, int_types, &progress); in nir_gather_ssa_types() [all …]
|
D | nir_lower_int_to_float.c | 122 BITSET_WORD *float_types = NULL, *int_types = NULL; in nir_lower_int_to_float_impl() local 128 float_types = calloc(BITSET_WORDS(impl->ssa_alloc), in nir_lower_int_to_float_impl() 132 nir_gather_ssa_types(impl, float_types, int_types); in nir_lower_int_to_float_impl() 168 free(float_types); in nir_lower_int_to_float_impl()
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | cholesky_op_test.py | 39 def float_types(self): member in CholeskyOpTest 40 return set(super(CholeskyOpTest, self).float_types).intersection( 68 for dtype in self.float_types: 72 for dtype in self.float_types: 89 for dtype in self.float_types: 100 for dtype in self.float_types: 111 for dtype in self.float_types: 120 for dtype in self.float_types: 135 for dtype in self.float_types:
|
D | matrix_triangular_solve_op_test.py | 44 def float_types(self): member in MatrixTriangularSolveOpTest 46 self).float_types).intersection( 83 for dtype in self.float_types: 90 for dtype in self.float_types: 110 tuples = itertools.product(self.float_types, shapes) 122 tuples = itertools.product(self.float_types, shapes) 141 for dtype in self.float_types: 152 for dtype in self.float_types: 164 for dtype in self.float_types:
|
D | einsum_op_test.py | 56 for dtype in self.float_types: 64 for dtype in self.float_types: 72 for dtype in self.float_types: 80 for dtype in self.float_types:
|
D | ftrl_test.py | 113 for dtype in self.float_types: 147 for dtype in self.float_types: 180 for dtype in self.float_types: 214 for dtype in self.float_types: 252 for dtype in self.float_types: 286 for dtype in self.float_types: 333 for dtype in self.float_types: 344 for dtype in self.float_types:
|
D | adagrad_da_test.py | 35 for dtype in self.float_types: 71 for dtype in self.float_types: 102 for dtype in self.float_types: 133 for dtype in self.float_types:
|
D | adagrad_test.py | 34 for dtype in self.float_types | self.complex_types: 61 for dtype in self.float_types: 89 for dtype in self.float_types:
|
D | searchsorted_op_test.py | 59 for dtype in self.float_types | self.int_types: 67 for dtype in self.float_types | self.int_types:
|
D | momentum_test.py | 43 for dtype in self.float_types: 103 for dtype in self.float_types: 128 for dtype in self.float_types:
|
D | adam_test.py | 55 for dtype in self.float_types | self.complex_types: 98 for dtype in self.float_types | self.complex_types: 141 for dtype in self.float_types | self.complex_types:
|
D | random_ops_test.py | 72 for dtype in self._random_types() & self.float_types: 76 for dtype in self._random_types() & self.float_types: 88 for dtype in self._random_types() & self.float_types:
|
D | categorical_op_test.py | 109 for dtype in self.float_types: 143 for dtype in self.float_types.intersection(
|
D | matrix_band_part_test.py | 175 for dtype in self.float_types:
|
D | spacetobatch_op_test.py | 76 for dtype in self.float_types: 159 for dtype in self.float_types:
|
D | binary_ops_test.py | 77 for dtype in self.float_types: 366 for dtype in self.float_types: 720 for dtype in self.float_types | self.complex_types: 743 for dtype in self.float_types: 1023 self._testMatMul(math_ops.matmul, self.float_types | {np.float64}) 1025 for dtype in self.float_types | {np.float64}: 1054 self._testMatMul(math_ops.sparse_matmul, self.float_types) 1055 self._testMatMul(SparseMatmulWrapperTF, self.float_types) 1056 self._testMatMul(SparseMatmulWrapperFT, self.float_types) 1057 self._testMatMul(SparseMatmulWrapperTT, self.float_types) [all …]
|
D | manip_ops_test.py | 52 for t in self.float_types:
|
D | depthwise_conv_op_test.py | 228 for data_type in self.float_types: 239 for data_type in self.float_types: 433 for data_type in self.float_types: 445 for data_type in self.float_types:
|
D | unary_ops_test.py | 151 for dtype in self.float_types - {dtypes.bfloat16.as_numpy_dtype}: 166 for dtype in self.float_types - {dtypes.bfloat16.as_numpy_dtype}: 183 for dtype in self.float_types - {dtypes.bfloat16.as_numpy_dtype}: 200 for dtype in self.float_types: 534 for dtype in self.float_types: 542 for dtype in self.float_types: 856 for dtype in self.float_types: 1185 for dtype in self.float_types & {dtypes.float32, dtypes.float64}:
|
D | argminmax_test.py | 54 for dtype in self.int_types | self.float_types:
|
D | matrix_solve_op_test.py | 33 for np_type in self.float_types & {np.float32, np.float64}:
|
D | matrix_inverse_op_test.py | 52 for np_type in self.float_types & {np.float64, np.float32}:
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_numbers.py | 29 float_types = [c_double, c_float] variable 57 for t in signed_types + unsigned_types + float_types: 81 for t in signed_types + unsigned_types + float_types: 96 for t in signed_types + unsigned_types + float_types: 101 for t in signed_types + unsigned_types + float_types + bool_types: 113 for t in float_types: 136 for t in signed_types + unsigned_types + float_types + bool_types: 147 for t in signed_types + unsigned_types + float_types: 181 for t in float_types: 224 for t in float_types + [c_longdouble]:
|
/external/python/cpython3/Lib/ctypes/test/ |
D | test_numbers.py | 29 float_types = [c_double, c_float] variable 57 for t in signed_types + unsigned_types + float_types: 81 for t in signed_types + unsigned_types + float_types: 96 for t in signed_types + unsigned_types + float_types: 101 for t in signed_types + unsigned_types + float_types + bool_types: 113 for t in float_types: 142 for t in signed_types + unsigned_types + float_types + bool_types: 153 for t in signed_types + unsigned_types + float_types: 187 for t in float_types: 231 for t in float_types + [c_longdouble]:
|
/external/llvm-project/libclc/generic/lib/ |
D | gen_convert.py | 32 float_types = ['float', 'double'] variable 256 elif src in float_types: 381 for src in float_types: 390 for dst in float_types:
|