Genoil
|
 |
January 27, 2016, 09:35:23 AM |
|
Perhaps compile the ether miner for 32 bit's will help? Cached Pointersizes will go from 64bit to 32 (and double the tlb limit?) You need to remove the cpu verfication code because it use 64bit libraries I think..
Thought of that but it's going to be troublesome. You only have a 4GB address space, with windows already sucking up ~half. Then you have to load the 1.3 GB DAG from disk, and allocate 1.3GB of GPU RAM (which, AFAIK sits in the same space, although it isn't pinned to host). This doens't fit. So then you would have to read the DAG from disk in small chunks and copy it cover to GPU RAM. And when that's all done, you will have to pass on all solutions to a special light version of ethminer, that does light verification, is it can't load a DAG into RAM for the same reasons. Or you simply don't verify and risk some Boo's. Then, when that's all done, you're not even sure if it fixes the problem. You could try getting a 32-bit version of dagSimCL to work. I believe Epsylon3/tpruvot has been trying to get a 32-bit version of ethminer to work a while back. Can't find the source anymore.
|
ETH: 0xeb9310b185455f863f526dab3d245809f6854b4d BTC: 1Nu2fMCEBjmnLzqb8qUJpKgq5RoEWFhNcW
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
 |
January 27, 2016, 10:01:27 AM |
|
Perhaps compile the ether miner for 32 bit's will help? Cached Pointersizes will go from 64bit to 32 (and double the tlb limit?) You need to remove the cpu verfication code because it use 64bit libraries I think..
Thought of that but it's going to be troublesome. You only have a 4GB address space, with windows already sucking up ~half. Then you have to load the 1.3 GB DAG from disk, and allocate 1.3GB of GPU RAM (which, AFAIK sits in the same space, although it isn't pinned to host). This doens't fit. So then you would have to read the DAG from disk in small chunks and copy it cover to GPU RAM. And when that's all done, you will have to pass on all solutions to a special light version of ethminer, that does light verification, is it can't load a DAG into RAM for the same reasons. Or you simply don't verify and risk some Boo's. Then, when that's all done, you're not even sure if it fixes the problem. You could try getting a 32-bit version of dagSimCL to work. I believe Epsylon3/tpruvot has been trying to get a 32-bit version of ethminer to work a while back. Can't find the source anymore. I don't remember it was released either (I remember that I tested it though...) I think it was on a dropbox or something , don't think he created a repo (?)
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
sp_ (OP)
Legendary
Offline
Activity: 2926
Merit: 1087
Team Black developer
|
 |
January 27, 2016, 01:19:42 PM Last edit: January 27, 2016, 01:36:21 PM by sp_ |
|
I believe Epsylon3/tpruvot has been trying to get a 32-bit version of ethminer to work a while back. Can't find the source anymore.
I tried as well to integrate the ether miner into ccminer.. But lost interest because the 64bit nonce and other non standard code. I can do another try and release the result. NO cpu verification or DAG generation. Only to test and mod the gpu code.. (--benchmark mode)
|
|
|
|
sp_ (OP)
Legendary
Offline
Activity: 2926
Merit: 1087
Team Black developer
|
 |
January 27, 2016, 01:40:22 PM |
|
I don't remember it was released either (I remember that I tested it though...) I think it was on a dropbox or something , don't think he created a repo (?)
I found the code on github: https://github.com/tpruvot/ccminer/tree/ethashethash test to finish... remains the mixHash thing to compute, and to check the submitted nonce64 endian/value Signed-off-by: Tanguy Pruvot < tanguy.pruvot@gmail.com>
|
|
|
|
|
sp_ (OP)
Legendary
Offline
Activity: 2926
Merit: 1087
Team Black developer
|
 |
January 27, 2016, 06:16:55 PM |
|
ok I added it now. You have to build yourself..
The gtx 970 is doing 2.3GHASH Run with -a vanilla
|
|
|
|
pokeytex
Legendary
Offline
Activity: 1504
Merit: 1002
|
 |
