Home
last modified time | relevance | path

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

/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/tensorflow/tensorflow/python/ops/linalg/
Dlinear_operator_algebra.py60 def _registered_matmul(type_a, type_b): argument
62 return _registered_function([type_a, type_b], _MATMUL)
/external/mesa3d/src/compiler/
Dglsl_types.cpp1252 glsl_type::get_mul_type(const glsl_type *type_a, const glsl_type *type_b) in get_mul_type() argument
1254 if (type_a == type_b) { in get_mul_type()
1256 } else if (type_a->is_matrix() && type_b->is_matrix()) { in get_mul_type()
1262 if (type_a->row_type() == type_b->column_type()) { in get_mul_type()
1271 type_b->row_type()->vector_elements); in get_mul_type()
1282 if (type_a->row_type() == type_b) { in get_mul_type()
1294 assert(type_b->is_matrix()); in get_mul_type()
1301 if (type_a == type_b->column_type()) { in get_mul_type()
1306 type_b->row_type()->vector_elements, in get_mul_type()
Dglsl_types.h312 const glsl_type *type_b);
/external/ltp/testcases/kernel/device-drivers/acpi/
Dltp_acpi_cmds.c447 u8 type_a, type_b; in acpi_sleep_test() local
451 status = acpi_get_sleep_type_data(i, &type_a, &type_b); in acpi_sleep_test()
454 i, type_a, type_b); in acpi_sleep_test()
/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.h181 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/swiftshader/third_party/llvm-7.0/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