I noticed in https://github.com/KhronosGroup/SPIRV-LLVM-Translator/blob/main/.github/workflows/check-in-tree-build.yml#L122
it has make llvm-spirv -j2
why is this only 2?
I was looking into how the various KhronosGroup repos are using our limited, shared Github CI minutes, the SPIRV-LLVM-Translator repo is among the most but understand it is a constantly and large contributed repo
I see the CI jobs take about 55 minutes, 50 of which are just building it, looking at the Linux build, I noticed it was only using 2 threads and should just use ninja or make llvm-spirv -j$(nproc)
Thanks
I noticed in https://github.com/KhronosGroup/SPIRV-LLVM-Translator/blob/main/.github/workflows/check-in-tree-build.yml#L122
it has
make llvm-spirv -j2why is this only
2?I was looking into how the various
KhronosGrouprepos are using our limited, shared Github CI minutes, theSPIRV-LLVM-Translatorrepo is among the most but understand it is a constantly and large contributed repoI see the CI jobs take about 55 minutes, 50 of which are just building it, looking at the Linux build, I noticed it was only using 2 threads and should just use
ninjaormake llvm-spirv -j$(nproc)Thanks