Bitcoin Forum
April 24, 2024, 10:26:10 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 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 ... 78 »
  Print  
Author Topic: [ANN] [SKC] Skeincoin 0.9.3.1 | Skein-SHA2  (Read 161507 times)
drico
Member
**
Offline Offline

Activity: 68
Merit: 10


View Profile
November 28, 2013, 11:49:53 PM
 #261

cgminer must be parsing the output buffer differently from poclbm (see SETFOUND macro in its kernels), otherwise looks good, at a glance. Please also note the kernel only returns diff 1 shares, for pool you are going to need to either hardcode the target or pass it to kernel.
Yes, cgminer parses it differently. I added this
Code:
// output[OUTPUT_SIZE] = output[nonce & OUTPUT_MASK] = nonce;
    #define FOUND (0x0F)
    #define SETFOUND(Xnonce) output[output[FOUND]++] = Xnonce

    SETFOUND(nonce);
  to your kernel and it should work.
Unfortunately it never reaches this code (on Geforce GT 650) and I don't know why...

You can try a lower diff (uncomment the '& 0xc0ffffff' for example) and see what happens. You can also use printf() in the kernel for debugging if your SDK is at least OpenCL 1.1 compliant.

I'm just wondering how you could compile the kernel for poclbm in python that you showed, to cgminer.
I've looked at the others kernel in cgminer like diablo or phatk, this doesn't look the same at all.
Any explanation would be nice Smiley

thanks
1713997570
Hero Member
*
Offline Offline

Posts: 1713997570

View Profile Personal Message (Offline)

Ignore
1713997570
Reply with quote  #2

1713997570
Report to moderator
Be very wary of relying on JavaScript for security on crypto sites. The site can change the JavaScript at any time unless you take unusual precautions, and browsers are not generally known for their airtight security.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713997570
Hero Member
*
Offline Offline

Posts: 1713997570

View Profile Personal Message (Offline)

Ignore
1713997570
Reply with quote  #2

1713997570
Report to moderator
broketech
Member
**
Offline Offline

Activity: 104
Merit: 10


View Profile
November 29, 2013, 07:47:18 AM
 #262

Quote
I'm just wondering how you could compile the kernel for poclbm in python that you showed, to cgminer.
I've looked at the others kernel in cgminer like diablo or phatk, this doesn't look the same at all.
Any explanation would be nice Smiley

mmm as far as patching the kernel in the easy stuff has been done.   It hashes with invalid nonce hw errors at this point, not hard to do.  I had the pre stages mixed up, got bent and sick of it, and passed it to redkendra.  Just the last couple days I have been staying away from it.

It took me awhile to appreciate how modular cgminer really is.

Sysadmin - Troubleshooter - Armchair Debugger
BTC: 1PCocLTxLJP4L1d1Gigjhxoy2WypifA4Cy - UN: uQAR2PhjtdvNvbbh4JC4wJdx3SCh2W4xB4 - SKC: SR81M5iqLkRB6PjZgkpNkpz1G7KmY3zceL
reorder
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
November 29, 2013, 07:57:46 AM
 #263

Quote
I'm just wondering how you could compile the kernel for poclbm in python that you showed, to cgminer.
I've looked at the others kernel in cgminer like diablo or phatk, this doesn't look the same at all.
Any explanation would be nice Smiley

mmm as far as patching the kernel in the easy stuff has been done.   It hashes with invalid nonce hw errors at this point, not hard to do.  I had the pre stages mixed up, got bent and sick of it, and passed it to redkendra.  Just the last couple days I have been staying away from it.

It took me awhile to appreciate how modular cgminer really is.

Just hope it is an irony, IMO 'modular' is the least applicable word for it. Though it is very nice in multiple other ways of course. You won't have to "#ifdef SCRYPT" in more than one place in a true modular system.
drico
Member
**
Offline Offline

Activity: 68
Merit: 10


View Profile
November 29, 2013, 09:13:37 AM
 #264

Quote
I'm just wondering how you could compile the kernel for poclbm in python that you showed, to cgminer.
I've looked at the others kernel in cgminer like diablo or phatk, this doesn't look the same at all.
Any explanation would be nice Smiley

mmm as far as patching the kernel in the easy stuff has been done.

Cool but how ? Smiley did you rewrite it to AMD SDK ?
broketech
Member
**
Offline Offline

Activity: 104
Merit: 10


View Profile
November 30, 2013, 09:35:11 PM
 #265

Quote
Cool but how ? Smiley did you rewrite it to AMD SDK ?

Reorder's kernel is in opencl, so it should run on anything that knows how to take advantage of the output/input of the code (not me haha).

