AstroBWT CUDA support

This commit is contained in:
SChernykh
2020-04-04 11:05:44 +02:00
parent 48a8608e4a
commit e793dd3be2
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 */