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) {