/aosp_15_r20/external/XNNPACK/models/ |
H A D | models.h | 16 typedef ExecutionPlan (*ExecutionPlanFactory)(pthreadpool_t threadpool); 18 ExecutionPlan FP32MobileNetV1(pthreadpool_t threadpool); 19 ExecutionPlan FP32MobileNetV2(pthreadpool_t threadpool); 20 ExecutionPlan FP32MobileNetV3Large(pthreadpool_t threadpool); 21 ExecutionPlan FP32MobileNetV3Small(pthreadpool_t threadpool); 23 ExecutionPlan FP32SparseMobileNetV1(float sparsity, pthreadpool_t threadpool); 24 ExecutionPlan FP32SparseMobileNetV2(float sparsity, pthreadpool_t threadpool); 25 ExecutionPlan FP32SparseMobileNetV3Large(float sparsity, pthreadpool_t threadpool); 26 ExecutionPlan FP32SparseMobileNetV3Small(float sparsity, pthreadpool_t threadpool); 28 ExecutionPlan FP16MobileNetV1(pthreadpool_t threadpool); [all …]
|
/aosp_15_r20/external/pthreadpool/include/ |
H A D | pthreadpool.h | 7 typedef struct pthreadpool* pthreadpool_t; typedef 77 pthreadpool_t pthreadpool_create(size_t threads_count); 86 size_t pthreadpool_get_threads_count(pthreadpool_t threadpool); 112 pthreadpool_t threadpool, 156 pthreadpool_t threadpool, 189 pthreadpool_t threadpool, 223 pthreadpool_t threadpool, 260 pthreadpool_t threadpool, 301 pthreadpool_t threadpool, 359 pthreadpool_t threadpool, [all …]
|
/aosp_15_r20/external/XNNPACK/include/ |
H A D | xnnpack.h | 1452 pthreadpool_t threadpool, 1459 pthreadpool_t threadpool, 1465 pthreadpool_t threadpool, 1506 pthreadpool_t threadpool); 1525 pthreadpool_t threadpool); 1542 pthreadpool_t threadpool); 1565 pthreadpool_t threadpool); 1591 pthreadpool_t threadpool); 1605 pthreadpool_t threadpool); 1619 pthreadpool_t threadpool); [all …]
|
/aosp_15_r20/external/pthreadpool/bench/ |
H A D | throughput.cc | 10 pthreadpool_t threadpool = pthreadpool_create(2); in pthreadpool_parallelize_1d() 33 pthreadpool_t threadpool = pthreadpool_create(2); in pthreadpool_parallelize_1d_tile_1d() 56 pthreadpool_t threadpool = pthreadpool_create(2); in pthreadpool_parallelize_2d() 79 pthreadpool_t threadpool = pthreadpool_create(2); in pthreadpool_parallelize_2d_tile_1d() 103 pthreadpool_t threadpool = pthreadpool_create(2); in pthreadpool_parallelize_2d_tile_2d() 127 pthreadpool_t threadpool = pthreadpool_create(2); in pthreadpool_parallelize_3d() 150 pthreadpool_t threadpool = pthreadpool_create(2); in pthreadpool_parallelize_3d_tile_1d() 174 pthreadpool_t threadpool = pthreadpool_create(2); in pthreadpool_parallelize_3d_tile_2d() 198 pthreadpool_t threadpool = pthreadpool_create(2); in pthreadpool_parallelize_4d() 221 pthreadpool_t threadpool = pthreadpool_create(2); in pthreadpool_parallelize_4d_tile_1d() [all …]
|
H A D | latency.cc | 20 pthreadpool_t threadpool = pthreadpool_create(threads); in pthreadpool_parallelize_1d() 39 pthreadpool_t threadpool = pthreadpool_create(threads); in pthreadpool_parallelize_1d_tile_1d() 58 pthreadpool_t threadpool = pthreadpool_create(threads); in pthreadpool_parallelize_2d() 77 pthreadpool_t threadpool = pthreadpool_create(threads); in pthreadpool_parallelize_2d_tile_2d()
|
/aosp_15_r20/external/pthreadpool/src/ |
H A D | shim.c | 42 pthreadpool_t threadpool, in pthreadpool_parallelize_1d_with_uarch() 56 pthreadpool_t threadpool, in pthreadpool_parallelize_1d_tile_1d() 84 pthreadpool_t threadpool, in pthreadpool_parallelize_2d_tile_1d() 100 pthreadpool_t threadpool, in pthreadpool_parallelize_2d_tile_2d() 117 pthreadpool_t threadpool, in pthreadpool_parallelize_2d_tile_2d_with_uarch() 137 pthreadpool_t threadpool, in pthreadpool_parallelize_3d() 155 pthreadpool_t threadpool, in pthreadpool_parallelize_3d_tile_1d() 174 pthreadpool_t threadpool, in pthreadpool_parallelize_3d_tile_2d() 195 pthreadpool_t threadpool, in pthreadpool_parallelize_3d_tile_2d_with_uarch() 218 pthreadpool_t threadpool, in pthreadpool_parallelize_4d() [all …]
|
H A D | legacy-api.c | 15 pthreadpool_t threadpool, in pthreadpool_compute_1d() 26 pthreadpool_t threadpool, in pthreadpool_compute_1d_tiled() 38 pthreadpool_t threadpool, in pthreadpool_compute_2d() 50 pthreadpool_t threadpool, in pthreadpool_compute_2d_tiled() 94 pthreadpool_t threadpool, in pthreadpool_compute_3d_tiled() 176 pthreadpool_t threadpool, in pthreadpool_compute_4d_tiled()
|
H A D | portable-api.c | 1267 pthreadpool_t threadpool, in pthreadpool_parallelize_1d_with_uarch() 1317 pthreadpool_t threadpool, in pthreadpool_parallelize_1d_tile_1d() 1358 pthreadpool_t threadpool, in pthreadpool_parallelize_2d() 1400 pthreadpool_t threadpool, in pthreadpool_parallelize_2d_tile_1d() 1446 pthreadpool_t threadpool, in pthreadpool_parallelize_2d_tile_2d() 1496 pthreadpool_t threadpool, in pthreadpool_parallelize_2d_tile_2d_with_uarch() 1559 pthreadpool_t threadpool, in pthreadpool_parallelize_3d() 1605 pthreadpool_t threadpool, in pthreadpool_parallelize_3d_tile_1d() 1655 pthreadpool_t threadpool, in pthreadpool_parallelize_3d_tile_2d() 1709 pthreadpool_t threadpool, in pthreadpool_parallelize_3d_tile_2d_with_uarch() [all …]
|
/aosp_15_r20/external/XNNPACK/src/operators/ |
H A D | unary-elementwise-nc.c | 1258 pthreadpool_t threadpool) in xnn_setup_abs_nc_f16() 1274 pthreadpool_t threadpool) in xnn_setup_abs_nc_f32() 1290 pthreadpool_t threadpool) in xnn_setup_bankers_rounding_nc_f16() 1306 pthreadpool_t threadpool) in xnn_setup_bankers_rounding_nc_f32() 1322 pthreadpool_t threadpool) in xnn_setup_ceiling_nc_f16() 1338 pthreadpool_t threadpool) in xnn_setup_ceiling_nc_f32() 1354 pthreadpool_t threadpool) in xnn_setup_clamp_nc_f16() 1370 pthreadpool_t threadpool) in xnn_setup_clamp_nc_f32() 1386 pthreadpool_t threadpool) in xnn_setup_clamp_nc_s8() 1402 pthreadpool_t threadpool) in xnn_setup_clamp_nc_u8() [all …]
|
H A D | binary-elementwise-nd.c | 1113 pthreadpool_t threadpool) in xnn_setup_add_nd_f16() 1133 pthreadpool_t threadpool) in xnn_setup_add_nd_f32() 1153 pthreadpool_t threadpool) in xnn_setup_add_nd_qs8() 1176 pthreadpool_t threadpool) in xnn_setup_add_nd_qu8() 1199 pthreadpool_t threadpool) in xnn_setup_divide_nd_f16() 1219 pthreadpool_t threadpool) in xnn_setup_divide_nd_f32() 1239 pthreadpool_t threadpool) in xnn_setup_maximum_nd_f16() 1259 pthreadpool_t threadpool) in xnn_setup_maximum_nd_f32() 1279 pthreadpool_t threadpool) in xnn_setup_minimum_nd_f16() 1299 pthreadpool_t threadpool) in xnn_setup_minimum_nd_f32() [all …]
|
H A D | transpose-nd.c | 358 pthreadpool_t threadpool) in xnn_setup_transpose_nd_x32() 381 pthreadpool_t threadpool) in xnn_setup_transpose_nd_x16() 404 pthreadpool_t threadpool) in xnn_setup_transpose_nd_x8() 430 pthreadpool_t threadpool) { in run_transpose_nd() 474 pthreadpool_t threadpool) { in xnn_run_transpose_nd_x32() 496 pthreadpool_t threadpool) { in xnn_run_transpose_nd_x16() 518 pthreadpool_t threadpool) { in xnn_run_transpose_nd_x8() 619 pthreadpool_t threadpool) in xnn_setup_depth_to_space_nchw2nhwc_x32() 889 pthreadpool_t threadpool) in xnn_setup_depth_to_space_nhwc_x8() 905 pthreadpool_t threadpool) in xnn_setup_depth_to_space_nhwc_x16() [all …]
|
H A D | lut-elementwise-nc.c | 399 pthreadpool_t threadpool) in xnn_setup_elu_nc_qs8() 411 pthreadpool_t threadpool) in xnn_setup_sigmoid_nc_qs8() 423 pthreadpool_t threadpool) in xnn_setup_sigmoid_nc_qu8() 435 pthreadpool_t threadpool) in xnn_setup_tanh_nc_qs8() 447 pthreadpool_t threadpool) in xnn_setup_tanh_nc_qu8()
|
H A D | global-average-pooling-nwc.c | 131 pthreadpool_t threadpool) in setup_global_average_pooling_nwc() 436 pthreadpool_t threadpool) in xnn_setup_global_average_pooling_nwc_qu8() 467 pthreadpool_t threadpool) in xnn_setup_global_average_pooling_nwc_qs8() 498 pthreadpool_t threadpool) in xnn_setup_global_average_pooling_nwc_f16() 527 pthreadpool_t threadpool) in xnn_setup_global_average_pooling_nwc_f32()
|
H A D | resize-bilinear-nhwc.c | 330 pthreadpool_t threadpool) in xnn_setup_resize_bilinear2d_nhwc_f16() 358 pthreadpool_t threadpool) in xnn_setup_resize_bilinear2d_nhwc_f32() 386 pthreadpool_t threadpool) in xnn_setup_resize_bilinear2d_nhwc_s8() 414 pthreadpool_t threadpool) in xnn_setup_resize_bilinear2d_nhwc_u8()
|
H A D | depth-to-space-nhwc.c | 233 pthreadpool_t threadpool) in xnn_setup_depth_to_space_nhwc_x8() 250 pthreadpool_t threadpool) in xnn_setup_depth_to_space_nhwc_x16() 267 pthreadpool_t threadpool) in xnn_setup_depth_to_space_nhwc_x32()
|
H A D | constant-pad-nd.c | 216 pthreadpool_t threadpool) in xnn_setup_constant_pad_nd_x8() 233 pthreadpool_t threadpool) in xnn_setup_constant_pad_nd_x16() 250 pthreadpool_t threadpool) in xnn_setup_constant_pad_nd_x32()
|
H A D | softmax-nc.c | 145 pthreadpool_t threadpool) in xnn_setup_softmax_nc_qu8() 371 pthreadpool_t threadpool) in xnn_setup_softmax_nc_f16() 403 pthreadpool_t threadpool) in xnn_setup_softmax_nc_f32()
|
/aosp_15_r20/external/pytorch/aten/src/ATen/native/quantized/cpu/qnnpack/include/ |
H A D | qnnpack_func.h | 116 pthreadpool_t threadpool); 133 pthreadpool_t threadpool); 149 pthreadpool_t threadpool); 164 pthreadpool_t threadpool);
|
H A D | pytorch_qnnpack.h | 109 pthreadpool_t threadpool); 121 pthreadpool_t threadpool); 157 pthreadpool_t threadpool); 255 pthreadpool_t threadpool); 281 pthreadpool_t threadpool); 449 pthreadpool_t threadpool);
|
/aosp_15_r20/external/XNNPACK/bench/ |
H A D | end2end.cc | 72 End2EndBenchmark(state, [](pthreadpool_t threadpool) { in FP32Sparse80MobileNetV1() 78 End2EndBenchmark(state, [](pthreadpool_t threadpool) { in FP32Sparse80MobileNetV2() 84 End2EndBenchmark(state, [](pthreadpool_t threadpool) { in FP32Sparse80MobileNetV3Large() 90 End2EndBenchmark(state, [](pthreadpool_t threadpool) { in FP32Sparse80MobileNetV3Small()
|
/aosp_15_r20/external/pytorch/caffe2/utils/threadpool/ |
H A D | pthreadpool-cpp.h | 36 friend pthreadpool_t pthreadpool_(); 50 pthreadpool_t pthreadpool_();
|
/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/xnnpack/ |
H A D | delegate_test.cc | 59 pthreadpool_t threadpool = static_cast<pthreadpool_t>( in TEST()
|
/aosp_15_r20/external/executorch/extension/threadpool/ |
H A D | threadpool.h | 59 friend pthreadpool_t get_pthreadpool(); 81 pthreadpool_t get_pthreadpool();
|
/aosp_15_r20/external/tensorflow/tensorflow/lite/experimental/acceleration/configuration/c/ |
H A D | xnnpack_plugin_test.cc | 77 pthreadpool_t threadpool = in TEST_F() 78 static_cast<pthreadpool_t>(TfLiteXNNPackDelegateGetThreadPool(delegate)); in TEST_F()
|
/aosp_15_r20/external/tensorflow/tensorflow/lite/experimental/acceleration/configuration/ |
H A D | xnnpack_plugin_test.cc | 85 pthreadpool_t threadpool = static_cast<pthreadpool_t>( in TEST_F()
|