Implemented option "dataset_host".

This commit is contained in:
XMRig
2019-09-12 13:49:27 +07:00
parent 1699443520
commit 3afc880fe5
5 changed files with 31 additions and 9 deletions

View File

@@ -37,6 +37,9 @@ using cl_context = struct _cl_context *;
namespace xmrig {
class Job;
class OclContext
{
public:
@@ -46,7 +49,7 @@ public:
OclContext(const OclDevice &device);
~OclContext();
bool init(const std::vector<OclDevice> &devices, std::vector<OclLaunchData> &threads);
bool init(const std::vector<OclDevice> &devices, std::vector<OclLaunchData> &threads, const Job &job);
inline bool isValid() const { return m_ctx != nullptr; }
inline cl_context ctx() const { return m_ctx; }