Bitcoin Forum
May 24, 2024, 01:47:28 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 70 [71] 72 73 74 75 76 »
1401  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 26, 2015, 10:14:46 AM
ahh, I didn't see the clockrate..

1510 is a very high clockrate. my 750ti's are normally running stable between 1300-1400. How much power in the wall are you using rednow?

Ahh, I have no equipment to measure. It is running stock voltage 1.125 and with std tdp bios mod to 65.5W (http://cryptomining-blog.com/1014-how-to-increase-the-geforce-gtx-750-ti-power-target-limit/) gpu-z is showing from 50 to 66% TDP.
The card has no additional power connector and is powered from my old mobo pci-ex 1.1 port.
1402  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 26, 2015, 06:54:22 AM
@rednow, try to increase the default intensity instead of overclocking more. might work.
Thanx for the hint. In my case with only 1gb of vid mem I can set max -i 23.3, it gives >900mb mem usage. But performance drops comparing to default -i 23 with >700mb. So I try to decrease it more to -i 22.8 with 630mb mem usage and it seems I'm getting slightly better hashrate now ...

UPD: best with -i 22.9 5975 mhs
1403  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 26, 2015, 06:19:09 AM
@rednow, which cards do you have?



1404  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 25, 2015, 06:38:07 PM
I don't no why but now my poor gtx 750 can handle 1510/1574 engine/mem. It is 30 mhz engine clock increase from previous oc record. And it is stable! Maybe it is a latest nvidia driver. Or just vacuum cleaning my psu that helps ))
Now with latest sp_ commits I got 5960mhs quark )))
1405  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 21, 2015, 01:31:58 PM
10 Mh/s on 750Ti?? That's really great!!
will you merge the mods, make a new repo or sell it?

duplicate share dirty trick. Let's ban him Cheesy Cheesy Cheesy
1406  Alternate cryptocurrencies / Mining (Altcoins) / Re: [VTC] Lyra2RE Vertcoin optimized miner, NOW WITH SOURCES! on: May 20, 2015, 06:14:54 AM
Just for fun: managed to run it on my gtx 750.
It gives 650 khs instead of 880khs with sp_'s ccminer. Not bad but cpu usage is huge.

In order to make it work I needed to change long long constants in Lyra2cl to unsigned long as long long is not supported in nvidia opencl

__constant static const sph_u64 blake2b_IV[8] =
{
  0x6a09e667f3bcc908UL, 0xbb67ae8584caa73bUL,
  0x3c6ef372fe94f82bUL, 0xa54ff53a5f1d36f1UL,
  0x510e527fade682d1UL, 0x9b05688c2b3e6c1fUL,
  0x1f83d9abfb41bd6bUL, 0x5be0cd19137e2179UL
};

Then it was an error in keccak1600.cl with

inline void keccak_block(ulong *s) {

I added static
inline static void keccak_block(ulong *s) {

and the problems seems to vanish.

Then it was an error with 2d array init skein256.cl

__constant static const ulong ROT256[8][4] = {
   46, 36, 19, 37,
   33, 27, 14, 42,
   17, 49, 36, 39,
   44, 9, 54, 56,
   39, 30, 34, 24,
   13, 50, 10, 17,
   25, 29, 39, 43,
   8, 35, 56, 22,
};

I've added more {} to form this

__constant static const ulong ROT256[8][4] = {
   {46, 36, 19, 37},
   {33, 27, 14, 42},
   {17, 49, 36, 39},
   {44, 9, 54, 56},
   {39, 30, 34, 24},
   {13, 50, 10, 17},
   {25, 29, 39, 43},
   {8, 35, 56, 22}
};

And it finally got compiled.
It works and receives "accepted" from the pool )))

I used "intensity" : "14",   "worksize" : "512",  "gpu-threads" : "1" to run ...
gpu_z shows 100% load for gpu engine and memory, the same is with ccminer )))


1407  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 19, 2015, 06:37:02 PM
Boost in x11,x13,x14,x15,x17 comming soon. I finally managed to do the pointer tweaking right in the AES implementation. This removes some assembly instructions for every table lookup in the SBOX.

   // inline asm
   bfi.b32 %r234, %r18, %r527, %r528,%r569;
   // inline asm
   ld.u32    %r576, [%r234];
   // inline asm

with valid hashes...


Very nice! Can't wait to try it. I was a little bit bored with all this offtop discussions about pools and markets, so your post is a breath of fresh air Wink
1408  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 18, 2015, 03:58:39 PM
Where do I put that? In .bat file? Also i mine BCN or XMG on CPU, will this effect that in terms of hashrate?

Yes, to .bat. It will make ccminer thread to have high priority. Since ccminer takes very little cpu usage I think it will not harm ... but only test will show in yщur case ))
1409  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 18, 2015, 03:00:09 PM
My numbers are low because as i mentioned i had 50-60% load on CPU which reduces the hash on most algos, so these are conservative numbers.