January 27, 2016, 06:45:26 PM |
|
ok I added it now. You have to build yourself..
The gtx 970 is doing 2.3GHASH Run with -a vanilla
Thank you - what is the software used to build from source again?
|
|
|
|
sp_ (OP)
Legendary
Offline
Activity: 2926
Merit: 1087
Team Black developer
|
 |
January 27, 2016, 06:50:57 PM |
|
1. Download cuda 7.5 2. Download and install visual studio 2013 express 3. Download the source: https://github.com/sp-hash/ccminer/archive/windows.zip3. Open the project. select release, win32 4. Build.
|
|
|
|
sp_ (OP)
Legendary
Offline
Activity: 2926
Merit: 1087
Team Black developer
|
 |
January 27, 2016, 06:55:05 PM |
|
ok I added it now. You have to build yourself..
The gtx 970 is doing 2.3GHASH Run with -a vanilla
Gtx 970: 2.6GHASH Gtx 960: 1.65GHASH gtx 750ti: 0.94GHASH
|
|
|
|
sp_ (OP)
Legendary
Offline
Activity: 2926
Merit: 1087
Team Black developer
|
 |
January 27, 2016, 06:56:45 PM |
|
Version 1.7.1 is not my fork. My version is 1.5.78
|
|
|
|
crsminer
Jr. Member
Offline
Activity: 64
Merit: 1
|
 |
January 27, 2016, 06:57:02 PM |
|
Perhaps compile the ether miner for 32 bit's will help? Cached Pointersizes will go from 64bit to 32 (and double the tlb limit?) You need to remove the cpu verfication code because it use 64bit libraries I think..
Thought of that but it's going to be troublesome. You only have a 4GB address space, with windows already sucking up ~half. Then you have to load the 1.3 GB DAG from disk, and allocate 1.3GB of GPU RAM (which, AFAIK sits in the same space, although it isn't pinned to host). This doens't fit. So then you would have to read the DAG from disk in small chunks and copy it cover to GPU RAM. And when that's all done, you will have to pass on all solutions to a special light version of ethminer, that does light verification, is it can't load a DAG into RAM for the same reasons. Or you simply don't verify and risk some Boo's. Then, when that's all done, you're not even sure if it fixes the problem. You could try getting a 32-bit version of dagSimCL to work. I believe Epsylon3/tpruvot has been trying to get a 32-bit version of ethminer to work a while back. Can't find the source anymore. Hi Genoil, This is a small contribution from me to your work on ethminer --- 0xc3e7bda79b60fb4f34fbe467a8c3c3084e9008bbdc9014d8ade8e8c22cd1352a I am using your miner and making some ETH and I thought that you deserve part of it (as I did with all devs improving the miners we are using). Keep up the good work!
|
|
|
|
kangjooe
Newbie
Offline
Activity: 36
Merit: 0
|
 |
January 27, 2016, 07:43:05 PM |
|
Version 1.7.1 is not my fork. My version is 1.5.78 ask: why nicehash accepted share is always lower than the reported? for example, Lyra2 is accepted around 9600~ kH/s but nicehash only accepted 8.9 mH/s, no matter how long i mine, it always lower than my mining speed.  and what is the best intensity for lyra2 in 78 release? i'm using 970.
|
|
|
|
sp_ (OP)
Legendary
Offline
Activity: 2926
Merit: 1087
Team Black developer
|
 |
January 27, 2016, 07:55:33 PM |
|
Version 1.7.1 is not my fork. My version is 1.5.78 ask: why nicehash accepted share is always lower than the reported? for example, Lyra2 is accepted around 9600~ kH/s but nicehash only accepted 8.9 mH/s, no matter how long i mine, it always lower than my mining speed.  and what is the best intensity for lyra2 in 78 release? i'm using 970. Wich version of ccminer are you using? You should mine lyra2v2 and not lyra2.
|
|
|
|
sp_ (OP)
Legendary
Offline
Activity: 2926
Merit: 1087
Team Black developer
|
 |
