dotnet / jitutils

MIT License
144 stars 59 forks source link

Limit jit-diff parallelism #405

Closed MihaZupan closed 5 months ago

MihaZupan commented 5 months ago

Currently, jit-diff will start jit-dasm processes for all assemblies at the same time. This change limits how many processes we start at the same time to avoid overwhelming machines with less memory available.

Main motivation is that I'm currently forced to use --sequential with @MihuBot when running on Azure Container Instances since they're quite resource limited.