Bitcoin Forum
May 27, 2024, 03:55:27 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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]
681  Alternate cryptocurrencies / Altcoin Discussion / Re: [GIVEAWAY][XIVRA] 200,000 XiV + 2 x 500,000 XIV jackpot on: January 07, 2014, 08:10:16 AM
XNXHAvk9DwjRU7iUCyeZdrJcKrKxMqa56u

And voted on both websited

thnx
682  Alternate cryptocurrencies / Mining (Altcoins) / Re: Minor Scrypt OpenCL optimization on: December 22, 2013, 07:43:21 PM
Semicolons at the end of the for statement do nothing for the current error.
But you are right the don't belong there so I removed them thnx.
683  Alternate cryptocurrencies / Mining (Altcoins) / Re: Minor Scrypt OpenCL optimization on: December 22, 2013, 05:35:46 PM
I tried to optimize the code even further, but i have limited coding skills.

Below is the part that I tried to make so that is can be executed parallel. But I get the error: line 469: error: expected an identifier
for(uint k=0; k<8; k++);

Somebody that has a clue to what goes wrong here?

Code:
void SHA256_fixed(uint4*restrict state0,uint4*restrict state1)
{
uint4 S0 = *state0;
uint4 S1 = *state1;

#define A S0.x
#define B S0.y
#define C S0.z
#define D S0.w
#define E S1.x
#define F S1.y
#define G S1.z
#define H S1.w
#define k 0

#pragma unroll
for(uint k=0; k<8; k++);
RND(A,B,C,D,E,F,G,H, fixedW[(8*k)+0]);

#pragma unroll
for(uint k=0; k<8; k++);
RND(H,A,B,C,D,E,F,G, fixedW[(8*k)+1]);

#pragma unroll
for(uint k=0; k<8; k++);
RND(G,H,A,B,C,D,E,F, fixedW[(8*k)+2]);

#pragma unroll
for(uint k=0; k<8; k++);
RND(F,G,H,A,B,C,D,E, fixedW[(8*k)+3]);

#pragma unroll
for(uint k=0; k<8; k++);
RND(E,F,G,H,A,B,C,D, fixedW[(8*k)+4]);

#pragma unroll
for(uint k=0; k<8; k++);
RND(D,E,F,G,H,A,B,C, fixedW[(8*k)+5]);

#pragma unroll
for(uint k=0; k<8; k++);
RND(C,D,E,F,G,H,A,B, fixedW[(8*k)+6]);

#pragma unroll
for(uint k=0; k<8; k++);
RND(B,C,D,E,F,G,H,A, fixedW[(8*k)+7]);

#undef A
#undef B
#undef C
#undef D
#undef E
#undef F
#undef G
#undef H
#undef k

*state0 += S0;
*state1 += S1;
}
684  Alternate cryptocurrencies / Mining (Altcoins) / Re: Minor Scrypt OpenCL optimization on: December 21, 2013, 11:18:18 AM
Code seems to speed up my 7950 with about 2%.
However when quiting cgminer and restarting it, it tends to hang around the 12 kh/s and i have to restart the pc to get it working again.

On the topic of improvements: Has someone ever implemented the uint8 into the code? I'm not a coder but I read on the net that the scrypt would benefit from this...

Gr, Maarten
685  Alternate cryptocurrencies / Altcoin Discussion / Re: [WOW] 10000 DOGE COIN give away, much 100x100 doge's to give + luck on: December 17, 2013, 04:00:45 PM
DRpgKSofFEzTFqaWT2v39HTKPEYYXRiJG8

thnx
686  Alternate cryptocurrencies / Altcoin Discussion / Re: [HUGE DOGE GIVEAWAY]-----500K DOGE-----! 500 Per Person ! on: December 17, 2013, 03:50:03 PM
DRpgKSofFEzTFqaWT2v39HTKPEYYXRiJG8

thnx
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]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!