Home
last modified time | relevance | path

Searched refs:type_b (Results 1 – 25 of 25) sorted by relevance

/external/tensorflow/tensorflow/python/ops/linalg/
Dlinear_operator_algebra.py61 def _registered_matmul(type_a, type_b): argument
63 return _registered_function([type_a, type_b], _MATMUL)
66 def _registered_solve(type_a, type_b): argument
68 return _registered_function([type_a, type_b], _SOLVE)
/external/deqp-deps/SPIRV-Tools/source/fuzz/fact_manager/
Ddata_synonym_and_id_equation_facts.cpp825 const auto* type_b = ir_context_->get_type_mgr()->GetType(end_type_id_2); in DataDescriptorsAreWellFormedAndComparable() local
826 assert(type_a && type_b && "Data descriptors have invalid type(s)"); in DataDescriptorsAreWellFormedAndComparable()
832 if (type_a->AsVector() && type_b->AsVector()) { in DataDescriptorsAreWellFormedAndComparable()
834 const auto* vector_b = type_b->AsVector(); in DataDescriptorsAreWellFormedAndComparable()
846 type_b = vector_b->element_type(); in DataDescriptorsAreWellFormedAndComparable()
864 (type_b->AsInteger() || type_b->AsFloat()) && in DataDescriptorsAreWellFormedAndComparable()
866 get_bit_count_for_numeric_type(*type_b)); in DataDescriptorsAreWellFormedAndComparable()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/fact_manager/
Ddata_synonym_and_id_equation_facts.cpp825 const auto* type_b = ir_context_->get_type_mgr()->GetType(end_type_id_2); in DataDescriptorsAreWellFormedAndComparable() local
826 assert(type_a && type_b && "Data descriptors have invalid type(s)"); in DataDescriptorsAreWellFormedAndComparable()
832 if (type_a->AsVector() && type_b->AsVector()) { in DataDescriptorsAreWellFormedAndComparable()
834 const auto* vector_b = type_b->AsVector(); in DataDescriptorsAreWellFormedAndComparable()
846 type_b = vector_b->element_type(); in DataDescriptorsAreWellFormedAndComparable()
864 (type_b->AsInteger() || type_b->AsFloat()) && in DataDescriptorsAreWellFormedAndComparable()
866 get_bit_count_for_numeric_type(*type_b)); in DataDescriptorsAreWellFormedAndComparable()
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/fact_manager/
Ddata_synonym_and_id_equation_facts.cpp825 const auto* type_b = ir_context_->get_type_mgr()->GetType(end_type_id_2); in DataDescriptorsAreWellFormedAndComparable() local
826 assert(type_a && type_b && "Data descriptors have invalid type(s)"); in DataDescriptorsAreWellFormedAndComparable()
832 if (type_a->AsVector() && type_b->AsVector()) { in DataDescriptorsAreWellFormedAndComparable()
834 const auto* vector_b = type_b->AsVector(); in DataDescriptorsAreWellFormedAndComparable()
846 type_b = vector_b->element_type(); in DataDescriptorsAreWellFormedAndComparable()
864 (type_b->AsInteger() || type_b->AsFloat()) && in DataDescriptorsAreWellFormedAndComparable()
866 get_bit_count_for_numeric_type(*type_b)); in DataDescriptorsAreWellFormedAndComparable()
/external/icing/icing/schema/
Dschema-util_test.cc84 SchemaTypeConfigProto type_b = in TEST() local
137 .AddType(type_b) in TEST()
170 SchemaTypeConfigProto type_b = in TEST() local
227 .AddType(type_b) in TEST()
257 SchemaTypeConfigProto type_b = in TEST() local
313 .AddType(type_b) in TEST()
339 SchemaTypeConfigProto type_b = in TEST() local
349 SchemaProto schema = SchemaBuilder().AddType(type_a).AddType(type_b).Build(); in TEST()
367 SchemaTypeConfigProto type_b = in TEST() local
387 SchemaBuilder().AddType(type_a).AddType(type_b).AddType(type_c).Build(); in TEST()
[all …]
/external/autotest/client/site_tests/audio_CrasDevSwitchStress/
Daudio_CrasDevSwitchStress.py189 def run_once(self, type_a=None, type_b=None, pinned_type=None): argument
222 elif type_b and node['Type'] == type_b:
Dcontrol23 type_b='INTERNAL_SPEAKER',
Dcontrol.input28 type_b=internal_mic_node,
/external/tensorflow/tensorflow/python/ops/distributions/
Dkullback_leibler.py39 def _registered_kl(type_a, type_b): argument
42 hierarchy_b = tf_inspect.getmro(type_b)
/external/mesa3d/src/compiler/glsl/
Dast_to_hir.cpp352 const glsl_type *type_b = value_b->type; in arithmetic_result_type() local
360 if (!type_a->is_numeric() || !type_b->is_numeric()) { in arithmetic_result_type()
372 && !apply_implicit_conversion(type_b, value_a, state)) { in arithmetic_result_type()
379 type_b = value_b->type; in arithmetic_result_type()
390 if (type_a->base_type != type_b->base_type) { in arithmetic_result_type()
404 if (type_a->is_scalar() && type_b->is_scalar()) in arithmetic_result_type()
413 if (!type_b->is_scalar()) in arithmetic_result_type()
414 return type_b; in arithmetic_result_type()
415 } else if (type_b->is_scalar()) { in arithmetic_result_type()
424 assert(!type_b->is_scalar()); in arithmetic_result_type()
[all …]
/external/ltp/testcases/kernel/device-drivers/acpi/
Dltp_acpi_cmds.c453 u8 type_a, type_b; in acpi_sleep_test() local
457 status = acpi_get_sleep_type_data(i, &type_a, &type_b); in acpi_sleep_test()
460 i, type_a, type_b); in acpi_sleep_test()
/external/tensorflow/tensorflow/python/ops/numpy_ops/
Dnp_math_ops_test.py69 for type_b in self.types:
70 if not check_promotion and type_a != type_b:
73 arg2 = np_array_ops.array(b, dtype=type_b)
/external/llvm-project/clang/test/CodeGen/
Dbuiltins-nvptx-mma.py37 for type_b, type_d in product(types_b if types_b else [type_a],
40 MMAFrag(geom, "b", type_b),
/external/llvm-project/llvm/test/CodeGen/NVPTX/
Dwmma.py144 for type_b, type_d in product(types_b if types_b else [type_a],
147 MMAFrag(geom, "b", type_b),
/external/mesa3d/src/compiler/
Dglsl_types.cpp1490 glsl_type::get_mul_type(const glsl_type *type_a, const glsl_type *type_b) in get_mul_type() argument
1492 if (type_a->is_matrix() && type_b->is_matrix()) { in get_mul_type()
1498 if (type_a->row_type() == type_b->column_type()) { in get_mul_type()
1507 type_b->row_type()->vector_elements); in get_mul_type()
1512 } else if (type_a == type_b) { in get_mul_type()
1520 if (type_a->row_type() == type_b) { in get_mul_type()
1532 assert(type_b->is_matrix()); in get_mul_type()
1539 if (type_a == type_b->column_type()) { in get_mul_type()
1544 type_b->row_type()->vector_elements, in get_mul_type()
Dglsl_types.h506 const glsl_type *type_b);
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_screen.h168 unsigned type_b:3; member
Dnv50_tex.c107 (fmt->tic.type_b << G80_TIC_0_B_DATA_TYPE__SHIFT) | in nv50_create_texture_view()
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_screen.h192 unsigned type_b:3; member
Dnvc0_tex.c111 tic[0] |= fmt->tic.type_b << GM107_TIC2_0_B_DATA_TYPE__SHIFT; in gm107_create_texture_view()
326 (fmt->tic.type_b << G80_TIC_0_B_DATA_TYPE__SHIFT) | in gf100_create_texture_view()
/external/llvm-project/llvm/test/CodeGen/X86/
Dremat-fold-load.ll13 %type_a = type { %type_a*, %type_b }
14 %type_b = type { %type_c, i32 }
/external/llvm/test/CodeGen/X86/
Dremat-fold-load.ll13 %type_a = type { %type_a*, %type_b }
14 %type_b = type { %type_c, i32 }
/external/bcc/tests/lua/
Dluaunit.lua82 local type_a, type_b = type(a), type(b)
83 if type_a == type_b then
88 type_b = crossTypeOrdering[type_b] or crossTypeOrdering.other
89 return type_a < type_b
/external/llvm-project/llvm/include/llvm/IR/
DIntrinsicsNVVM.td166 !foldl([]<list<WMMA_REGS>>, !if(!size(TypeB), TypeB, [type_a]), t3, type_b, !listconcat(t3,
170 WMMA_REGS<geom, "b", type_b>,
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIntrinsicsNVVM.td171 !foldl([]<list<WMMA_REGS>>, !if(!size(TypeB), TypeB, [type_a]), t3, type_b, !listconcat(t3,
175 WMMA_REGS<geom, "b", type_b>,