joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
March 15, 2018, 05:12:40 AM |
|
Forget about turboboost, it's just a slick way to make something bad sound good. With all cores running the CPU produces too much heat at full speed so the clock is throtled back.
Your CPU has 2 physical cores but can run 4 logical threads. HT allows 2 threads to run on a single core but they share resources. Two threads on one core using HT is not as fast as each thread on a dedicated core. That's why you saw the numbers you did.
|
|
|
|
segotiwul
Member
Offline
Activity: 322
Merit: 10
|
|
March 15, 2018, 05:46:26 AM |
|
Ideas for bitcoin games: download on our OS and write to any Hard drive / SSD / even USB drive about our identity. - after that enter the email address in our config.txt file and boot rig - login to dashboard simplemining.net using the same email we use and start managing the Smiley rig - we can just test it for free and then pay 2 $ per rig per month - If new miners apply by using auto-update system - at least 1GB of system memory used (depending on how many GPUs are used from miners) - Linux, programming, scripting, mining is a Smiley hobby we have
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
March 15, 2018, 01:43:46 PM |
|
Spam! Spam! Spam! Spam!
No Spam here please.
|
|
|
|
Enth
Jr. Member
Offline
Activity: 103
Merit: 1
|
|
March 16, 2018, 02:18:31 AM |
|
plexmen, if you want better results - you must overclock your northbridge to increase speed you l1,l2,l3 etc cash.
|
FreeBitcoin AMAZING REFback 90% (https://bitcointalk.org/index.php?topic=5319626.0)
|
|
|
andnet
Member
Offline
Activity: 141
Merit: 10
|
|
March 17, 2018, 08:42:47 AM |
|
How to do cpu affinity and cpu max use in this good prog? Need only 10101010 cpu and 50%
|
|
|
|
Walrusbonzo
|
|
March 17, 2018, 08:58:18 AM |
|
How to do cpu affinity and cpu max use in this good prog? Need only 10101010 cpu and 50%
Do it in Windows task manager, details tab, right click on the program, set affinity, that's how I do it.
|
|
|
|
Sonic-X
Jr. Member
Offline
Activity: 69
Merit: 2
|
|
March 18, 2018, 09:53:02 AM |
|
How to do cpu affinity and cpu max use in this good prog? Need only 10101010 cpu and 50%
-t 4 --cpu-affinity 0x55
|
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
March 18, 2018, 05:00:10 PM Last edit: March 18, 2018, 06:38:07 PM by joblo |
|
cpuminer-opt-3.8.4Added yescryptr32 algo for WAVI coin. Added URL to API data. Improved detection of __int128 support (Linux only) Compile support for CPUs without SSSE3 (no binary support) https://github.com/JayDDee/cpuminer-opt/releases/tag/v3.8.4Additional notes: This release may fix some recently reported compile issues related to unsupported SIMD instructions and lack of support for __int128. This may help some older AMD CPUs and Linux distributions that previously failed to compile. There may be some other unknown underlying issues so YMMV. In particular Centos 6 requires a newer version of gmp that is avalable for that release. There is no Windows binary for CPUs with SSE2 but not SSSE3. cpuminer-sse2 is built for Intel Core2 which includes SSSE3. However, I can be bribed.
|
|
|
|
4ward
Member
Offline
Activity: 473
Merit: 18
|
|
March 18, 2018, 07:52:43 PM |
|
Can you take a look at the Argon2d algo and add it? There seem to be 2 variants, for 2 coins (wonder whats the difference between the algos, but the hashrate is about 3 times faster on Credits coin than on Dynamic) https://github.com/BeastPool/cpuminer-argon2d
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
March 19, 2018, 01:33:24 AM |
|
Can you take a look at the Argon2d algo and add it? There seem to be 2 variants, for 2 coins (wonder whats the difference between the algos, but the hashrate is about 3 times faster on Credits coin than on Dynamic) https://github.com/BeastPool/cpuminer-argon2dIt looks like the same algo but with different parameters. It should be a straightforward implementation because it was forked from cpuminer-opt. But I'll probably rework it to reduce code duplication/triplication.
|
|
|
|
stas260385
Newbie
Offline
Activity: 38
Merit: 0
|
|
March 19, 2018, 10:50:04 AM |
|
Can you take a look at the Argon2d algo and add it? There seem to be 2 variants, for 2 coins (wonder whats the difference between the algos, but the hashrate is about 3 times faster on Credits coin than on Dynamic) https://github.com/BeastPool/cpuminer-argon2dIt looks like the same algo but with different parameters. It should be a straightforward implementation because it was forked from cpuminer-opt. But I'll probably rework it to reduce code duplication/triplication. It would be great because this fork didn't support AVX2, only AVX and AVX512f. Waiting for adding Argon2d algo's too!
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
March 20, 2018, 01:06:41 AM |
|
If you'r e the lucky owner of a CPU with AVX512, maybe you aren't so lucky because v3.8.4 fails to compile. I included some experimental AVX512 code but was unable to test compile it, and sure enough, it won't compile.
Until a new release is available you can remove the erroneous backslash in avxdefs.h line 1244 or remove the entire AVX512 block of code.
|
|
|
|
JHB3
Full Member
Offline
Activity: 420
Merit: 100
ELIXIR TOKEN
|
|
March 20, 2018, 07:25:34 PM |
|
cpuminer-opt-3.8.4Added yescryptr32 algo for WAVI coin. Added URL to API data. Improved detection of __int128 support (Linux only) Compile support for CPUs without SSSE3 (no binary support) https://github.com/JayDDee/cpuminer-opt/releases/tag/v3.8.4Additional notes: This release may fix some recently reported compile issues related to unsupported SIMD instructions and lack of support for __int128. This may help some older AMD CPUs and Linux distributions that previously failed to compile. There may be some other unknown underlying issues so YMMV. In particular Centos 6 requires a newer version of gmp that is avalable for that release. There is no Windows binary for CPUs with SSE2 but not SSSE3. cpuminer-sse2 is built for Intel Core2 which includes SSSE3. However, I can be bribed. hello, can you link a post where someone explains how to run the miner. which command etc. that would be really nice. Or maybe link that specific post or instructions in the ANN post?
|
|
|
|
AltScope
|
|
March 20, 2018, 07:54:12 PM |
|
...
can you link a post where someone explains how to run the miner. which command etc. that would be really nice. Or maybe link that specific post or instructions in the ANN post?
cpuminer-aes-sse42 -h replace cpuminer-aes-sse42 with the build your using, pools will also have quickstart commands/options listed
|
|
|
|
dasgardo87
|
|
March 20, 2018, 08:14:05 PM |
|
Hi can someone help me?? why i get this error?? im using ./build.sh and doing the same thing like 1 month ago without any issue, but somehow now i got that error , idk what is wrong thank you for your help guys
|
|
|
|
JHB3
Full Member
Offline
Activity: 420
Merit: 100
ELIXIR TOKEN
|
|
March 20, 2018, 08:18:36 PM |
|
...
can you link a post where someone explains how to run the miner. which command etc. that would be really nice. Or maybe link that specific post or instructions in the ANN post?
cpuminer-aes-sse42 -h replace cpuminer-aes-sse42 with the build your using, pools will also have quickstart commands/options listed ok. so i just have to type this when i'm in the specific path of the cpuminer. where do i know what build I'm using?
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
March 20, 2018, 09:25:45 PM Last edit: March 20, 2018, 10:07:25 PM by joblo |
|
Hi can someone help me?? why i get this error?? im using ./build.sh and doing the same thing like 1 month ago without any issue, but somehow now i got that error , idk what is wrong thank you for your help guys Your CPU has AVX512 I presume. Read back a few posts, you can get more details here... https://github.com/JayDDee/cpuminer-opt/issues/116
|
|
|
|
CryptoBallin
Newbie
Offline
Activity: 2
Merit: 0
|
|
March 20, 2018, 09:27:50 PM |
|
Mining noob here look for some help trouble shooting. I'm trying to mine zoin. I believe i have everything set up correctly but cpuminer keeps closing out on me. I'm on an older laptop running windows 8.1, intel i5-4210u cpu which does support avx2. Here's my .bat "cpuminer-avx2.exe -a lyra2zoin -o stratum+tcp://zoin.netabuse.net:3000 -u mynamemyworker -p mypassword -t1" I double click the .bat, the cmd window opens and i start hashing. I check my worker on the pools page and it shows it running. Shares submitted, shares accepted, running fine for 4-5 minutes then the cmd window closes and no more hashing. I've given permission to the av, i'm only running 1 thread so cpu usage/temperature isn't an issue. It just quits. Like i said i'm a total noob when it comes to mining so maybe there's something obvious i'm overlooking, but as far as i can tell it's all set up right.
|
|
|
|
joblo (OP)
Legendary
Offline
Activity: 1470
Merit: 1114
|
|
March 20, 2018, 09:37:40 PM |
|
Mining noob here look for some help trouble shooting. I'm trying to mine zoin. I believe i have everything set up correctly but cpuminer keeps closing out on me. I'm on an older laptop running windows 8.1, intel i5-4210u cpu which does support avx2. Here's my .bat "cpuminer-avx2.exe -a lyra2zoin -o stratum+tcp://zoin.netabuse.net:3000 -u mynamemyworker -p mypassword -t1" I double click the .bat, the cmd window opens and i start hashing. I check my worker on the pools page and it shows it running. Shares submitted, shares accepted, running fine for 4-5 minutes then the cmd window closes and no more hashing. I've given permission to the av, i'm only running 1 thread so cpu usage/temperature isn't an issue. It just quits. Like i said i'm a total noob when it comes to mining so maybe there's something obvious i'm overlooking, but as far as i can tell it's all set up right. If the miner is reporting shares accepted and the pool confirms it you seem to be doing (almost) everything right and likely have a problem with your PC causing the miner to crash. Almost because you should put a pause in your bat so the window stays open and you can see any error messages that may have been displayed.
|
|
|
|
|