remove executable_group from config

This commit is contained in:
Ulf Wiger
2025-05-24 10:30:35 +02:00
parent 680631ed34
commit c1bb026cb4
3 changed files with 7 additions and 12 deletions
+1 -6
View File
@@ -65,8 +65,7 @@ pool_admin() ->
workers() ->
array(
#{default => [#{executable => <<"mean29-generic">>,
executable_group => <<"cpu">>}],
#{default => [#{executable => <<"mean29-generic">>}],
description =>
<<"Definitions of workers' configurations. If no worker are configured one worker "
"is used as default, i.e. 'mean29-generic' executable without any extra args.">>},
@@ -81,10 +80,6 @@ workers() ->
"\"lean29-generic\" (CPU-intensive, useful if memory-constrained), "
"\"lean29-avx2\" (CPU-intensive, useful if memory-constrained, benefits "
"from faster CPU supporting AVX2 instructions).">>}),
executable_group =>
str(#{description => <<"Group of executable binaries of the worker.">>,
enum => [ <<"cpu">>, <<"cuda">> ],
default => <<"cpu">>}),
extra_args =>
str(#{description => <<"Extra arguments to pass to the worker executable binary. "
"The safest choice is specifying no arguments i.e. empty string.">>,