Implemented cryptonight mining.

This commit is contained in:
XMRig 2019-10-27 17:53:00 +07:00
parent bb2cc0deb7
commit c9f7cbae09
15 changed files with 486 additions and 29 deletions

View file

@ -37,6 +37,9 @@
namespace xmrig {
class ICudaRunner;
class CudaWorker : public Worker
{
public:
@ -60,6 +63,7 @@ private:
const Algorithm m_algorithm;
const Miner *m_miner;
const uint32_t m_intensity;
ICudaRunner *m_runner = nullptr;
WorkerJob<1> m_job;
};