Bitcoin Forum
May 14, 2024, 08:52:34 AM *
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 »
  Print  
Author Topic: [XPM] Working on a GPU miner for Primecoin  (Read 102748 times)
spirale
Newbie
*
Offline Offline

Activity: 56
Merit: 0



View Profile
July 26, 2013, 01:45:17 AM
 #241

1 BTC donated. Txid: 8fad5daaef41f5aac9eb01306161a4cef78e180b3c255db094dd60d126b642bc
1715676754
Hero Member
*
Offline Offline

Posts: 1715676754

View Profile Personal Message (Offline)

Ignore
1715676754
Reply with quote  #2

1715676754
Report to moderator
1715676754
Hero Member
*
Offline Offline

Posts: 1715676754

View Profile Personal Message (Offline)

Ignore
1715676754
Reply with quote  #2

1715676754
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715676754
Hero Member
*
Offline Offline

Posts: 1715676754

View Profile Personal Message (Offline)

Ignore
1715676754
Reply with quote  #2

1715676754
Report to moderator
1715676754
Hero Member
*
Offline Offline

Posts: 1715676754

View Profile Personal Message (Offline)

Ignore
1715676754
Reply with quote  #2

1715676754
Report to moderator
1715676754
Hero Member
*
Offline Offline

Posts: 1715676754

View Profile Personal Message (Offline)

Ignore
1715676754
Reply with quote  #2

1715676754
Report to moderator
mineral
Full Member
***
Offline Offline

Activity: 217
Merit: 100



View Profile
July 26, 2013, 10:48:57 AM
 #242

Hi,

A GPU miner for PRimecoin implies to parallelize the 2 execution instances of BN_mod_exp(&r, &a, &e, &n, pctx). Paralleling of sieve would be an improvement, but it is not the central part , as is done in other OpenCL/CUDA primality tests where sieve is done in CPU.

So, it is indicative  when someone open a thread about parelellize a code and reports are about mingw and accesorials and anecdotical affairs with Windows building.

Well, for parallelizing  BN_mod_exp(&r, &a, &e, &n, pctx) this guy should to have rewrotten (at least) BigNum lib for OpenCL ....  

Good luck with the project and people who donated !!

BTC: 1BTGghTiiqz2mQCYP2AiSv5ec5kcvkaJXu
LTC: LfgarrrLJgkZMSUCeScgHatxyfQtiggN9Z
BTG: gTpTt8d9rSejXDm4QX5vrLtPkrXkpwbrDL
Pmalek
Legendary
*
Offline Offline

Activity: 2758
Merit: 7140



View Profile
July 26, 2013, 11:47:38 AM
 #243

What did you just say please?  Is it hard, impossible?

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
Fallout
Member
**
Offline Offline

Activity: 107
Merit: 10


View Profile
July 26, 2013, 11:58:23 AM
 #244

It is hard but not impossible
mikaelh
Sr. Member
****
Offline Offline

Activity: 301
Merit: 250


View Profile
July 26, 2013, 12:11:26 PM
 #245

Hi,

A GPU miner for PRimecoin implies to parallelize the 2 execution instances of BN_mod_exp(&r, &a, &e, &n, pctx). Paralleling of sieve would be an improvement, but it is not the central part , as is done in other OpenCL/CUDA primality tests where sieve is done in CPU.

So, it is indicative  when someone open a thread about parelellize a code and reports are about mingw and accesorials and anecdotical affairs with Windows building.

Well, for parallelizing  BN_mod_exp(&r, &a, &e, &n, pctx) this guy should to have rewrotten (at least) BigNum lib for OpenCL ....  

Good luck with the project and people who donated !!

Yup, if someone manages to use some level of parallelism for mod_exp on a GPU, then that will be a big thing. I'm personally still a bit doubtful whether it can be done efficiently because doing the mod operation requires division. Usually those algorithms involve unpredictable branching and that's going to slow things down on the GPU.
mineral
Full Member
***
Offline Offline

Activity: 217
Merit: 100



View Profile
July 26, 2013, 12:45:10 PM
 #246

Hi,

A GPU miner for PRimecoin implies to parallelize the 2 execution instances of BN_mod_exp(&r, &a, &e, &n, pctx). Paralleling of sieve would be an improvement, but it is not the central part , as is done in other OpenCL/CUDA primality tests where sieve is done in CPU.

So, it is indicative  when someone open a thread about parelellize a code and reports are about mingw and accesorials and anecdotical affairs with Windows building.

Well, for parallelizing  BN_mod_exp(&r, &a, &e, &n, pctx) this guy should to have rewrotten (at least) BigNum lib for OpenCL ....  

Good luck with the project and people who donated !!

Yup, if someone manages to use some level of parallelism for mod_exp on a GPU, then that will be a big thing. I'm personally still a bit doubtful whether it can be done efficiently because doing the mod operation requires division. Usually those algorithms involve unpredictable branching and that's going to slow things down on the GPU.

Then, Which task are you going to send to GPU, only the sieve?

