2019-08-27 17:33:49 +00:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const fs = require('fs');
|
|
|
|
const path = require('path');
|
2019-09-03 07:36:27 +00:00
|
|
|
const { text2h, text2h_bundle, addIncludes } = require('./js/opencl');
|
2019-09-12 11:50:35 +00:00
|
|
|
const { opencl_minify } = require('./js/opencl_minify');
|
2019-09-08 14:56:18 +00:00
|
|
|
const cwd = process.cwd();
|
2019-08-27 17:33:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
function cn()
|
|
|
|
{
|
2019-09-12 11:50:35 +00:00
|
|
|
const cn = opencl_minify(addIncludes('cryptonight.cl', [
|
2019-08-27 17:33:49 +00:00
|
|
|
'algorithm.cl',
|
|
|
|
'wolf-aes.cl',
|
|
|
|
'wolf-skein.cl',
|
|
|
|
'jh.cl',
|
|
|
|
'blake256.cl',
|
|
|
|
'groestl256.cl',
|
|
|
|
'fast_int_math_v2.cl',
|
2019-09-01 01:49:28 +00:00
|
|
|
'fast_div_heavy.cl',
|
|
|
|
'keccak.cl'
|
2019-09-12 11:50:35 +00:00
|
|
|
]));
|
2019-08-27 17:33:49 +00:00
|
|
|
|
2019-09-12 11:50:35 +00:00
|
|
|
// fs.writeFileSync('cryptonight_gen.cl', cn);
|
2019-08-27 17:33:49 +00:00
|
|
|
fs.writeFileSync('cryptonight_cl.h', text2h(cn, 'xmrig', 'cryptonight_cl'));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-03 07:36:27 +00:00
|
|
|
function cn_r()
|
|
|
|
{
|
|
|
|
const items = {};
|
|
|
|
|
2019-09-12 11:50:35 +00:00
|
|
|
items.cryptonight_r_defines_cl = opencl_minify(addIncludes('cryptonight_r_defines.cl', [ 'wolf-aes.cl' ]));
|
|
|
|
items.cryptonight_r_cl = opencl_minify(fs.readFileSync('cryptonight_r.cl', 'utf8'));
|
2019-09-03 07:36:27 +00:00
|
|
|
|
|
|
|
// for (let key in items) {
|
2019-09-12 11:50:35 +00:00
|
|
|
// fs.writeFileSync(key + '_gen.cl', items[key]);
|
2019-09-03 07:36:27 +00:00
|
|
|
// }
|
|
|
|
|
|
|
|
fs.writeFileSync('cryptonight_r_cl.h', text2h_bundle('xmrig', items));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-08 01:59:17 +00:00
|
|
|
function cn_gpu()
|
|
|
|
{
|
2019-09-12 11:50:35 +00:00
|
|
|
const cn_gpu = opencl_minify(addIncludes('cryptonight_gpu.cl', [ 'wolf-aes.cl', 'keccak.cl' ]));
|
2019-09-08 01:59:17 +00:00
|
|
|
|
2019-09-12 11:50:35 +00:00
|
|
|
// fs.writeFileSync('cryptonight_gpu_gen.cl', cn_gpu);
|
2019-09-08 01:59:17 +00:00
|
|
|
fs.writeFileSync('cryptonight_gpu_cl.h', text2h(cn_gpu, 'xmrig', 'cryptonight_gpu_cl'));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-08 14:56:18 +00:00
|
|
|
function rx()
|
|
|
|
{
|
|
|
|
let rx = addIncludes('randomx.cl', [
|
|
|
|
'../cn/algorithm.cl',
|
|
|
|
'randomx_constants_monero.h',
|
|
|
|
'randomx_constants_wow.h',
|
|
|
|
'randomx_constants_loki.h',
|
2019-10-08 17:00:19 +00:00
|
|
|
'randomx_constants_arqma.h',
|
2019-09-08 14:56:18 +00:00
|
|
|
'aes.cl',
|
|
|
|
'blake2b.cl',
|
|
|
|
'randomx_vm.cl',
|
|
|
|
'randomx_jit.cl'
|
|
|
|
]);
|
|
|
|
|
2019-09-11 08:48:02 +00:00
|
|
|
rx = rx.replace(/(\t| )*#include "fillAes1Rx4.cl"/g, fs.readFileSync('fillAes1Rx4.cl', 'utf8'));
|
|
|
|
rx = rx.replace(/(\t| )*#include "blake2b_double_block.cl"/g, fs.readFileSync('blake2b_double_block.cl', 'utf8'));
|
2019-09-12 11:50:35 +00:00
|
|
|
rx = opencl_minify(rx);
|
2019-09-08 14:56:18 +00:00
|
|
|
|
|
|
|
//fs.writeFileSync('randomx_gen.cl', rx);
|
|
|
|
fs.writeFileSync('randomx_cl.h', text2h(rx, 'xmrig', 'randomx_cl'));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-09-03 07:36:27 +00:00
|
|
|
process.chdir(path.resolve('src/backend/opencl/cl/cn'));
|
|
|
|
|
|
|
|
cn();
|
2019-09-08 01:59:17 +00:00
|
|
|
cn_r();
|
2019-09-08 14:56:18 +00:00
|
|
|
cn_gpu();
|
|
|
|
|
|
|
|
process.chdir(cwd);
|
|
|
|
process.chdir(path.resolve('src/backend/opencl/cl/rx'));
|
|
|
|
|
|
|
|
rx();
|