Try "start /realtime ccminer.exe --cpu-priority 5"
1410  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 15, 2015, 03:35:23 PM
>> I stand corrected. I couldn't get over 900K on a 980
My junior gtx750 can do 890khs lyra with sp_'s #50 heavily oc'ed to 1480/1575 cpu/mem
1411  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 14, 2015, 03:01:22 PM
found new bug: -g parameter breaks "Extranonce subscription" - can be verified on nicehash,....was wondering why my one of my miners had it checked the other one was missing, but same config/hardware/software  Cool
It's not a bug. It was implemented in such way by sp_. He tries to fix sum bugs in -g mode with this trick ... but for now -g mode has no pros.
sp_ still giving advice to run with -g in solo-mining mode ... but ...
1412  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 13, 2015, 09:22:20 AM

obviously when talking about nvidia - its very different ( with card make and drivers ) but the deal breaker with nvidia is simply that one cant just change a few commandline parameters to 'play' with oc ... even though the options for such tweaking IS there ...

I think this problem exists under linux only. On windows you have such third party tools as nvidia inspector that can change a lot in command line.
1413  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 13, 2015, 09:04:20 AM

Most users don't overclock. My point is if you don't overclock you don't need a TDP of 60WATT. the default 38.5 is more than enough to keep the hashrate. Some cards come with a 6pin power adapter and flashed to use 60W TDP. these cards are not producing more hash than the cards that comes with a default 38.5 if they are not overclocked.

But flashing 60%TDP bios will not raise real power consumption. You just make safety wall to be higher ...
1414  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 13, 2015, 08:59:32 AM
you will hit a max wall - and thats as far as it will go - no bios modding or anything ...

Without bios TDP mode you won't gain from overclocking due to some kind of throttling on heavy algos (scrypt, quark). Maybe under linux this behavior is not implemented in drivers ... i don't know ...

Also you need an option to set fan speed higher then default when overclocking. Default fan control rule makes card to go over 50C degrees under load (in my case). This is not good.
1415  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 13, 2015, 08:53:54 AM
The Non powered ti's actually has a TDP of just 38.5 Watt in the bios. But this can be changed to 60 watt. The increase in watt doesn't increase the hashrate though. Without overclocking, you only waste more power...

http://cryptomining-blog.com/1014-how-to-increase-the-geforce-gtx-750-ti-power-target-limit/
I think you are not right. When you change TDP in bios you just prevent card of being throttled. The actual wattage doesn't depend on bios set TDP but only on algo.
My GTX750 went in economy mode without any overclocking on heavy algos when it was with default TDP in bios. In economy mode performance is degrading.
So changing TDP in bios helps you to prevent throttling and leaves space for further overclock. The dark side is possible card burn if it is n't designed to work with such wattage for long time ...
1416  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] sgminer v5 - optimized X11/X13/NeoScrypt/Lyra2RE/etc. kernel-switch miner on: May 12, 2015, 02:04:18 PM
Is there? Yes; dunno how profitable it is.

EDIT: Pulled my record for Quark: https://ottrbutt.com/miner/quarkwolf-04202015.png (NSFW)

Users report more then 16mhs on 290x with alt free but non-public miner ...
1417  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell kernels. on: May 11, 2015, 03:20:20 PM
this does not include scrypt right? we need cudaminer for that? do you appear to have an improved version of that too, because the last one is from last year...
it does include scrypt and even sha256 Wink You can try some litecoin or bitcoin solo mining Wink
1418  Alternate cryptocurrencies / Mining (Altcoins) / Re: 10MHASH CCminer modded NVIDIA Maxwell kernals by SP. on: May 10, 2015, 06:15:20 PM
nist5 is kinda slow (((
1419  Alternate cryptocurrencies / Mining (Altcoins) / Re: 10MHASH CCminer modded NVIDIA Maxwell kernals by SP. on: May 09, 2015, 04:35:43 PM

Could you elaborate on the -g 5 -i 22 options you mentioned before? For me, -g hurts the performance, -i doesn't change anything and I'm nowhere near your figures...


-g hurts performance almost for everyone except sp_ Cheesy
-i 22 is less aggressive then default intensity. I think it was used by sp_ in -g mode to lower memory requirements.
I tried to increase -i in single threaded mode but it doesn't benefit comparing to default ...

In default mode #49 is better then #50 in quark for me (gtx750).
For other algos #50 is the best.
1420  Alternate cryptocurrencies / Mining (Altcoins) / Re: 10MHASH CCminer modded NVIDIA Maxwell kernals by SP. on: May 09, 2015, 04:23:18 PM
he, if selected avx in compiling - exe file dosnt even start - i tested on old pc in my office... whith sse ccminer work nice on my core2 pc!
avx option is applied in 64bit mode and if your cpu doesn't support it then ...
Pages: « 1 ... 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 70 [71] 72 73 74 75 76 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!