81
|
Local / Nederlands (Dutch) / Re: Bitcoin Dinsdag - PIZZA!
|
on: November 09, 2013, 05:20:04 PM
|
Net ook iets besteld bij thuisbezorgd.nl en betaald met bitcoins. Ging snel en probleemloos. Enige nadeel is dat de prijs van de maaltijd achteraf steeds hoger wordt 
|
|
|
86
|
Bitcoin / Hardware / Re: [ANN] Bi•Fury | 5+ GH/s USB Miner [FASTEST USB MINER IN THE WORLD]
|
on: October 13, 2013, 06:22:34 AM
|
Are these using 2.5 watts type of USB or new USB 3 or 4 or whatever that can crank way more power at them?
The hardware has different solder jumper options. They can be made for 2.5W level, and I've gotten close to 4 GH/sec that way. But I expect most people would prefer to use a bit more power, and stick them in a powered hub. The 2.5W/4GH setting can still be useful though. It's a nice introduction to bitcoins and bitcoin mining that doesn't require any additional investments or setups.
|
|
|
88
|
Bitcoin / Mining support / Re: [GUIDE] BitFury Miner Support/Tuning
|
on: October 02, 2013, 06:21:07 AM
|
When you reverse a board in the M-BOARD connector, it doesn't swap GND with 12V wires, but it swaps the GND/12V with the 1.8V SPI section on the other side, and it puts the 12V straight into the chips. Especially the first and last chip in the chain will get the full effect, and are the most likely to fry. The power regulator may still be okay. The fuse is probably still good too.
|
|
|
90
|
Bitcoin / Mining software (miners) / Re: Unified miners communication protocol
|
on: September 30, 2013, 09:17:10 AM
|
I'll check out the protocol in more detail later, but one thing I'll ask right away... can you add the exact format for the work string and nonce/timestamp, with a few examples so people can test their implementation by feeding the same work and checking the results.
|
|
|
91
|
Bitcoin / Mining software (miners) / Re: Unified miners communication protocol
|
on: September 29, 2013, 06:20:04 PM
|
Depends at what level you're working. If your miners are doing coinbase modifications, they could use a trick like stratum to share work.
That's true, but then they really use the exact same information, so a broadcast actually makes sense. KNK was describing a scenario where information is broadcast, but the miners only pick what's relevant to them. That's very much like your own directed traffic implementation layered over multicast.
|
|
|
97
|
Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE!
|
on: September 27, 2013, 03:41:19 AM
|
I am looking at the code now, but the number of rows and colums in your table is 35*20=700, in the code it seems to use 24*24=576 instead of 765 cores ... shouldn't it be 15*51 instead?
In my table, there are 36 rows and 21 columns (0 also counts), and 36*21=756. The code does % 24, so you'd expect 24 columns, but colums 5-7 are skipped, so only 21 left.
|
|
|
98
|
Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE!
|
on: September 26, 2013, 07:33:35 PM
|
Can you explain a bit more or maybe an example. Thanks
Check the chainminer sources, fix_nonce() function. Also, the different fixups aren't distributed equally. The -0x00800000 fixup is needed half the time, no fixup a third, and - 0x00400000 in the rest of the cases. So, if you try them in that order, you'll minimize the number of hashes needed in the software. Or use the method that chainminer uses to try to guess the correct fixup from the core (doesn't always work: some cores have two different possible fixups)
|
|
|
99
|
Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE!
|
on: September 26, 2013, 07:32:21 PM
|
I did a test on the S-HASH board. For one chip, I marked all cores that returned a valid nonce.  The same test on another chip shows three missing rows:  The test has not run for very long, so some of the unmarked cores may still get a hit later. Of 16 chips total, 10 have found nonces in all cores. The other 6 all have one or more missing rows at the top.
|
|
|
100
|
Bitcoin / Hardware / Re: [ANN] Bitfury is looking for alpha-testers of first chips! FREE MONEY HERE!
|
on: September 26, 2013, 07:18:56 PM
|
The last one is the same as the second, so its expected that it won't be reached. It seems the chip can get bits 23 and/or 24 wrong ... and engineering chips probably 26 too I wonder is it an error from the core to the shift register or only when read from the register i.e. SPI communication problem
There's a clear pattern when you map the X/Y coordinates from the core to the variant, so it's not a communication problem, but a systematic issue.
|
|
|
|