Bitcoin Forum
May 10, 2024, 08:45:09 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 [19] 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 ... 119 »
  Print  
Author Topic: [JCE]Fast & stable CN/v8/Heavy/Tube/XHV miner, CPU+GPU, Vega56 1800+ RX580 1200+  (Read 90784 times)
HansHagberg
Jr. Member
*
Offline Offline

Activity: 58
Merit: 4


View Profile
May 15, 2018, 07:38:23 AM
 #361

Has anyone managed to improve upon the "auto" performance for Ryzen 2700X on CN7 ?
I get ~740 h/s on stock settings.

Adding non cached threads (beyond eight) kills the performance for me.
1715330709
Hero Member
*
Offline Offline

Posts: 1715330709

View Profile Personal Message (Offline)

Ignore
1715330709
Reply with quote  #2

1715330709
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
cerbu
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
May 15, 2018, 09:57:16 AM
 #362

This program works on Arm CPU? Can i use it on a raspberry pi?
nordmann666
Member
**
Offline Offline

Activity: 361
Merit: 16


View Profile
May 15, 2018, 02:53:05 PM
Last edit: May 15, 2018, 03:20:53 PM by nordmann666
 #363

i tried to chance thhe config file for my Ryzen 1700 - but the changes are not recognized from the miner?!

i can change to 1 (only for exampe) thread but the miner still starts with 8 Threads

tried the start_as_admin.bat but no changes

is there a registry that i have to delete?!

whats the best config for ryzen 1700 and crypto V7 (non heavy)

TIA

EDITH: get it...thanks Smiley
Iamtutut
Full Member
***
Offline Offline

Activity: 1120
Merit: 131


View Profile
May 15, 2018, 03:28:42 PM
 #364

Hello,

I'm looking for configs settings, I just changed my hardware. Looking for Ryzen 5 1400 config type (I now have a Ryzen 5 2400G), for V7 and heavy please.
If possible, with "large page enabled".

Thanks.
JCE-Miner (OP)
Member
**
Offline Offline

Activity: 350
Merit: 22


View Profile
May 15, 2018, 05:46:15 PM
 #365

Hello,

Quote
Has anyone managed to improve upon the "auto" performance for Ryzen 2700X on CN7 ?
Nope, the best possible for CN7 is 8x single thread.
For Cryptolight (IPBC, Turtle) there are tricks with double-hash, and for Heavy (Loki, Solace...) with no-cache. But nothing better for CN7.

Quote
Adding non cached threads (beyond eight) kills the performance for me.
Correct, same for my Ryzen. Intel cpus may get extra perfs with no-cache on CN7, but not Ryzen.

Quote
whats the best config for ryzen 1700
The same than for Ryzen 2700 : the default one got with --auto.
Or if you want to force it: --archi ryzen -t 8
but that's the same.

Quote
but the changes are not recognized from the miner?!
you need to use -c <configfile> to enable manual config.

Quote
This program works on Arm CPU? Can i use it on a raspberry pi?
Absolutely not, it's written in assembly for x86 and x64 CPU. Not hardware portable at all, on purpose.
But i'm making a Linux version (for x86/x64 PC only)

best config for Ryzen 5 1400 for CN-V7
Code:
"cpu_threads_conf" :  

     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 0, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 2, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 4, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 6, "use_cache" : true, "multi_hash":1 },
]

for Ryzen 5 1400 for Heavy :
Code:
"cpu_threads_conf" :  

     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 0, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 2, "use_cache" : false, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 3, "use_cache" : false, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 4, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 6, "use_cache" : false, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 7, "use_cache" : false, "multi_hash":1 },
]
Iamtutut
Full Member
***
Offline Offline

Activity: 1120
Merit: 131


View Profile
May 15, 2018, 06:25:05 PM
 #366

I have this weird error:

