Bitcoin Forum
March 19, 2024, 08:25:31 AM *
News: Latest Bitcoin Core release: 26.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 ... 1154 »
  Print  
Author Topic: [4+ EH] Slush Pool (slushpool.com); Overt AsicBoost; World First Mining Pool  (Read 4381779 times)
m0mchil
Full Member
***
Offline Offline

Activity: 171
Merit: 127


View Profile
December 08, 2010, 09:35:01 AM
 #41

I will change my miner to check lower targets. Keep in mind that GPUs are perhaps 30x+ faster than CPUs. Are you going to adjust the target to control the number of results you receive from specific client? Because with target suitable for getting 1 result per minute from CPU, you may receive 1 result per SECOND from a GPU.

Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
December 08, 2010, 10:02:03 AM
 #42

It's too slow to do a full 256-bit comparison for each hash generated.  Taking the lead from mainline bitcoin, miners tend to "cheat" and simply look for a certain number of zero bits in the area that, when byte-swapped, holds the high-order bits of a 256-bit number.  My cpuminer stops if the top 32 bits are all zero.  Mainline bitcoin stops scanning for hashes if 16 bits are zero:

I'm glad I understood your code well Smiley. I agree full check is too expensive. But what about compromise - check so many bits for zeros how many zeros is in target sent by getwork? Simply do not have hardcoded '32 bits' inside miner... This should be quite simple, fast and good enough!

By the way, I'm using modified version of your scanhash_c for checking proof-of-work in my server. My reward from first block found by cooperative mining is yours.

slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
December 08, 2010, 10:11:52 AM
 #43

I will change my miner to check lower targets.

Glad to read that!

Quote
Keep in mind that GPUs are perhaps 30x+ faster than CPUs. Are you going to adjust the target to control the number of results you receive from specific client? Because with target suitable for getting 1 result per minute from CPU, you may receive 1 result per SECOND from a GPU.

You are right. Currently I have same target for all workers, but dynamic target depending on worker performance is in my TODO. I'm testing on Nvidia ION (~2000khash/s) and HD 5970 (~560mhash/s) and think target near 8 zeros should be fine for beginning. 8 zeros (32bit) gives one blocks every ~30 minutes on Nvidia and every tens seconds on Radeon, which is yet OK.

slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
December 16, 2010, 12:02:15 AM
 #44

Hi all, I just started my own bitcoin mining server on http://mining.bitcoin.cz . Server was heavily tested on Testnet, but it is still beta stage software. But there is already ~600000khash/s of power and more will come tomorrow.

Server is based on principle which is discussed above and which satoshi accepted as possible. Server works with all CPU/GPU miners following standard getwork() interface - jgarzik's CPU miner, m0mchil's and Diablo's GPU miners. All needed information are on site homepage.

Sending rewards - when block found, 50BTCs are written to server's wallet, not on miner's wallets. Every miner can specify own 'sending treshold', which is minimum amount to send to his wallet. This should help with sending 0.0001 BTCs and so on. Currently the cron script for sending is disabled, I will process few first payments manually - just to be sure that everything is working fine.

If you are interested, please open account, enter wallet address, register own workers and start mining! Also report all troubles, I will work on them ASAP! Please be patient with short server outages in this stage. In the most cases, miners will solve that by restarting itself.

BitLex
Hero Member
*****
Offline Offline

Activity: 532
Merit: 505


View Profile
December 16, 2010, 01:28:10 AM
 #45

works nicely with jgarzik's CPU (only tested 0.2.1) and m0mchils GPU miner,
it seems so at least, workers share-count shows what miners tell.

hashcount is pretty much the same as on local getwork-servers, now we just need to solve some blocks to see if it pays.

Cdecker
Hero Member
*****
Offline Offline

Activity: 489
Merit: 504



View Profile WWW
December 16, 2010, 01:32:50 AM
 #46

These aren't using the bitcoinr miners are they? It's using the standard JSON API, right?

Want to see what developers are chatting about? http://bitcoinstats.com/irc/bitcoin-dev/logs/
Bitcoin-OTC Rating
slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
December 16, 2010, 01:35:30 AM
 #47

