Bitcoin Forum
May 29, 2024, 09:54:04 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 [86] 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 ... 164 »
1701  Economy / Computer hardware / Re: WTS - 2TB Hard Drives, Creative x-Fi, RAID card, Crysis 3 / Bioshock Coupons on: April 17, 2013, 05:25:10 AM
I apologize, it was never mentioned to me by UPS that they would charge a 'fee' for getting it across the border when shipping the package, all that was told to me was the rate to ship the box. This is my first time shipping to Canada, now I know too I guess.

Yeah, it's a big problem here.  My roommate bought some motorcycle parts online from the US for $70 and UPS charged him $120 in non-specific "customs brokerage fees".  FedEx charges these fees here, there's basically a shipping cartel up here as far as getting stuff across the border is concerned.  The only company without charges is USPS/Canada Post.
1702  Economy / Computer hardware / Re: Cheap P67 and X58 motherboards| Goes to highest bidder| Offer Up on: April 16, 2013, 11:33:07 PM
$40 + shipping to Canada for the X58 board.
1703  Economy / Computer hardware / Re: WTS - 2TB Hard Drives, Creative x-Fi, RAID card, Crysis 3 / Bioshock Coupons on: April 16, 2013, 11:09:49 PM
Got the drives in the mail today... unfortunately didn't have as good luck as the other customer.
1) UPS charged me an extra $45 for brokerage fees at the border (should have mentioned to never ship to Canada with UPS, was partly my fault.  For future reference only use USPS to Canada).
2) Drives were in really bad shape, anti-static bags are nearly torn and heavily perforated from being banged around so much.  One of the PCBs on one of the WD drives is actually scratched deeply.  It looks like they were shipped with air-filled plastic baggies, but these all popped from rough handling by UPS which let the drives bounce around like crazy in the foam peanuts that filled the remaining half of the box.

I will test them out next week sometime, hopefully they're okay.
1704  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin FPGA Production - Serious Inquiry on: April 16, 2013, 03:01:09 PM

Total block ram on the whole chip for a spartan6 lx 150 (most expensive chip) is 4824 Kb.  http://www.xilinx.com/products/silicon-devices/fpga/spartan-6/lx.htm

Yes, that's what I said.  (4.9 million == 4800 K)    (the exact number is 4939776 bits).


Quote
Memory bandwidth for the block RAM is about 10 gb/s while GPU internal bus is usually around 250 gb/s on higher end cards.

I'm not following your arithmetic.  Are you citing some document somewhere for either of those numbers?  If so, can you paste a link?  

From my previous post, an FPGA memory with 1024-bit width at (lets downgrade it to a more modest 200MHz) is 200 billion bits per second or 25GB / s.
This would be per-memory-instance (or, per hypothetical scrypt-core).



The total RAM per block is 18KB. Each block has a 72-bit width. I don't really know where you're pulling your numbers from. Even if you calculate in parallel, 128/18 = 8 block RAM units required, with 72-bit widths each --> not 1024 bit width either.
1705  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin FPGA Production - Serious Inquiry on: April 16, 2013, 02:21:42 PM

The problem is that the on-device block RAM is insanely slow compared to GPU ram (about 10 times slower for most FPGAs).  The per slice block RAM for most FPGAs is also less than 128 KB (more like 8 KB in typical cases).


Well, I'm not as familiar with GPU, but I doubt it is 10 times faster.  And I believe you have been misinformed regarding the capacity as well.

The Spartan-6 LX 150 used on many of the boards already built has 4.9 million bits of memory.  The memory in -3 speed grade part can run at up to 320MHz
Newer but similar priced Artix-7 have 13.4 million bits, with up to 509MHz in -3 grade parts.

As it relates to scrypt and it's 128KB scratchpad, the core loop accesses memory sequentially in 1024-bit widths.  Within an FPGA, you can have access to all 1024 bits in a single clock.  While you may not be able to achieve that performance point due to other issues,  1024 bits @ 320/500MHz is nothing to sneeze at.



Total block ram on the whole chip for a spartan6 lx 150 (most expensive chip) is 4824 Kb.  http://www.xilinx.com/products/silicon-devices/fpga/spartan-6/lx.htm

Memory bandwidth for the block RAM is about 30-60 gb/s (your numbers above) while GPU internal bus is usually around 250 gb/s on higher end cards.
1706  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin FPGA Production - Serious Inquiry on: April 16, 2013, 05:30:34 AM
Quote
Anyone remember the value of BTC when FPGA's first appeared off hand?
I started open development of FPGA mining designs in May 2011; BTC was about $5USD at the time.  The first commercial FPGA mining products first appeared on August 18th, 2011, and BTC was about $10USD then.