BTC: 1BTGghTiiqz2mQCYP2AiSv5ec5kcvkaJXu
LTC: LfgarrrLJgkZMSUCeScgHatxyfQtiggN9Z
BTG: gTpTt8d9rSejXDm4QX5vrLtPkrXkpwbrDL
mikaelh
Sr. Member
****
Offline Offline

Activity: 301
Merit: 250


View Profile
July 26, 2013, 12:57:45 PM
 #247

Then, Which task are you going to send to GPU, only the sieve?

Well, I do have some ideas how sieving could be implemented efficiently on a GPU. I'm not actively working on it though.
Pmalek
Legendary
*
Offline Offline

Activity: 2758
Merit: 7140



View Profile
July 26, 2013, 02:17:08 PM
 #248

You smart guys should unite with Mtrlt for the good cause  Wink

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
gateway
Hero Member
*****
Offline Offline

Activity: 552
Merit: 500


View Profile
July 26, 2013, 03:53:50 PM
 #249

You smart guys should unite with Mtrlt for the good cause  Wink
+1

Yea he's usually on irc ch #eligius-prime working with a few others or kicking ideas around.  Developers feel free to join and maybe provide some feedback.  Please no is it done questions or you will prob get kicked
usahero
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
July 26, 2013, 03:55:21 PM
 #250

@mtrlt How would you deal with refunds if you were unable to deliver a GPU miner at all?

Donation for GPU miner is a high risk, high return business.   

 No risk, if you donate on the day gpu miner will be released. Which doesn't sound too good for those of us who donated early.
CoinBuzz
Sr. Member
****
Offline Offline

Activity: 490
Merit: 250



View Profile
July 26, 2013, 04:40:22 PM
 #251

can somebody explain to me how a primecoin mining algorithm can be partialized and distributed to core/gpu's ?

Join ASAP: FREE BITCOIN
cryptojournal
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile
July 26, 2013, 07:33:09 PM
 #252

Hey mtrlt,

I think this guy is trying to usurp your identity...
http://miner4world.blogspot.fr/search?updated-max=2013-07-20T15:00:00%2B07:00&max-results=2&start=2&by-date=false

at least the bitcoin address is different...

Sorry if this has been posted already, I didn't read the whole thread...

CJ
usahero
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250


View Profile
July 26, 2013, 07:35:48 PM
 #253

Dirty scammer! Smiley
ReCat
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250



View Profile WWW
July 26, 2013, 09:59:48 PM
 #254

https://blockchain.info/address/1F3pakbmWsoWjsAytCBuMJCyZb1W5s3iX9

Well, at least he hasn't received much BTC. Tongue The OP should probably put a warning for this on the first post, though. THIS is the only place he's posting on. Right?

BTC: 1recatirpHBjR9sxgabB3RDtM6TgntYUW
Hold onto what you love with all your might, Because you can never know when - Oh. What you love is now gone.
igysa
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
July 27, 2013, 08:06:29 AM
 #255

this is all very fishy  Undecided

BTC 1Hm2qSb1XZ8iAuogEqCBod17KQPHepjwF
LTC LWu3fAQuw36UVm6vASQgk6yQjgLgKmeWPD
YAC YKVQi33Jv7UaBtStgTDiCB2uL6vsYdX7be
Lauda
Legendary
*
Offline Offline

Activity: 2674
Merit: 2965


Terminated.


View Profile WWW
July 27, 2013, 10:17:32 AM
 #256

this is all very fishy  Undecided
No chill out for the moment  Cool

"The Times 03/Jan/2009 Chancellor on brink of second bailout for banks"
😼 Bitcoin Core (onion)
hasle2
Full Member
***
Offline Offline

Activity: 122
Merit: 100


View Profile
July 27, 2013, 12:21:30 PM
 #257

this is all very fishy  Undecided
No chill out for the moment  Cool

I agree, I'm not worried about the extra time it is taking. Primecoin uses a new algorithm and it will take time to figure out how to get it to run efficiently on a GPU. The original deadline was unrealistic. It's not possible to predict ahead of time how much effort it will take to code something genuinely new.
bidji29
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
July 27, 2013, 12:47:31 PM
 #258

It's coming

http://www.freebieservers.com/  100% FREE GAME SERVERS
LZ
Legendary
*
Offline Offline

Activity: 1722
Merit: 1072


P2P Cryptocurrency


View Profile
July 27, 2013, 06:10:31 PM
 #259

1F3pakbmWsoWjsAytCBuMJCyZb1W5s3iX9
1F3pakbmWsoWjsAytCBuMJCyZb1W5s3iX9

Gotcha! Smiley

My OpenPGP fingerprint: 5099EB8C0F2E68C63B4ECBB9A9D0993E04143362
itod
Legendary
*
Offline Offline

Activity: 1974
Merit: 1076


^ Will code for Bitcoins


View Profile
July 27, 2013, 06:40:57 PM
 #260

1F3pakbmWsoWjsAytCBuMJCyZb1W5s3iX9
1F3pakbmWsoWjsAytCBuMJCyZb1W5s3iX9

Gotcha! Smiley

Yes, that's the scamer, good catch:
https://bitcointalk.org/index.php?action=profile;u=84753
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 »
  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!