now we just need to solve some blocks to see if it pays.

If m0mchil provide power which he promised me today, we will see it very soon :-).

slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
December 16, 2010, 01:36:50 AM
 #48

These aren't using the bitcoinr miners are they? It's using the standard JSON API, right?

Right, internally it works with standard bitcoin client.

slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
December 16, 2010, 03:39:06 AM
 #49

Oh, found a bug. Please do not register logins with dots. As dots are delimiters between login and worker name, login with dots does not work correctly.

I will fix it tomorrow (probably by prohibiting dots in worker names and splitting 'login.worker' by the most right dot). Thanks!

da2ce7
Legendary
*
Offline Offline

Activity: 1222
Merit: 1016


Live and Let Live


View Profile
December 16, 2010, 03:50:20 AM
 #50

ok I'll help you guys out for a little while.  Roll Eyes

One off NP-Hard.
da2ce7
Legendary
*
Offline Offline

Activity: 1222
Merit: 1016


Live and Let Live


View Profile
December 16, 2010, 03:51:24 AM
 #51

ok I'll help you guys out for a little while.  Roll Eyes

the blocks are two easy!  Cheesy  They need to be about twice as hard.

One off NP-Hard.
bober182
Full Member
***
Offline Offline

Activity: 308
Merit: 100


View Profile
December 16, 2010, 03:58:35 AM
 #52

How does rounding work does it get carried over.
Can you speak with the other pooled mining server so we can all work together.

slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
December 16, 2010, 04:03:14 AM
 #53

ok I'll help you guys out for a little while.  Roll Eyes

the blocks are two easy!  Cheesy  They need to be about twice as hard.

You are right, dynamic targets are on the way. Don't forget it is beta. Current target is compromise for low-end and high-end machines. By the way, normal CPUs (say 1000khash/s) will compute current target about half an hour Wink.

slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
December 16, 2010, 04:07:54 AM
 #54

How does rounding work does it get carried over.

All financial computation are made multiplied by 10^8, so with maximal precision. If there will be still some rests after dividing 50BTCs, the rest is added to random worker which participated in mining. But don't forget we are talking about 'rests' on eighth decimal place...

Quote
Can you speak with the other pooled mining server so we can all work together.

How?

bober182
Full Member
***
Offline Offline

Activity: 308
Merit: 100


View Profile
December 16, 2010, 04:09:46 AM
 #55

Dunno because there is the doublec server using puddingcups code would be cool to add that extra 250M hash

slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
December 16, 2010, 04:15:55 AM
 #56

Dunno because there is the doublec server using puddingcups code would be cool to add that extra 250M hash

AFAIK they use special protocol and different algo for counting shares. But they can change miners and connect us Smiley. But I'm not affraid that there will not be enough power. I have to optimize code very quickly to be ready for many fast GPUs.

doublec
Legendary
*
Offline Offline

Activity: 1078
Merit: 1005


View Profile
December 16, 2010, 04:36:15 AM
 #57

Is the source for your cooperative miner available?
da2ce7
Legendary
*
Offline Offline

Activity: 1222
Merit: 1016


Live and Let Live


View Profile
December 16, 2010, 04:36:32 AM
 #58

I'm regularly getting the error on the m0mchil's GPU miner:  "IOError: [Errno socket error] [Errno 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond"

One off NP-Hard.
slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
December 16, 2010, 04:40:33 AM
 #59

Is the source for your cooperative miner available?

Not yet. It need cleanup and optimization, which I'm planning. But I expect that I will open codes at least for security review in future.

slush (OP)
Legendary
*
Offline Offline

Activity: 1386
Merit: 1097



View Profile WWW
December 16, 2010, 04:41:57 AM
 #60

I'm regularly getting the error on the m0mchil's GPU miner:  "IOError: [Errno socket error] [Errno 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond"

Interesting. I have running m0mchil's here too and have no one error... Which is your ping to mining.bitcoin.cz? Server is located in London.

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 ... 1154 »
  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!