Print detailed information about OpenCL threads.

This commit is contained in:
XMRig
2019-09-05 13:00:40 +07:00
parent 9b54e4b827
commit a74c04007f
4 changed files with 38 additions and 9 deletions

View File

@@ -43,9 +43,16 @@ class Miner;
class OclBackend : public IBackend
{
public:
OclBackend() = delete;
OclBackend(const OclBackend &other) = delete;
OclBackend(Controller *controller);
OclBackend(OclBackend &&other) = delete;
~OclBackend() override;
OclBackend &operator=(const OclBackend &other) = delete;
OclBackend &operator=(OclBackend &&other) = delete;
protected:
bool isEnabled() const override;
bool isEnabled(const Algorithm &algorithm) const override;