Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/ops/linalg/
Dlinear_operator_algebra.py50 def _registered_adjoint(type_a): argument
52 return _registered_function([type_a], _ADJOINTS)
55 def _registered_cholesky(type_a): argument
57 return _registered_function([type_a], _CHOLESKY_DECOMPS)
60 def _registered_matmul(type_a, type_b): argument
62 return _registered_function([type_a, type_b], _MATMUL)
65 def _registered_inverse(type_a): argument
67 return _registered_function([type_a], _INVERSES)
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dremat-fold-load.ll13 %type_a = type { %type_a*, %type_b }
32 %tmp = phi %type_a* [ undef, %while.body12.lr.ph ], [ %tmp18, %if.end24 ]
41 %tmp1 = getelementptr inbounds %type_a, %type_a* %tmp, i32 0, i32 1, i32 0, i32 1
48 %i_.i.i.i.i72 = getelementptr inbounds %type_a, %type_a* %tmp, i32 0, i32 1, i32 0, i32 1, i32 0
53 %second3.i.i76 = getelementptr inbounds %type_a, %type_a* %tmp, i32 0, i32 1, i32 1
121 %tmp18 = load %type_a*, %type_a** undef, align 4
122 %tmp19 = load %type_a*, %type_a** undef, align 4
123 %cmp.i49 = icmp eq %type_a* %tmp18, %tmp19
/external/llvm/test/CodeGen/X86/
Dremat-fold-load.ll13 %type_a = type { %type_a*, %type_b }
32 %tmp = phi %type_a* [ undef, %while.body12.lr.ph ], [ %tmp18, %if.end24 ]
41 %tmp1 = getelementptr inbounds %type_a, %type_a* %tmp, i32 0, i32 1, i32 0, i32 1
48 %i_.i.i.i.i72 = getelementptr inbounds %type_a, %type_a* %tmp, i32 0, i32 1, i32 0, i32 1, i32 0
53 %second3.i.i76 = getelementptr inbounds %type_a, %type_a* %tmp, i32 0, i32 1, i32 1
121 %tmp18 = load %type_a*, %type_a** undef, align 4
122 %tmp19 = load %type_a*, %type_a** undef, align 4
123 %cmp.i49 = icmp eq %type_a* %tmp18, %tmp19
/external/mesa3d/src/compiler/glsl/
Dast_to_hir.cpp351 const glsl_type *type_a = value_a->type; in arithmetic_result_type() local
360 if (!type_a->is_numeric() || !type_b->is_numeric()) { in arithmetic_result_type()
371 if (!apply_implicit_conversion(type_a, value_b, state) in arithmetic_result_type()
378 type_a = value_a->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()
405 return type_a; in arithmetic_result_type()
412 if (type_a->is_scalar()) { in arithmetic_result_type()
416 return type_a; in arithmetic_result_type()
423 assert(!type_a->is_scalar()); in arithmetic_result_type()
[all …]
/external/tensorflow/tensorflow/python/ops/distributions/
Dkullback_leibler.py39 def _registered_kl(type_a, type_b): argument
41 hierarchy_a = tf_inspect.getmro(type_a)
/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()
1255 return type_a; 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()
1269 get_instance(type_a->base_type, in get_mul_type()
1270 type_a->column_type()->vector_elements, in get_mul_type()
1276 } else if (type_a->is_matrix()) { in get_mul_type()
1282 if (type_a->row_type() == type_b) { in get_mul_type()
1286 get_instance(type_a->base_type, in get_mul_type()
[all …]
Dglsl_types.h311 static const glsl_type *get_mul_type(const glsl_type *type_a,
/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/bcc/tests/lua/
Dluaunit.lua82 local type_a, type_b = type(a), type(b)
83 if type_a == type_b then
84 local func = crossTypeComparison[type_a] or crossTypeComparison.other
87 type_a = crossTypeOrdering[type_a] or crossTypeOrdering.other
89 return type_a < type_b
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_screen.h169 unsigned type_a:3; member
Dnv50_tex.c108 (fmt->tic.type_a << G80_TIC_0_A_DATA_TYPE__SHIFT) | in nv50_create_texture_view()
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_screen.h182 unsigned type_a:3; member
Dnvc0_tex.c112 tic[0] |= fmt->tic.type_a << GM107_TIC2_0_A_DATA_TYPE__SHIFT; in gm107_create_texture_view()
327 (fmt->tic.type_a << G80_TIC_0_A_DATA_TYPE__SHIFT) | in gf100_create_texture_view()