Home
last modified time | relevance | path

Searched refs:conv2d_threads (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavfilter/tests/
Ddnn-layer-conv2d.c101 ctx.options.conv2d_threads = 1; in test_with_same_dilate()
205 ctx.options.conv2d_threads = 1; in test_with_valid()
/third_party/ffmpeg/tests/dnn/
Ddnn-layer-conv2d-test.c101 ctx.options.conv2d_threads = 1; in test_with_same_dilate()
205 ctx.options.conv2d_threads = 1; in test_with_valid()
/third_party/ffmpeg/libavfilter/dnn/
Ddnn_backend_native_layer_conv2d.c191 …int thread_num = (ctx->options.conv2d_threads <= 0 || ctx->options.conv2d_threads > av_cpu_count()) in ff_dnn_execute_layer_conv2d()
192 ? (av_cpu_count() + 1) : (ctx->options.conv2d_threads); in ff_dnn_execute_layer_conv2d()
Ddnn_backend_native.h115 uint32_t conv2d_threads; member
Ddnn_backend_native.c36 …{ "conv2d_threads", "threads num for conv2d layer", OFFSET(options.conv2d_threads), AV_OPT_TYPE_IN…
199 if (native_model->ctx.options.conv2d_threads > 1){ in ff_dnn_load_model_native()