2019-08-13 12:47:22 +00:00
|
|
|
/* XMRig
|
|
|
|
* Copyright 2010 Jeff Garzik <jgarzik@pobox.com>
|
|
|
|
* Copyright 2012-2014 pooler <pooler@litecoinpool.org>
|
|
|
|
* Copyright 2014 Lucas Jones <https://github.com/lucasjones>
|
|
|
|
* Copyright 2014-2016 Wolf9466 <https://github.com/OhGodAPet>
|
|
|
|
* Copyright 2016 Jay D Dee <jayddee246@gmail.com>
|
|
|
|
* Copyright 2017-2018 XMR-Stak <https://github.com/fireice-uk>, <https://github.com/psychocrypt>
|
2020-03-08 18:22:34 +00:00
|
|
|
* Copyright 2018-2020 SChernykh <https://github.com/SChernykh>
|
|
|
|
* Copyright 2016-2020 XMRig <https://github.com/xmrig>, <support@xmrig.com>
|
2019-08-13 12:47:22 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef XMRIG_OCLTHREAD_H
|
|
|
|
#define XMRIG_OCLTHREAD_H
|
|
|
|
|
|
|
|
|
2020-04-29 07:55:04 +00:00
|
|
|
#include "3rdparty/rapidjson/fwd.h"
|
2019-08-13 12:47:22 +00:00
|
|
|
|
|
|
|
|
2019-09-08 09:28:51 +00:00
|
|
|
#include <bitset>
|
2019-09-05 02:27:29 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
2019-08-13 12:47:22 +00:00
|
|
|
namespace xmrig {
|
|
|
|
|
|
|
|
|
|
|
|
class OclThread
|
|
|
|
{
|
|
|
|
public:
|
2019-09-05 02:27:29 +00:00
|
|
|
OclThread() = delete;
|
2019-09-08 09:28:51 +00:00
|
|
|
OclThread(uint32_t index, uint32_t intensity, uint32_t worksize, uint32_t stridedIndex, uint32_t memChunk, uint32_t threads, uint32_t unrollFactor) :
|
2019-09-05 02:27:29 +00:00
|
|
|
m_threads(threads, -1),
|
2019-08-22 15:39:36 +00:00
|
|
|
m_index(index),
|
|
|
|
m_memChunk(memChunk),
|
|
|
|
m_stridedIndex(stridedIndex),
|
2019-09-06 12:38:22 +00:00
|
|
|
m_unrollFactor(unrollFactor),
|
2019-08-22 15:39:36 +00:00
|
|
|
m_worksize(worksize)
|
2019-09-05 02:27:29 +00:00
|
|
|
{
|
|
|
|
setIntensity(intensity);
|
|
|
|
}
|
2019-08-13 12:47:22 +00:00
|
|
|
|
2019-09-12 08:21:14 +00:00
|
|
|
# ifdef XMRIG_ALGO_RANDOMX
|
|
|
|
OclThread(uint32_t index, uint32_t intensity, uint32_t worksize, uint32_t threads, bool gcnAsm, bool datasetHost, uint32_t bfactor) :
|
|
|
|
m_datasetHost(datasetHost),
|
|
|
|
m_gcnAsm(gcnAsm),
|
|
|
|
m_fields(2),
|
|
|
|
m_threads(threads, -1),
|
|
|
|
m_bfactor(bfactor),
|
|
|
|
m_index(index),
|
|
|
|
m_memChunk(0),
|
|
|
|
m_stridedIndex(0),
|
|
|
|
m_worksize(worksize)
|
|
|
|
{
|
2019-09-08 09:28:51 +00:00
|
|
|
setIntensity(intensity);
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2020-05-28 08:58:06 +00:00
|
|
|
# ifdef XMRIG_ALGO_ASTROBWT
|
2020-03-22 21:36:21 +00:00
|
|
|
OclThread(uint32_t index, uint32_t intensity, uint32_t threads) :
|
|
|
|
m_fields(4),
|
|
|
|
m_threads(threads, -1),
|
|
|
|
m_index(index),
|
|
|
|
m_memChunk(0),
|
|
|
|
m_stridedIndex(0),
|
|
|
|
m_unrollFactor(1),
|
|
|
|
m_worksize(1)
|
|
|
|
{
|
|
|
|
setIntensity(intensity);
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2020-05-28 08:58:06 +00:00
|
|
|
# ifdef XMRIG_ALGO_KAWPOW
|
|
|
|
OclThread(uint32_t index, uint32_t intensity, uint32_t worksize, uint32_t threads) :
|
|
|
|
m_fields(8),
|
|
|
|
m_threads(threads, -1),
|
|
|
|
m_index(index),
|
|
|
|
m_memChunk(0),
|
|
|
|
m_stridedIndex(0),
|
|
|
|
m_unrollFactor(1),
|
|
|
|
m_worksize(worksize)
|
|
|
|
{
|
|
|
|
setIntensity(intensity);
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2019-08-13 12:47:22 +00:00
|
|
|
OclThread(const rapidjson::Value &value);
|
|
|
|
|
2019-09-11 08:48:02 +00:00
|
|
|
inline bool isAsm() const { return m_gcnAsm; }
|
|
|
|
inline bool isDatasetHost() const { return m_datasetHost; }
|
2019-08-22 15:39:36 +00:00
|
|
|
inline bool isValid() const { return m_intensity > 0; }
|
2019-09-05 02:27:29 +00:00
|
|
|
inline const std::vector<int64_t> &threads() const { return m_threads; }
|
2019-08-22 15:39:36 +00:00
|
|
|
inline uint32_t bfactor() const { return m_bfactor; }
|
|
|
|
inline uint32_t index() const { return m_index; }
|
|
|
|
inline uint32_t intensity() const { return m_intensity; }
|
|
|
|
inline uint32_t memChunk() const { return m_memChunk; }
|
|
|
|
inline uint32_t stridedIndex() const { return m_stridedIndex; }
|
|
|
|
inline uint32_t unrollFactor() const { return m_unrollFactor; }
|
2019-08-25 21:44:01 +00:00
|
|
|
inline uint32_t worksize() const { return m_worksize; }
|
2019-08-13 12:47:22 +00:00
|
|
|
|
|
|
|
inline bool operator!=(const OclThread &other) const { return !isEqual(other); }
|
|
|
|
inline bool operator==(const OclThread &other) const { return isEqual(other); }
|
|
|
|
|
2019-08-22 15:39:36 +00:00
|
|
|
bool isEqual(const OclThread &other) const;
|
2019-08-13 12:47:22 +00:00
|
|
|
rapidjson::Value toJSON(rapidjson::Document &doc) const;
|
|
|
|
|
|
|
|
private:
|
2019-09-08 09:28:51 +00:00
|
|
|
enum Fields {
|
|
|
|
STRIDED_INDEX_FIELD,
|
|
|
|
RANDOMX_FIELDS,
|
2020-03-22 21:36:21 +00:00
|
|
|
ASTROBWT_FIELDS,
|
2020-05-28 08:58:06 +00:00
|
|
|
KAWPOW_FIELDS,
|
2019-09-08 09:28:51 +00:00
|
|
|
FIELD_MAX
|
|
|
|
};
|
|
|
|
|
2019-09-05 02:27:29 +00:00
|
|
|
inline void setIntensity(uint32_t intensity) { m_intensity = intensity / m_worksize * m_worksize; }
|
2019-08-22 15:39:36 +00:00
|
|
|
|
2019-09-11 08:48:02 +00:00
|
|
|
bool m_datasetHost = false;
|
2019-09-11 18:09:30 +00:00
|
|
|
bool m_gcnAsm = true;
|
2019-09-08 09:28:51 +00:00
|
|
|
std::bitset<FIELD_MAX> m_fields = 1;
|
2019-09-05 02:27:29 +00:00
|
|
|
std::vector<int64_t> m_threads;
|
2019-09-08 09:28:51 +00:00
|
|
|
uint32_t m_bfactor = 6;
|
|
|
|
uint32_t m_index = 0;
|
|
|
|
uint32_t m_intensity = 0;
|
|
|
|
uint32_t m_memChunk = 2;
|
|
|
|
uint32_t m_stridedIndex = 2;
|
|
|
|
uint32_t m_unrollFactor = 8;
|
|
|
|
uint32_t m_worksize = 0;
|
2019-08-13 12:47:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} /* namespace xmrig */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* XMRIG_OCLTHREAD_H */
|