Restored all cn/2 based algorithms, except cn/r.
This commit is contained in:
parent
235cda1051
commit
9b6ab55936
5 changed files with 1228 additions and 1676 deletions
|
@ -57,7 +57,7 @@ xmrig::OclThread::OclThread(const rapidjson::Value &value)
|
|||
m_intensity = Json::getUint(value, kIntensity);
|
||||
m_worksize = Json::getUint(value, kWorksize);
|
||||
m_affinity = Json::getInt64(value, kAffinity, -1);
|
||||
m_memChunk = std::max(Json::getUint(value, kMemChunk, m_memChunk), 18u);
|
||||
m_memChunk = std::min(Json::getUint(value, kMemChunk, m_memChunk), 18u);
|
||||
m_compMode = Json::getBool(value, kCompMode, m_compMode);
|
||||
|
||||
setUnrollFactor(Json::getUint(value, kUnroll, m_unrollFactor));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue