develop #1

Open
maddo wants to merge 128 commits from develop into master
2 changed files with 10 additions and 10 deletions
Showing only changes of commit 48d6af13da - Show all commits

feat: Update GPU worker allocation for improved performance in AI extraction

MaddoScientisto 2026-05-09 19:15:00 +02:00

View file

@ -2228,11 +2228,11 @@ namespace ImageCatalog_2
var requestedWorkers = useGpu
? normalized switch
{
1 => 1,
2 => 2,
3 => 4,
4 => 6,
_ => 8
1 => 2,
2 => 4,
3 => 8,
4 => 12,
_ => 16
}
: normalized switch
{

View file

@ -217,11 +217,11 @@ public class AiExtractionService : IAiExtractionService
var requestedWorkers = useGpu
? normalized switch
{
1 => 1,
2 => 2,
3 => 4,
4 => 6,
_ => 8
1 => 2,
2 => 4,
3 => 8,
4 => 12,
_ => 16
}
: normalized switch
{