AstroBWT CUDA support

This commit is contained in:
SChernykh 2020-04-04 11:05:44 +02:00
parent f19b2f7248
commit 7f01c5c6f3
13 changed files with 214 additions and 7 deletions

View file

@ -136,6 +136,15 @@ size_t inline generate<Algorithm::RANDOM_X>(Threads<CudaThreads> &threads, const
#endif
#ifdef XMRIG_ALGO_ASTROBWT
template<>
size_t inline generate<Algorithm::ASTROBWT>(Threads<CudaThreads> &threads, const std::vector<CudaDevice> &devices)
{
return generate("astrobwt", threads, Algorithm::ASTROBWT_DERO, devices);
}
#endif
} /* namespace xmrig */