jce_cn_cpu_miner64.exe --low -c -o communitypool.stellite.cash:6688 -p T***t:tut**et@***.com -u Se2P*****62jBLTQ3mg (the * are replacing the real adresses)
Parameter error, unknown argument communitypool.stellite.cash:6688
JCE-Miner (OP)
Member
**
Offline Offline

Activity: 350
Merit: 22


View Profile
May 15, 2018, 06:35:08 PM
Last edit: May 15, 2018, 06:47:52 PM by JCE-Miner
 #367

look at your -c

it must be followed by the config file name. You miss that argument, and other argument gets badly interpreted.

Code:
jce_cn_cpu_miner64.exe --low -c config.txt -o ..........
the filename can be any existing text file containing config. .txt is just simpler.

and be careful, when Stellite forks (in a few days or weeks) but not before you'll need to add param --variation 7

edit: found a bug that could crash the miner at start, in case a Large Page was missing. Making a bugfix 0.27e with
Code:
Architecture Codename replaced by Assembly Codename (overridable with --archi)
Core2 detect fix
Possible crash fix

about Large Page: there's nothing to do on JCE, it uses them when possible, and normal memory otherwise. You must enable Large Pages (called Locked Pages under windows). Here's a guide
http://support.sisoftware.co.uk/knowledgebase.php?article=52
Iamtutut
Full Member
***
Offline Offline

Activity: 1120
Merit: 131


View Profile
May 15, 2018, 07:23:54 PM
 #368

Thanks, it works, but it seems the Ryzen 5 2400G doesn't appreciate the Ryzen 5 1400 config, the:
"cpu_threads_conf" : 

     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 0, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 2, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 4, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 6, "use_cache" : true, "multi_hash":1 },
]

Is 50% slower than auto config.
It's weird to me, I thought basically the 2400G is a 1400 + Vega.
JCE-Miner (OP)
Member
**
Offline Offline

Activity: 350
Merit: 22


View Profile
May 15, 2018, 07:44:04 PM
 #369

I thought too, but looked at spec and saw that 2400G has only 4M of cache, that's as low as a decade old Conroe.
So the best config for 2400G should be :

Code:
"cpu_threads_conf" :  
[
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 0, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 2, "use_cache" : false, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 3, "use_cache" : false, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 4, "use_cache" : true, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 6, "use_cache" : false, "multi_hash":1 },
     { "cpu_architecture" : "ryzen", "affine_to_cpu" : 7, "use_cache" : false, "multi_hash":1 },
]

which should be similar to autoconfig
Iamtutut
Full Member
***
Offline Offline

Activity: 1120
Merit: 131


View Profile
May 15, 2018, 08:28:10 PM
 #370

I'm around 170 H/s, which is still 4 times more than the G3460 for the same power draw (20-25W).

I picked the 2400G mostly for the Vega cores. My idea is to use my computer for whatever I want + mining with my current GPUs, also while not doing anything with it, being able to mine with the integrated Vega cores (almost any token but ETH).
skablast
Member
**
Offline Offline

Activity: 476
Merit: 19


View Profile
May 15, 2018, 08:29:10 PM
 #371

sorry to disturb

I can get  some (SOME full rack) CPU: 2x xeon E5420 ( 4 cores each ,12 mb l2) 2.5GHz servers reasonably priced.

Does this miner work with windows server ?
any idea +- of the potential speed with those kind of Xeon ?
JCE-Miner (OP)
Member
**
Offline Offline

Activity: 350
Merit: 22


View Profile
May 15, 2018, 08:41:00 PM
 #372

yeah, using both cpu and apu may give good results, and 25W is very low power consumption

a core2 xeon 5420 will give exactly 107 h/s on CN V7, with 64 Bits version, i already tested that cpu Cool

Minimum is Vista 32 Bits but it may work on Server 2003 and later, didn't test. not on xp (tested and failed)
4ward
Member
**
Offline Offline

Activity: 473
Merit: 18


View Profile
May 15, 2018, 09:12:02 PM
 #373

