1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-07 07:55:04 -05:00

Cap max threads to 4096 with nVidia OpenCL

This commit is contained in:
Tony Butler
2021-09-30 09:19:48 -06:00
parent ca8bef3ade
commit c6a68c3e51

View File

@@ -39,6 +39,10 @@ static inline uint32_t getMaxThreads(const OclDevice &device, const Algorithm &a
return 40000U;
}
if (device.vendorId() == OCL_VENDOR_NVIDIA) {
return 4096U;
}
const uint32_t ratio = (algorithm.l3() <= oneMiB) ? 2U : 1U;
if (device.vendorId() == OCL_VENDOR_INTEL) {