Quote
Just hope it is an irony, IMO 'modular' is the least applicable word for it. Though it is very nice in multiple other ways of course. You won't have to "#ifdef SCRYPT" in more than one place in a true modular system.

mm It took me about four days before I realized that the precalc was overwriting whatever work I prepped.  I'm certain I'm missing a hex2bin or flip, I was going to draw up the work flow.  Another end is where it checks the work locally, I'm not sure the cpu code path is consistent with the gpu.  I really am an amateur, and it feels like I'm fumbling around.

To get it integrated fully I'm going to have to figure out the cl state variables, and how exactly to prep the skein prestages with the work.  Assuming I could do that, then even debug it, it has to wait for now. I have to work on other stuff.


Sysadmin - Troubleshooter - Armchair Debugger
BTC: 1PCocLTxLJP4L1d1Gigjhxoy2WypifA4Cy - UN: uQAR2PhjtdvNvbbh4JC4wJdx3SCh2W4xB4 - SKC: SR81M5iqLkRB6PjZgkpNkpz1G7KmY3zceL
mladen00
Legendary
*
Offline Offline

Activity: 2124
Merit: 1013


K-ing®


View Profile
November 30, 2013, 09:48:30 PM
 #266

any news from SKC developer ?

IOTA
Majormax
Legendary
*
Offline Offline

Activity: 2534
Merit: 1129


View Profile WWW
December 01, 2013, 02:17:42 AM
 #267

I would like to buy Skeincoin, if anyone has any for sale. Please message me.
Gunther
Legendary
*
Offline Offline

Activity: 840
Merit: 1000


View Profile
December 03, 2013, 07:41:24 AM
 #268

SKC = dead.
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
December 03, 2013, 10:10:34 PM
 #269

SKC = dead.
Current diff = 5
diff last week = 2
but man people with a working gpu have a crazy advantage
klintay
Legendary
*
Offline Offline

Activity: 1775
Merit: 1032


Value will be measured in sats


View Profile WWW
December 04, 2013, 03:10:35 AM
 #270

SKC = dead.
Current diff = 5
diff last week = 2
but man people with a working gpu have a crazy advantage

maybe he was referring to the developer...
Gunther
Legendary
*
Offline Offline

Activity: 840
Merit: 1000


View Profile
December 04, 2013, 06:07:02 AM
 #271

SKC = dead.
Current diff = 5
diff last week = 2
but man people with a working gpu have a crazy advantage

maybe he was referring to the developer...

Indeed.
mladen00
Legendary
*
Offline Offline

Activity: 2124
Merit: 1013


K-ing®


View Profile
December 04, 2013, 08:09:57 AM
 #272

developer is very quiet

is there some info about SKC? trades?


IOTA
barwizi
Legendary
*
Offline Offline

Activity: 882
Merit: 1000



View Profile
December 04, 2013, 10:19:25 AM
 #273

still buying at 1 LTC per 20k
Majormax
Legendary
*
Offline Offline

Activity: 2534
Merit: 1129


View Profile WWW
December 04, 2013, 11:41:26 AM
 #274

WTB Skeincoin.  Please offer at your price. Payment in BTC or LTC
noob4ever
Newbie
*
Offline Offline

Activity: 59
Merit: 0


View Profile
December 04, 2013, 11:56:55 AM
 #275

Where can download 32bit miner?
AmGfxMarty
Member
**
Offline Offline

Activity: 63
Merit: 10

Hi, I'm Marty.


View Profile
December 06, 2013, 11:36:36 PM
 #276

I have 66 skein I will sell. PM your offer please.
Thanks, Marty
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
December 10, 2013, 11:44:10 PM
 #277

Do you think Skeincoin will hit an exchange?
klintay
Legendary
*
Offline Offline

Activity: 1775
Merit: 1032


Value will be measured in sats


View Profile WWW
December 11, 2013, 12:26:47 AM
 #278

Do you think Skeincoin will hit an exchange?

not at this rate...develop needs to get off his lazy ass or past the project to someone who has passion...i have already sent a message to tell him he is a lazy c**t
crazicat
Newbie
*
Offline Offline

Activity: 21
Merit: 0


View Profile
December 11, 2013, 03:31:38 AM
 #279

Do you think Skeincoin will hit an exchange?

not at this rate...develop needs to get off his lazy ass or past the project to someone who has passion...i have already sent a message to tell him he is a lazy c**t

+1 ! Angry
barwizi
Legendary
*
Offline Offline

Activity: 882
Merit: 1000



View Profile
December 11, 2013, 04:02:51 AM
 #280

keep mining.
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 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 ... 78 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!