Food for thought: scrypt as it is used in litecoin is not a memory-hard algorithm.  Rather, it's an algorithm with a space-time trade-off skewed towards using more space, given the current relative costs of memory fetches versus computations.  You can implement litecoin's scrypt with only a little over 2 kilobits of memory, but it runs ~512 times slower.

It's likely that a performant implementation will use a sparse LUT to cut down on fetches.  For example, with a 512 element LUT (instead of 1024), the algorithm performs 50% less fetches, and requires only one extra salsa round 50% of the time.

I think a simplistic port of the existing scrypt.c from the litecoin source code would just use 128KB of block RAM, which is readily available on most of the FPGA's already in circulation.   I can see how it might increase the area/cost of an ASIC, but for an FPGA  it's a non-issue.

It's not clear why people are even discussing external memory requirements for this algorithm and getting ready to write-off their purchased bitcoin boards.

Overall, it sounds like we should expect an FPGA implementation of litecoin to perform at (1/1024) the rate of equivalent bitcoin hash.  And this is due to the sequential loops, and not the "memory-hard" aspect of the algorithm.


The problem is that the on-device block RAM is insanely slow compared to GPU ram (about 10 times slower for most FPGAs).  The per slice block RAM for most FPGAs is also less than 128 KB (more like 8 KB in typical cases).

The tradeoff described above works (reducing the memory size a lot and just recreating the entire lookup table more often), but the performance decrease is usually so great that it's problematic.  If you can make the algorithm run in parallel better I think it may be possible to get into the high double digit KH/s or perhaps hundreds with an FPGA.  We'll have to see what LaSeek and friends come up with.
1707  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoiners: Idea to make Litecoin importance skyrocket in Bitcoin ecosystem on: April 16, 2013, 03:44:16 AM
I am aware of those facts.

However, I believe you missed the part where I explicitly stated the qualifier "malicious".

Detecting a reorg is trivial. Determining whether it is an okay reorg or a "bad" reorg does not seem so.

There's nothing suspicious about a chain 7 blocks long suddenly appearing on the network after an hour, with nobody else reporting it until then?  And in the meantime blocks are being relayed every ten minutes by other miners?  Really? Roll Eyes
1708  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoiners: Idea to make Litecoin importance skyrocket in Bitcoin ecosystem on: April 15, 2013, 08:54:47 PM
a) it would be exceedingly hard to properly develop detection algorithms for "malicious reorg" detector

Reorg shows up in the debug output immediately in the client

It's absurdly easy to detect (just look for a chain that's been reliably mined for 6 blocks/1 h and then at 1 h the 7 block fork is detected --> report this to user via pop up)

The likelihood of two totally different chains size max of 6 MB (6 blocks) existing on the network at the same time and both being reported to a vast number of different nodes with neither group of nodes interacting is really, really unlikely
1709  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin build for noobs: 3x 7950s (1.8 MH/s) in a $10 crate case on: April 15, 2013, 07:23:41 PM
Not sure, this happened with cgminer to me using 3x 7970s.  I'm replacing the board to see if that's the problem.
1710  Alternate cryptocurrencies / Mining (Altcoins) / Re: GUIMiner-scrypt: A GUIMiner fork for mining scrypt chains on: April 15, 2013, 07:22:47 PM
this is normal for 7xxx cards on 13.1, use beta driver to get rid of blocks
1711  Alternate cryptocurrencies / Mining (Altcoins) / Re: GUIMiner-scrypt: A GUIMiner fork for mining scrypt chains on: April 15, 2013, 06:48:42 PM
Not sure, never tried it

PPC is not scrypt, you have to run normal guiminer
1712  Other / CPU/GPU Bitcoin mining hardware / Re: 7950 High Temps on: April 15, 2013, 06:15:17 PM
XFX fans are garbage, the cards run hot and they die within 3 months (have 2 cards, all four fans died)

Easy solution is to buy 80mm fans and strap them on with cable ties
http://www.newegg.com/Product/Product.aspx?Item=N82E16835705038
or
http://www.newegg.com/Product/Product.aspx?Item=N82E16835129028

For this retarded one fan edition just rip off the casing off the top and strap 2-3 fans on it