January 27, 2016, 08:03:04 PM |
|
Version 1.7.1 is not my fork. My version is 1.5.78 ask: why nicehash accepted share is always lower than the reported? for example, Lyra2 is accepted around 9600~ kH/s but nicehash only accepted 8.9 mH/s, no matter how long i mine, it always lower than my mining speed.  and what is the best intensity for lyra2 in 78 release? i'm using 970. Wich version of ccminer are you using? You should mine lyra2v2 and not lyra2. Download version 74 here: https://github.com/sp-hash/ccminer/releases
|
|
|
|
kangjooe
Newbie
Offline
Activity: 36
Merit: 0
|
 |
January 27, 2016, 08:29:37 PM |
|
Version 1.7.1 is not my fork. My version is 1.5.78 ask: why nicehash accepted share is always lower than the reported? for example, Lyra2 is accepted around 9600~ kH/s but nicehash only accepted 8.9 mH/s, no matter how long i mine, it always lower than my mining speed.  and what is the best intensity for lyra2 in 78 release? i'm using 970. Wich version of ccminer are you using? You should mine lyra2v2 and not lyra2. i'm using your version. 1.5.78 this is my bat: ccminer.exe -a lyra2v2 -o stratum+tcp://lyra2rev2.jp.nicehash.com:3347 -u 1AwFc6m5evP5a8csDWsb6S3joSaBx8ia1e -p d=4 -i 16
is 1.5.74 give better hash rate for lyrav2 than 78?
|
|
|
|
sp_ (OP)
Legendary
Offline
Activity: 2926
Merit: 1087
Team Black developer
|
 |
January 27, 2016, 08:38:03 PM Last edit: January 27, 2016, 09:00:41 PM by sp_ |
|
Version 1.7.1 is not my fork. My version is 1.5.78 ask: why nicehash accepted share is always lower than the reported? for example, Lyra2 is accepted around 9600~ kH/s but nicehash only accepted 8.9 mH/s, no matter how long i mine, it always lower than my mining speed.  and what is the best intensity for lyra2 in 78 release? i'm using 970. Wich version of ccminer are you using? You should mine lyra2v2 and not lyra2. i'm using your version. 1.5.78 this is my bat: ccminer.exe -a lyra2v2 -o stratum+tcp://lyra2rev2.jp.nicehash.com:3347 -u 1AwFc6m5evP5a8csDWsb6S3joSaBx8ia1e -p d=4 -i 16
is 1.5.74 give better hash rate for lyrav2 than 78? Replace d=4 with x. and remove the intensity setting. ccminer.exe -a lyra2v2 -o stratum+tcp://lyra2rev2.jp.nicehash.com:3347 -u 1AwFc6m5evP5a8csDWsb6S3joSaBx8ia1e -p x You should get full hashrate. Release 78 was compiled with cuda 7.5 and I think it is slower than release 74 but not sure. If you have time, try all releases from 68 and up to 78 and check wich version has the best hashrate for your card. I also have a private version that improves the speed alot. (from release 74) 4-10% (it cost 0.1 BTC in donation)
|
|
|
|
pokeytex
Legendary
Offline
Activity: 1504
Merit: 1002
|
 |
January 27, 2016, 09:49:03 PM |
|
Thank you - I will do this tonight...
|
|
|
|
Slava_K
|
 |
January 27, 2016, 10:07:03 PM |
|
Thank you - I will do this tonight... Can you make it fasrer _sp? ☺
|
|
|
|
pokeytex
Legendary
Offline
Activity: 1504
Merit: 1002
|
 |
January 27, 2016, 10:34:31 PM |
|
Thank you - I will do this tonight... Can you make it fasrer _sp? ☺ Maybe for a donate?
|
|
|
|
sp_ (OP)
Legendary
Offline
Activity: 2926
Merit: 1087
Team Black developer
|
 |
January 27, 2016, 10:48:26 PM |
|
|
|
|
|
|