Home
last modified time | relevance | path

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

/external/OpenCL-CTS/test_conformance/subgroups/
Dtest_subgroup_extended_types.cpp24 template <typename T> int run_broadcast_for_extended_type(RunTestForType rft) in run_broadcast_for_extended_type() argument
26 int error = rft.run_impl<T, BC<T, SubgroupsBroadcastOp::broadcast>>( in run_broadcast_for_extended_type()
31 template <typename T> int run_scan_reduction_for_type(RunTestForType rft) in run_scan_reduction_for_type() argument
33 int error = rft.run_impl<T, RED_NU<T, ArithmeticOp::add_>>("test_redadd", in run_scan_reduction_for_type()
35 error |= rft.run_impl<T, RED_NU<T, ArithmeticOp::max_>>("test_redmax", in run_scan_reduction_for_type()
37 error |= rft.run_impl<T, RED_NU<T, ArithmeticOp::min_>>("test_redmin", in run_scan_reduction_for_type()
39 error |= rft.run_impl<T, SCIN_NU<T, ArithmeticOp::add_>>("test_scinadd", in run_scan_reduction_for_type()
41 error |= rft.run_impl<T, SCIN_NU<T, ArithmeticOp::max_>>("test_scinmax", in run_scan_reduction_for_type()
43 error |= rft.run_impl<T, SCIN_NU<T, ArithmeticOp::min_>>("test_scinmin", in run_scan_reduction_for_type()
45 error |= rft.run_impl<T, SCEX_NU<T, ArithmeticOp::add_>>("test_scexadd", in run_scan_reduction_for_type()
[all …]
Dtest_subgroup_non_uniform_arithmetic.cpp354 int run_functions_add_mul_max_min_for_type(RunTestForType rft) in run_functions_add_mul_max_min_for_type() argument
356 int error = rft.run_impl<T, SCIN_NU<T, ArithmeticOp::add_>>( in run_functions_add_mul_max_min_for_type()
358 error |= rft.run_impl<T, SCIN_NU<T, ArithmeticOp::mul_>>( in run_functions_add_mul_max_min_for_type()
360 error |= rft.run_impl<T, SCIN_NU<T, ArithmeticOp::max_>>( in run_functions_add_mul_max_min_for_type()
362 error |= rft.run_impl<T, SCIN_NU<T, ArithmeticOp::min_>>( in run_functions_add_mul_max_min_for_type()
364 error |= rft.run_impl<T, SCEX_NU<T, ArithmeticOp::add_>>( in run_functions_add_mul_max_min_for_type()
366 error |= rft.run_impl<T, SCEX_NU<T, ArithmeticOp::mul_>>( in run_functions_add_mul_max_min_for_type()
368 error |= rft.run_impl<T, SCEX_NU<T, ArithmeticOp::max_>>( in run_functions_add_mul_max_min_for_type()
370 error |= rft.run_impl<T, SCEX_NU<T, ArithmeticOp::min_>>( in run_functions_add_mul_max_min_for_type()
372 error |= rft.run_impl<T, RED_NU<T, ArithmeticOp::add_>>( in run_functions_add_mul_max_min_for_type()
[all …]
Dtest_subgroup_clustered_reduce.cpp267 int run_cluster_red_add_max_min_mul_for_type(RunTestForType rft) in run_cluster_red_add_max_min_mul_for_type() argument
269 int error = rft.run_impl<T, RED_CLU<T, ArithmeticOp::add_>>( in run_cluster_red_add_max_min_mul_for_type()
271 error |= rft.run_impl<T, RED_CLU<T, ArithmeticOp::max_>>( in run_cluster_red_add_max_min_mul_for_type()
273 error |= rft.run_impl<T, RED_CLU<T, ArithmeticOp::min_>>( in run_cluster_red_add_max_min_mul_for_type()
275 error |= rft.run_impl<T, RED_CLU<T, ArithmeticOp::mul_>>( in run_cluster_red_add_max_min_mul_for_type()
279 template <typename T> int run_cluster_and_or_xor_for_type(RunTestForType rft) in run_cluster_and_or_xor_for_type() argument
281 int error = rft.run_impl<T, RED_CLU<T, ArithmeticOp::and_>>( in run_cluster_and_or_xor_for_type()
283 error |= rft.run_impl<T, RED_CLU<T, ArithmeticOp::or_>>( in run_cluster_and_or_xor_for_type()
285 error |= rft.run_impl<T, RED_CLU<T, ArithmeticOp::xor_>>( in run_cluster_and_or_xor_for_type()
290 int run_cluster_logical_and_or_xor_for_type(RunTestForType rft) in run_cluster_logical_and_or_xor_for_type() argument
[all …]
Dtest_subgroup_ballot.cpp915 template <typename T> int run_non_uniform_broadcast_for_type(RunTestForType rft) in run_non_uniform_broadcast_for_type() argument
918 rft.run_impl<T, BC<T, SubgroupsBroadcastOp::non_uniform_broadcast>>( in run_non_uniform_broadcast_for_type()
934 RunTestForType rft(device, context, queue, num_elements, test_params); in test_subgroup_functions_ballot() local
937 int error = run_non_uniform_broadcast_for_type<cl_int>(rft); in test_subgroup_functions_ballot()
938 error |= run_non_uniform_broadcast_for_type<cl_int2>(rft); in test_subgroup_functions_ballot()
939 error |= run_non_uniform_broadcast_for_type<subgroups::cl_int3>(rft); in test_subgroup_functions_ballot()
940 error |= run_non_uniform_broadcast_for_type<cl_int4>(rft); in test_subgroup_functions_ballot()
941 error |= run_non_uniform_broadcast_for_type<cl_int8>(rft); in test_subgroup_functions_ballot()
942 error |= run_non_uniform_broadcast_for_type<cl_int16>(rft); in test_subgroup_functions_ballot()
944 error |= run_non_uniform_broadcast_for_type<cl_uint>(rft); in test_subgroup_functions_ballot()
[all …]
Dtest_subgroup_shuffle.cpp44 template <typename T> int run_shuffle_for_type(RunTestForType rft) in run_shuffle_for_type() argument
46 int error = rft.run_impl<T, SHF<T, ShuffleOp::shuffle>>( in run_shuffle_for_type()
48 error |= rft.run_impl<T, SHF<T, ShuffleOp::shuffle_xor>>( in run_shuffle_for_type()
63 RunTestForType rft(device, context, queue, num_elements, test_params); in test_subgroup_functions_shuffle() local
65 int error = run_shuffle_for_type<cl_int>(rft); in test_subgroup_functions_shuffle()
66 error |= run_shuffle_for_type<cl_uint>(rft); in test_subgroup_functions_shuffle()
67 error |= run_shuffle_for_type<cl_long>(rft); in test_subgroup_functions_shuffle()
68 error |= run_shuffle_for_type<cl_ulong>(rft); in test_subgroup_functions_shuffle()
69 error |= run_shuffle_for_type<cl_short>(rft); in test_subgroup_functions_shuffle()
70 error |= run_shuffle_for_type<cl_ushort>(rft); in test_subgroup_functions_shuffle()
[all …]
Dtest_subgroup_shuffle_relative.cpp43 template <typename T> int run_shuffle_relative_for_type(RunTestForType rft) in run_shuffle_relative_for_type() argument
45 int error = rft.run_impl<T, SHF<T, ShuffleOp::shuffle_up>>( in run_shuffle_relative_for_type()
47 error |= rft.run_impl<T, SHF<T, ShuffleOp::shuffle_down>>( in run_shuffle_relative_for_type()
66 RunTestForType rft(device, context, queue, num_elements, test_params); in test_subgroup_functions_shuffle_relative() local
68 int error = run_shuffle_relative_for_type<cl_int>(rft); in test_subgroup_functions_shuffle_relative()
69 error |= run_shuffle_relative_for_type<cl_uint>(rft); in test_subgroup_functions_shuffle_relative()
70 error |= run_shuffle_relative_for_type<cl_long>(rft); in test_subgroup_functions_shuffle_relative()
71 error |= run_shuffle_relative_for_type<cl_ulong>(rft); in test_subgroup_functions_shuffle_relative()
72 error |= run_shuffle_relative_for_type<cl_short>(rft); in test_subgroup_functions_shuffle_relative()
73 error |= run_shuffle_relative_for_type<cl_ushort>(rft); in test_subgroup_functions_shuffle_relative()
[all …]
Dtest_subgroup.cpp150 int run_broadcast_scan_reduction_for_type(RunTestForType rft) in run_broadcast_scan_reduction_for_type() argument
152 int error = rft.run_impl<T, BC<T, SubgroupsBroadcastOp::broadcast>>( in run_broadcast_scan_reduction_for_type()
154 error |= rft.run_impl<T, RED_NU<T, ArithmeticOp::add_>>("test_redadd", in run_broadcast_scan_reduction_for_type()
156 error |= rft.run_impl<T, RED_NU<T, ArithmeticOp::max_>>("test_redmax", in run_broadcast_scan_reduction_for_type()
158 error |= rft.run_impl<T, RED_NU<T, ArithmeticOp::min_>>("test_redmin", in run_broadcast_scan_reduction_for_type()
160 error |= rft.run_impl<T, SCIN_NU<T, ArithmeticOp::add_>>("test_scinadd", in run_broadcast_scan_reduction_for_type()
162 error |= rft.run_impl<T, SCIN_NU<T, ArithmeticOp::max_>>("test_scinmax", in run_broadcast_scan_reduction_for_type()
164 error |= rft.run_impl<T, SCIN_NU<T, ArithmeticOp::min_>>("test_scinmin", in run_broadcast_scan_reduction_for_type()
166 error |= rft.run_impl<T, SCEX_NU<T, ArithmeticOp::add_>>("test_scexadd", in run_broadcast_scan_reduction_for_type()
168 error |= rft.run_impl<T, SCEX_NU<T, ArithmeticOp::max_>>("test_scexmax", in run_broadcast_scan_reduction_for_type()
[all …]
Dtest_subgroup_non_uniform_vote.cpp262 template <typename T> int run_vote_all_equal_for_type(RunTestForType rft) in run_vote_all_equal_for_type() argument
264 int error = rft.run_impl<T, VOTE<T, NonUniformVoteOp::all_equal>>( in run_vote_all_equal_for_type()
286 RunTestForType rft(device, context, queue, num_elements, test_params); in test_subgroup_functions_non_uniform_vote() local
288 int error = run_vote_all_equal_for_type<cl_int>(rft); in test_subgroup_functions_non_uniform_vote()
289 error |= run_vote_all_equal_for_type<cl_uint>(rft); in test_subgroup_functions_non_uniform_vote()
290 error |= run_vote_all_equal_for_type<cl_long>(rft); in test_subgroup_functions_non_uniform_vote()
291 error |= run_vote_all_equal_for_type<cl_ulong>(rft); in test_subgroup_functions_non_uniform_vote()
292 error |= run_vote_all_equal_for_type<cl_float>(rft); in test_subgroup_functions_non_uniform_vote()
293 error |= run_vote_all_equal_for_type<cl_double>(rft); in test_subgroup_functions_non_uniform_vote()
294 error |= run_vote_all_equal_for_type<subgroups::cl_half>(rft); in test_subgroup_functions_non_uniform_vote()
[all …]
/external/mime-support/
Dmime.types42 application/dca-rft
/external/python/cpython3/Lib/test/
Dmime.types44 application/dca-rft
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Den-IPA.txt10750 $x{underfed → əndəfɛd ; # əndərft
15911 $x{overfed → ovərfɛd ; # ovərft
Dinternal_raw_IPA-old.txt59415 dwarfed %21525 dwɔrft
138108 nothdurft nˈɑθdərft
165487 rft %7157
190243 surfed %13450 sərft
Dinternal_raw_IPA.txt50175 dwarfed %29997 dwɔrft
116044 nothdurft nˈɑθdərft
159234 surfed %25612 sərft