I recommend ball bearing or fluid bearing fans because of lower failure rate
1713  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin build for noobs: 3x 7950s (1.8 MH/s) in a $10 crate case on: April 15, 2013, 05:41:51 PM
both XFX and gigabyte cards, brand doesn't seem to make any difference as both hash at exactly same rate
1714  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin build for noobs: 3x 7950s (1.8 MH/s) in a $10 crate case on: April 15, 2013, 05:35:45 PM
If it's stratum you must use the mining proxy (see sig threads)
1715  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin build for noobs: 3x 7950s (1.8 MH/s) in a $10 crate case on: April 15, 2013, 05:06:21 PM
You have to imagine that many of these stories about higher than normal hash rates are just that - that is how message boards are, there are always those Keyboard commandos that can do the most amazing feats.  
Balthazar:


Me:



Posted my reaper kernel here: https://bitcointalk.org/index.php?topic=117221.msg1834570#msg1834570
1716  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin reaches 10 Gigahashes (10 Terahashes in Bitcoin terms) ? on: April 15, 2013, 06:15:14 AM
No, that's correct, 10 GH/s is about 10 TH/s BTC in GPU terms.  The migration of miners to the Litecoin network has been steady as ASICs are introduced.
1717  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoiners: Idea to make Litecoin importance skyrocket in Bitcoin ecosystem on: April 15, 2013, 06:14:13 AM
That's true.
1718  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoiners: Idea to make Litecoin importance skyrocket in Bitcoin ecosystem on: April 15, 2013, 06:10:19 AM
You neglect the part of the scheme above that's moronic because you spent tens of millions of dollars to attack a chain with less than that much immediate liquidity on any exchange.  If you were to spend tens of millions of dollars making lots of ASICs, why not just mine with them like everyone who has made ASICs so far is doing?

edit:
For instance, your net profit per day right now mining Bitcoins with 80 TH/s (enough to attack the network) is $530,445.73 (after power given a mildly inefficient ASIC).  Why would anyone in their right mind perform a 51% attack when they're making that much per day off their hardware?
1719  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoiners: Idea to make Litecoin importance skyrocket in Bitcoin ecosystem on: April 15, 2013, 05:35:28 AM
^^  That wasn't my interpretation of it...

If I'm understanding correctly, the mechanism described works like this:
1) Attacker with 51% of hash rate begins mining a fork 7 blocks long in secret while submitting his coins to an exchange (or where ever)
2) The attacker's coins get 6 confirmations and he dumps them for something valuable at the exchange, runs off with it
3) Attacker now dumps his 7 block fork onto the network.  Normally, because it's longer than 6 blocks, the attacker would get his coins back because he would invalidate all 6 previous honestly mined blocks because the network can not tell which blocks are valid or are not valid and just accepts whatever chain is longest,
HOWEVER,
The Litecoin chain for the last hour has included block hashes for the block headers of the previous honest 6 blocks for Bitcoin.  The Bitcoin clients could be alerted to this (and the fact that a reorg of length 6, an exceedingly unlikely event, has just taken place), look at the Litecoin chain where the hashes of the honest blocks' headers are stored, and reject the fork that suddenly appeared on the network out of nowhere because they know the hashes on the Litecoin chain reveal the honest chain (the one that reported blocks as soon as it found them rather than hiding them).

There are some issues with this.  
1) Inevitably bitcoin orphan blocks will appear in the LTC chain.
2) Miners on the Litecoin network can make up any block hash they want and submit it, since there's no easy way of telling whether the hash they give actually exists over some portion of bitcoin network.
3) Because of 2), forking the BTC chain may be made easier in some instances if the BTC network actually pays attention to what the LTC network is saying and the LTC mining nodes are dishonest.

What's being discussed here has nothing really to do with merged mining, it's just a way to lend temporal stability to the Bitcoin network via an independent network (Litecoin)
1720  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin build for noobs: 3x 7950s (1.8 MH/s) in a $10 crate case on: April 14, 2013, 11:50:26 PM
Also.... why are you tryingto stay out here ? I really enjoy your posts. Please, also give us an update about your VERY interesting MC2 concept ! Smiley

I will lose my job (and $25,000 for the remainder of the year) if I don't pass my exams that are coming up this week and the following week, so I need to complete them first

MC2 update coming soon, tons of things will be changed (new PoS strategy, more optimized hashing algorithm) based on the feedback I have received.
Pages: « 1 ... 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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 [86] 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 ... 164 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!