interestingly, 2 cached threads with double-hash give almost the same performance with almost half the power usage and responsive system, so until I find a better combination, ill stop there )

Ok, so I decided to try some extreme values

The config above on i5 7600k was giving ~100h cn-heavy

Running 4 cached threads with multi_hash 6 gives me a huge jump to 166h (pool side result confirms huge increase, although because its luck based - it fluctuates)
But definitely higher than automatic 100-105 Wink

JCE-Miner (OP)
Member
**
Offline Offline

Activity: 350
Merit: 22


View Profile
May 15, 2018, 09:30:01 PM
Last edit: May 15, 2018, 10:23:43 PM by JCE-Miner
 #374

yes that's pretty extreme, but if you get +66% for the same power consumption, that's great !

Quote
pool side result confirms huge increase, although because its luck based - it fluctuates
JCE hashrates are real and untweaked, if it displays 166 so that's 166

i'll give some tries on my ryzen, 166 for a 6M cache cpu is surprisingly high !

0.27e online - bugfix revision
Code:
Architecture Codename replaced by Assembly Codename (overridable with --archi)
Core2 detect fix
Fix of possible crash
no other change, no perf change
sergneo
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
May 16, 2018, 09:21:09 AM
 #375

JCE-Miner
A very good suggestion to make the miner run not only through the command line with parameters, but much easier to run directly .exe. And all startup parameters will be written in the config file.txt, since it was made in xmr-stak via config.txt or as in Xmrig via config.json

Code:
[
    { "low_power_mode" : true, "no_prefetch" : true, "affine_to_cpu" : 0 },
    { "low_power_mode" : true, "no_prefetch" : true, "affine_to_cpu" : 1 },
],
"nicehash_nonce" : false,
"use_tls" : false,
"pool_address" : "pool:3333",
"wallet_address" : "wallet",
"pool_password" : "x",
"httpd_port" : 0,
and so on...

You can also make the miner can be run directly not through .bat , that is, if you run .exe without parameters then they will take them from the configuration file? That's better.
JCE-Miner (OP)
Member
**
Offline Offline

Activity: 350
Merit: 22


View Profile
May 16, 2018, 05:30:13 PM
 #376

i understand what you mean, but that's exactly what i wanted to avoid, a config file with 500 parameters.

i think the .bat can play the role of the config file, if you really want one. otherwise the current config file remains optional, and for fine tuning only.
sergneo
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
May 16, 2018, 06:31:03 PM
Last edit: May 16, 2018, 06:42:19 PM by sergneo
 #377

only one .bat in the role of the configuration file is not convenient
500 parameters are unnecessary, only parameters from the command line are needed.
Code:
Command line parameters:
  -o <pool>:<port>
  -u <wallet>
  -p <password>
  -a <x>
  --ssl
  --nicehash
  --any
  --variation N
  --retrydelay N
  --autoclose N
  --mport <port>
  --stakjson
  --forever
  --low
  --donate
  --auto
  --archi <archi>
  -t N
  --log <file-path>
all modern miners use a separate config file, can you do the same thing?
JCE-Miner (OP)
Member
**
Offline Offline

Activity: 350
Merit: 22


View Profile
May 16, 2018, 06:47:36 PM
 #378

mmmh, well if that's a people's request...
My model is Claymore CPU, which is very slow, but also very simple.

Ok i add it to my todo-list, but not high priority. Now working on Linux version.
sergneo
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
May 16, 2018, 07:06:29 PM
Last edit: May 16, 2018, 08:50:15 PM by sergneo
 #379

JCE-Miner
Thank you, we look forward to Wink
And for the Linux version will inevitably have to do such a config file, in Linux there are no bat files)
JCE-Miner (OP)
Member
**
Offline Offline

Activity: 350
Merit: 22


View Profile
May 16, 2018, 08:54:03 PM
 #380

no but Linux men love ultra-complex command lines Wink
Seriously, Linux version will start with the same command-line based config
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 [19] 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 ... 119 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!