Initial RandomX source code prepare and compile.
This commit is contained in:
@@ -43,9 +43,16 @@ class OclLaunchData;
|
||||
class OclBaseRunner : public IOclRunner
|
||||
{
|
||||
public:
|
||||
OclBaseRunner() = delete;
|
||||
OclBaseRunner(const OclBaseRunner &other) = delete;
|
||||
OclBaseRunner(OclBaseRunner &&other) = delete;
|
||||
OclBaseRunner(size_t id, const OclLaunchData &data);
|
||||
|
||||
~OclBaseRunner() override;
|
||||
|
||||
OclBaseRunner &operator=(const OclBaseRunner &other) = delete;
|
||||
OclBaseRunner &operator=(OclBaseRunner &&other) = delete;
|
||||
|
||||
protected:
|
||||
inline cl_context ctx() const override { return m_ctx; }
|
||||
inline const Algorithm &algorithm() const override { return m_algorithm; }
|
||||
|
||||
Reference in New Issue
Block a user