Post
Topic
Board Mining (Altcoins)
Re: [JCE] Ultrafast CN-Heavy/Tube/HVX miner, low power, Vega56 1750+ h/s
by
JCE-Miner
on 09/11/2018, 23:32:12 UTC
Github page: that's on first page of this topic
direct: https://github.com/jceminer/cn_gpu_miner

Quote
Again I need the config for a ryzen 1600 for cnv7
I answered just above

Quote
And that's with usage of FX4330(4-core, 8M, 4GHz)
CN-Heavy consumes 4M of cache, better use two threads with multi-hash 1

Quote
pool managed autoswitching
Please read the full doc about how to setup a different config for each algo:
https://github.com/jceminer/cn_cpu_miner#pool-managed-autoswitch

Three config arrays for three algo class (Light, normal, Heavy)

Quote
multiple algos on config.txt
That's exactly how it works. Example from the doc:
Code:
/* This is the configuration when Cryptolight class algo is mined */
"cryptolight_cpu_threads_conf" :
[
     { "cpu_architecture" : "auto", "affine_to_cpu" : 0, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "auto", "affine_to_cpu" : 1, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "auto", "affine_to_cpu" : 2, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "auto", "affine_to_cpu" : 3, "use_cache" : true, "multi_hash":1 },
],

/* This is the configuration when Cryptonight class algo is mined */
"cryptonight_cpu_threads_conf" :
[
     { "cpu_architecture" : "auto", "affine_to_cpu" : 0, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "auto", "affine_to_cpu" : 2, "use_cache" : true, "multi_hash":1 },
],

/* This is the configuration when CN-Heavy class algo is mined */
"cn_heavy_cpu_threads_conf" :
[
     { "cpu_architecture" : "auto", "affine_to_cpu" : 0, "use_cache" : true, "multi_hash":1 },
],

And adding a hint for the pool to select your most profitable algo is planned, it has been requested in a Github ticket