Fixed AstroBWT OpenCL config generation

This commit is contained in:
SChernykh 2022-03-16 10:15:38 +01:00
parent 7b9135aadc
commit baef34ba8c

View file

@ -139,7 +139,8 @@ size_t inline generate<Algorithm::ASTROBWT>(Threads<OclThreads>& threads, const
count += threads.move(Algorithm::kASTROBWT_DERO_2, OclThreads(devices, Algorithm::ASTROBWT_DERO_2));
}
return generate(Algorithm::kASTROBWT, threads, Algorithm::ASTROBWT_DERO, devices);
count += generate(Algorithm::kASTROBWT, threads, Algorithm::ASTROBWT_DERO, devices);
return count;
}
#endif