bigjme
|
|
June 27, 2014, 01:11:37 PM |
|
Yeh i use to get some like that, just cancel it and start again
|
Owner of: cudamining.co.uk
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
|
June 27, 2014, 01:38:29 PM |
|
Yeh i use to get some like that, just cancel it and start again
still compiling... (I did restart though...) the compiler really doesn't like what I put in whirlpool (obviously it is where it is stuck... and I will have to recompile as it will just run over one thread...)
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
bigjme
|
|
June 27, 2014, 01:39:49 PM |
|
Hmm, there was in issue like that in ccminer for 64 bit. Which version are you compiling?
|
Owner of: cudamining.co.uk
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
|
June 27, 2014, 01:41:15 PM |
|
Hmm, there was in issue like that in ccminer for 64 bit. Which version are you compiling?
right now, I am compiling in 32bit (the pre X13 release, without killer groestl... for the wrong reason I must precise)
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
bigjme
|
|
June 27, 2014, 01:44:14 PM |
|
Strange. If you watch the compile directory size does it keep increasing?
|
Owner of: cudamining.co.uk
|
|
|
cbuchner1 (OP)
|
|
June 27, 2014, 01:50:21 PM |
|
lol, I have entered compilation of doom.... for some reason cicc.exe is compiling since half an hour and use almost 2Gb of ram
too much loop unrolling causes that, also for some algorithms going below 80 registers per thread also causes these issues.
|
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
|
June 27, 2014, 02:21:22 PM |
|
the compiler doesn't like MAKE_ULONGLONG,
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
bigjme
|
|
June 27, 2014, 02:25:00 PM |
|
Do the intergers need to be that long?
|
Owner of: cudamining.co.uk
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
|
June 27, 2014, 02:28:27 PM |
|
Do the intergers need to be that long?
whirlpool uses tables of uint64_t, the shared memory doesn't seem to take more than uint32_t... (and I don't know enough to modify a lot the algo)
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
bigjme
|
|
June 27, 2014, 02:30:55 PM |
|
Is there a way to split it into 2 and merge it later?
|
Owner of: cudamining.co.uk
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
|
June 27, 2014, 02:37:29 PM |
|
Is there a way to split it into 2 and merge it later?
I did that yesterday, ended up with new uint32_t tables of 512 numbers (instead of 256 uint64_t)... it divided the computing time the hashrate by two... right know, the shared memory seems to split them automatically, just needs to merge them.
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
bigjme
|
|
June 27, 2014, 02:39:53 PM |
|
like this uint32 a = 0xff00ff00; uint32 b = 0x00ff00ff;
ulong64 c = ((ulong64)a) << 32 | b;
|
Owner of: cudamining.co.uk
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
|
June 27, 2014, 03:30:28 PM |
|
still compiling... each mistake cost a lot at the moment... (it wasn't that bad yesterday...)
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
bigjme
|
|
June 27, 2014, 03:31:37 PM |
|
A compile over 10 minutes is a bad one i think
|
Owner of: cudamining.co.uk
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
|
June 27, 2014, 03:58:41 PM |
|
it works (good luck compiling though...) (in my first attemp the two uint32 wasn't in the right order...) gpu usage stable around 78 (not good but better than yesterday) speed: 2.9Mhash/s (2 instance gives between 3-3.2MHash/s) with the killer groestl version. I will release as is (meaning it runs with -a x13... adding new option, is clearly the part I hate... and I don't know well ccminer interface) (less than 5minutes of change over 3 hours of compilation ) edit: I have no idea on how to make it work on linux...
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
Amph
Legendary
Offline
Activity: 3248
Merit: 1070
|
|
June 27, 2014, 04:06:39 PM |
|
it works (good luck compiling though...) (in my first attemp the two uint32 wasn't in the right order...) gpu usage stable around 78 (not good but better than yesterday) speed: 2.9Mhash/s (2 instance gives between 3-3.2MHash/s) with the killer groestl version. I will release as is (meaning it runs with -a x13... adding new option, is clearly the part I hate... and I don't know well ccminer interface) (less than 5minutes of change over 3 hours of compilation ) you just added the two .c/.cu file and changed two line of code?
|
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
|
June 27, 2014, 04:08:32 PM Last edit: June 27, 2014, 06:16:30 PM by djm34 |
|
it works (good luck compiling though...) (in my first attemp the two uint32 wasn't in the right order...) gpu usage stable around 78 (not good but better than yesterday) speed: 2.9Mhash/s (2 instance gives between 3-3.2MHash/s) with the killer groestl version. I will release as is (meaning it runs with -a x13... adding new option, is clearly the part I hate... and I don't know well ccminer interface) (less than 5minutes of change over 3 hours of compilation ) you just added the two .c/.cu file and changed two line of code? If you can find the two cu anywhere let me know (I haven't used the piece of code I "traded", as it would have required a lot more work actually to insert it into ccminer)... you still have to write them (was two days ago... though...) 5min (over the last few changes... once I have found how get something in and out of the shared memory) as it may takes a little while before I get the source out, I put here the windows binaries (it still runs with -x13, though I will try to fix that). It is compiled from the killer groestl version with only one executable: https://mega.co.nz/#!IUsXGBoZ!fMJQK_BG2x6GAyhX_oaD_cmurLD7-4oB4B2Cys5Qh-o
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
Neo.op
|
|
June 27, 2014, 05:34:52 PM |
|
it works (good luck compiling though...) (in my first attemp the two uint32 wasn't in the right order...) gpu usage stable around 78 (not good but better than yesterday) speed: 2.9Mhash/s (2 instance gives between 3-3.2MHash/s) with the killer groestl version. I will release as is (meaning it runs with -a x13... adding new option, is clearly the part I hate... and I don't know well ccminer interface) (less than 5minutes of change over 3 hours of compilation ) edit: I have no idea on how to make it work on linux... where are the codes located? I'll give it a try on linux and see if it compiles through.
|
LYR | ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓███ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█████ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓████▓███ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓████▓▓▓▓████ ▓▓▓▓▓▓▓▓▓▓▄█████▓▓▓▓▓▓▓▓█████▄ ▓▓▓▓▓▓▓▓▓▓▓▓████▓▓▓▓▓▓▓▓████ ▓▓▓▓▓▓▓▓▓▓▓▄▄▓████▓▓▓▓████ ▓▓▓▓▓▓▓▓▓▓███▄▓▓████▓███ ▓▓▓▓▓▓▓▓▓██████▄▓▓█████ ▓▓▓▓▓▓▓▓█████████▄▓███ ▓▓▓▓▓▓▓██████▀▓███▄▓█ ▓▓▓▓▓▓██████▓▓▓█████ ▓▓▓▓▓██████▓▓▓▓█████ ▓▓▓▓██████▄▄▄▄▄██████ ▓▓▓██████████████████ ▓▓███████████████████ ▓██████▓▓▓▓▓▓▓▓▓▓█████ ██████▓▓▓▓▓▓▓▓▓▓▓█████ ██████▓▓▓▓▓▓▓▓▓▓▓▓█████ | LYRA Loyalty Rewards on Blockchain
══════════════════════[ Main Features ]══════════════════════ ✓Customizable tokens ███✓NFT███ ✓DeFi███ ✓DEX███ ✓Revenue share | | | |
|
|
|
djm34
Legendary
Offline
Activity: 1400
Merit: 1050
|
|
June 27, 2014, 06:17:03 PM |
|
it works (good luck compiling though...) (in my first attemp the two uint32 wasn't in the right order...) gpu usage stable around 78 (not good but better than yesterday) speed: 2.9Mhash/s (2 instance gives between 3-3.2MHash/s) with the killer groestl version. I will release as is (meaning it runs with -a x13... adding new option, is clearly the part I hate... and I don't know well ccminer interface) (less than 5minutes of change over 3 hours of compilation ) edit: I have no idea on how to make it work on linux... where are the codes located? I'll give it a try on linux and see if it compiles through. sorry not available yet
|
djm34 facebook pageBTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
|
|
|
bigjme
|
|
June 27, 2014, 06:24:10 PM |
|
djm do you want me to see how long it takes to compile on my windows system in case it was your pc doing it slow? I wont release it as i have no interest in it but i am willing to check it for you
|
Owner of: cudamining.co.uk
|
|
|
|