Bitcoin Forum
May 11, 2024, 07:37:41 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 »
1001  Bitcoin / Hardware / Re: Liquid Synergy Designs Inc. -ASIC mining hardware on: August 29, 2013, 12:14:39 AM
Agree with everyone agreeing on refunds, since Yifu is offering this it is obviously a good choice for all involved to take advantage of it,

What makes you think he'll actually refund anything?

Yifu has shown that he is a bully. He mocks and attacks people constantly in his messages, but then suddenly starts to communicate a little and hint at refunds when Zifur threatens FBI scale legal action over $15M.

Bullies back down if you confront them.

Steamboat should be friendly but firm with him, give him a choice:
a) Refunds batches xx, xx, xx by Sept 1. or
b) We (Zefir and I and other batch owners) will contact the FBI division the just put pirate in jail, and work with them to go after you to the full extent of the law.
1002  Bitcoin / Hardware / Re: Liquid Synergy Designs Inc. -ASIC mining hardware on: August 28, 2013, 11:28:52 PM
Steamboat,

Yifu's sudden reappearance and comments point to the fact that it is slowly dawning on Yifu that if Zefir moves ahead with legal action, he is in significant trouble. The FBI took pirate down and will easily take Yifu down over this $15M "business".

This shows he only responds to pressure at this point. I strongly recommend you join Zefir and take proactive action to either get a better deal than late no-ROI chips, or a full refund. Without pressure he will not do anything for us and we are left closer and closer to a full loss.

I understand the hesitation and desire to hold back so that he does not put you on a 'black list' of last to deliver, but at this point holding back just let's him screw you more and more.
1003  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: August 28, 2013, 04:25:38 PM
I saw a website the other day (forgot the address, sorry) that just keeps a running statistic for how much it would cost to launch a 51% attack on bitcoin via hardware manufacturing. Right now it was something like $350m. That seems like a lot (depending on how you look at it) but if bitcoin was to gain the global acceptance that we all hope it will someday, it's not a lot at all. There is a big incentive to be the "federal reserve" of bitcoin, and a government entity might be willing to shell out that kind of money to do it.

$350M to attack is a large, but as you point out a very easy amount for motivated entities. Heck the FED prints $85B per month and no one bats an eye.

Another issue is the amount of electricity needed to sustain the network. If you assume that mining tends to increase until the value of the coins generated equals the electricity cost, then at today's market cap of $1.35B you need $422K in electricity per day.

The issue is this electricity burn scales linearly with bitcoin's total market cap. If the market cap goes up 100x to $135B (still not a lot for a currency), then you need $42.2M to sustain the network. At some point this will either constrain the price or make people legitimately question some core concepts around bitcoin. Burning $50M or $500M in electricity per day is massive waste of resources, another mechanism will be needed.
1004  Bitcoin / Hardware / Re: Liquid Synergy Designs Inc. -ASIC mining hardware on: August 23, 2013, 09:39:51 PM
Hi Steamboat,

I hate to be the one to ask this, but think it is important to understand given the lack of group buy shipments so far (despite Yifu's recent promises.)

In the event that Yifu either: a) does not ship the chip batches or b) ships the chip batches so late that it does not make any remote economical sense to mine with K16s (for example difficulty is already 1000M), then what are the options for those who purchased assembly services?

Obviously chip buyers own the full loss on the chip side, but for assembly costs it seems some cost recovery should be possible (e.g. assembly services not performed, resale of components purchased, etc).

Have you started to consider this, if so what is the situation?

I do not mean to start a flame war or mess here, but not receiving chips at all or in time is a legitimate possibility now, so I think it would help group buy participants to understand what happens in that case.

Thanks,
1005  Bitcoin / Hardware / Re: CoinTerra announces its first ASIC - Hash-Rate greater than 500 GH/s on: August 21, 2013, 08:06:18 PM
Price competition has not only hit, it's going to scare off other competitors. The value of hardware is going to crash so quickly after september that it's likely that many people formerly planning to startup an ASIC venture have now tossed those plans entirely, too much competition. And now people are worried that Nov/Dec asics might not ROI at all.

Mining should always return to the point where the cost of electricity is just under the cost of mining bitcoin, long term.

If I were an ASIC company wanting to stay in this biz long term rather than going for the homerun, facing all these fence-swingers right now, I'd be making incredibly high efficiency ASICs, air cooled, and plan to sell them for a slight markup and make up the difference on volume. A 10gh USB stick for $20 would be a market winner, even as the large asics begin dying like flies at the end of this year.

The ASIC vendor that first does this with stable supply will be the one that survives. We now have multiple 28nm designs coming out that are probably close to the most optimal design, with only marginal improvements going forward.

Once an ASIC vendor has sunk the NRE costs and shipped 1 unit, each additional unit is quite cheap to produce. In the end it will be a race to the bottom price wise for ASIC vendors trying to recoup their NRE funds, or maximize profit. Those that are paying a price premium today for hardware will see that they paid 10x what those units cost 6 months later.

In the end it will settle down similarly to the FPGA era, where the hashrate stabilized for 1 year and individuals could buy new hardware expecting a 2 year ROI in a flat BTC environment (with bonus profitability during upward price movements).
1006  Bitcoin / Hardware / Re: Goliath Miner on: August 21, 2013, 06:14:56 PM
Here is one portion of scrypt core:

for (i = 0; i < 1024; i += 2)
{
      memcpy(&V[i * 32], X, 128);

      salsa20_8(&X[0], &X[16]);
      salsa20_8(&X[16], &X[0]);

      memcpy(&V[(i + 1) * 32], X, 128);

      salsa20_8(&X[0], &X[16]);
      salsa20_8(&X[16], &X[0]);
   }

As you can see, you have to memcopy 128x8bit = 1024 bit. If you have those 64 bit rambusses you will need 16 of them to make this operation work in one cycle. This has to be done 2 times per loop, looping 1024 times (in full scrypt algorithm). You cannot hard-unroll this loop as you can with SHA256. You see, even if you had rambusses of 1024 bit, you need at least 2048 ram operations per scrypt. Assume your hardware runs at 500MHz. Divide this by 2048. Even then you cannot get higher rates than 250 kh/s. (...and you will never see an FPGA with 1024 bit rambusses)

So essentially you either need 2Mb/sec bandwidth per hash, or ~128KB on chip memory per hashing core. This means that an FPGA with 2 Gb/sec total memory and perfect pipelining would only achieve 1kHash/sec. OK the difficulty is clear, thanks.

This also means a GPU card achieving ~250kHash/sec has over 500Gb/sec of usable memory bandwidth, that is very impressive.

It also looks like the scrypt parameters litecoin chooses are optimized to take full advantage of common high-end GPU characteristics and no more, with a balanced ratio between GPU cores to B/W per core. If litecoin selected slightly larger parameters it seem likely GPUs that would be much less efficient and not be able to utilize all their available cores, but as it GPU bandwidth is just able to feed all the GPU cores...


1007  Bitcoin / Hardware / Re: Liquid Synergy Designs Inc. -ASIC mining hardware on: August 20, 2013, 03:59:26 PM
Just in case anyone didn't see the latest update from BitSyncom, via their website:

"chips have arrived via other routes as previously announced, we are shipping them out at the rate of 40-50k on a daily basis at the moment, in addition to the ~150k or so that went out, another 40k was shipped today. There is multiple channel which the chips are arriving from various packaging facility to minimize downtime. Please bare this in mind: while we had backup/multiple packaging companies and various delivery routes, things still will go wrong. There is also testing that must be done, then they can split, packed and sent to the EZP coupled with their CN-22 and be on their way. We will provide more update as they come. In addition, the trade-in and refunds are being processed."

Meh.

He should go to the group buy thread that lists all the group buy orders together in one place, and publicly state which ones are out the door and which are shipping soon. Otherwise this is all garbage.
1008  Bitcoin / Hardware / Re: Goliath Miner on: August 20, 2013, 12:28:33 AM
Yes, there was a significant increase of hash rate for FPGAs in SHA256, but this is an effect of the possibility to fully unroll the SHA256 core. It then goes one hash per clock. MHz = MHash/s

This is algorithmically impossible for scrypt as this algorithm was specially designed to be resistant against that. In most linear algorithms you have two possibilities: Get a speed up with the need of more ressources, or save ressources but achieve a lower computation rate. If one side decreases, the other one increases and vice versa. Not so for scrypt. Both sides increase nearly equally.

Here you can see a scrypt demonstration on FPGA with hashrates ~ 2kh/s. (You need to be very experienced to make it twice that speed!):

https://github.com/kramble/FPGA-Litecoin-Miner

Thank you hf_developer, this was very helpful. I was not aware of this effort and look forward to reading and understanding the code better.

The design only used the on-chip FPGA RAM of an LX150, which is fairly limited. With many FPGAs you can have multiple 64-bit external memory ports that all run at full speed, for example 4 ports * 64bits/port * 200MHz optimized design yields 6.4 GBytes/sec of memory bandwidth.

Even a basic LX150 includes integrated Memory Controller blocks for DDR1-DRR3 memories at up to 12.8 Gb/s peak bandwidth (from spec sheet). This chip may or may not be optimal for scrypt, other chips offer higher max bandwidth. I think the main point is memory bandwidth shouldn't be a bottle neck if done right.
1009  Bitcoin / Hardware / Re: Goliath Miner on: August 19, 2013, 11:10:27 PM
There are Litecoin ASICs already available on the market, no need to develop with FPGAs. They're called GPUs. Contains up to 1600 processors each, every processor has its own memory. Hashrates up to 800kh/s, you will never get a performance like that with FPGAs. Scrypt is not a question of how much memory you have, but more on how much memory portions you can access independently in parallel. Already available scrypt implementations on FPGAs have shown that hash rates of 4 kh/s per core can be achieved, 6-8 fitting into one FPGA, consuming 30W. Even if you increase throughput by factor 5 (....this will not happen), it can't compete GPUs.

OK, if people that have already looked at this think the above is best you can get with FPGAs for scrypt, then there is no need to pursue it. Do you have any links pointing to the above results / findings for FPGA development?

However I find this result surprising and am not sure that I fully believe it. For SHA256 bitcion hashing, FPGAs were competitive with with 1600 core GPUs on a Watt/MHash ratio and close enough on a $/MHash ratio. This is why many miners converted from 1600 core GPUs to FPGA clusters in 2012. Remember the initial FPGA designs only offered <5Mhash per FPGA, but motivated people later brought that up to 200MHash per FPGA.

Fully agree that the # of memory ports that can be independently accessed in parallel is most important for an FPGA implementation. I suspect the most important aspect to a scrypt FPGA implementation is to balance the # of computational cores in the FPGA to the memory access attributes, not sure how that was done to yield the above results. GPUs offer extremely high memory bandwidth to service the large # of independent cores, which yes might give them the edge...

1010  Bitcoin / Hardware / Re: Avalon - Chips group buy order time frame and deliveries on: August 19, 2013, 08:51:13 PM
To clarify, being late can't be seen as a scam .... it's common knowledge.

But this is not being late, that is the issue.

What is common knowledge is taking product that was paid for, manufactured for and allocated to a specific set of customers, and reselling that product to another 2nd customer for a higher price, is illegal and fraudulent.

In this situation the group buy payments (millions of dollars) were used to secure manufacture of product from TSMC, Yifu then turned around and resold that paid for product to a higher bidder. That is plainly illegal.

Even if Yifu then takes this higher bidder funds to purchase another round of TSMC chips and deliver those, it is still illegal. Doubly so since the time value of the product has been destroyed. Yifu promised a time schedule and purposefully broke that to profit himself with zero compensation to customers.

So the statement that it's common knowledge that being late is OK, is both wrong and absurd in this case.

1011  Bitcoin / Hardware / Re: Avalon - Chips group buy order time frame and deliveries on: August 19, 2013, 06:24:24 PM
I think the main group buy organizers should band together and contact the FBI regarding this $10M scam. At this point it is clear that Yifu sold chips to the highest bidder destroying any future ROI for customers on chips he may or may not deliver. This is a larger scam than pirate and the government developed a case and took him down.

Engaging the government on illegal actions such as this only helps strengthen and legitimize Bitcoin.

Most people I know are into Bitcoin because it is a currency that the bankers can not debase and reward just themselves. That is a legitimate goal. We don't want to see Bitcoin turn into a den of thieves that only transfers abuse from bankers to guys like Yifu and pirate.
1012  Bitcoin / Hardware / Re: Goliath Miner on: August 19, 2013, 05:57:02 PM
On Litecoin we do have a memory add-on for CM1 going into manufacture. I don't want anyone to think we have Litecoin mining now running on CM1. We don't and won't for at least some time to come give our current workload. This new module will simply be available anyone that wants to try and implement it on a CM1. On the big boards we will come back to Litecoin at some point but no promises when that might be.

I _might_ be interested in one such CM1 board with memory add-ons in order to try and hack a solution together in my spare time (which is very little these days between work and babies, and it is doubtful I would have enough time). Couple questions:

1) Have you done any sizing to estimate/optimize both the amount of memory and # of memory ports that would be optimal for scrypt and CM1? Otherwise the board configuration is a stab in the dark.

2) Would such a board come with the necessary IP blocks needed to interface with the add-on memory ports during Verilog development? This would make development easier and is usually provided with development boards.

3) If someone did successfully develop a scrypt miner, would you offer any business terms to make it available for others?
1013  Bitcoin / Hardware / Re: Goliath Miner on: August 19, 2013, 05:01:10 PM
That's a real shame, but seems to make sense in the current crazy ASIC environment. There's no sense in being late to the party if some of the other ASIC offers materialise at the end of the summer. Would be great to see bitfury ASICs on a CMx board at some point. Also, your litecoin mining hint for CM4 was cruelly inticing Wink. I'd love to see a scrypt miner from you guys if you can do it!!

+1 The litecoin aspect is really interesting and could be a gamechanger in that currency. I imagine that would bring more success than an bitcoin ASIC would - seeing as theres a lot of run on the marked for those units lately. But noone seem to have been going forward with a litecoin setup - not in public that is.

Yohan, I agree with the comments above. It would be great to have a scrypt hashing board based on FPGAs, and I think you guys would do well here.

I see no reason why an FPGA scrypt solution couldn't be developed. I used to design FPGA applications on existing boards (~10 years ago) and a board with an FPGA and multiple memory ports to cheap DRAM dimms could be developed that would be very competitive to GPU mining.

The advantage of this is Enterpoint could offer stable supply/pricing based on commodity FPGAs, DRAM and your boards, not this insanity with unreliable ASIC vendors

The issue with bitcoin mining is the next gen ASICs make anything other than them non competitive. You have multiple vendors coming out with ~500GHash/sec chips at very attractive power profiles. You can argue if they will meet the announced time frames, but regardless that is the level of efficiency that will be reached at some point.

This is why when you first announced Goliath I asked what the hashing engine would be based on. With the new ASIC hashing engines there is little room to succeed with BTC mining unless you acquire one of these engines (from very unreliable suppliers.)
1014  Alternate cryptocurrencies / Altcoin Discussion / Re: [XPM] Why Primecoin is Useless, Doomed to Fail? on: August 18, 2013, 08:40:32 PM
With GPU mining about to come out soon, the difficulty will rapidly rise and we can expect only ~1K or less coins to be generated per day. This is an insignificant amount compared to the first two weeks.

Your math is wrong. Primecoin mint rate reduction is quite slow you won't see daily production drop below 10K any time soon (diff 12 = 10K daily production, a couple thousand times more difficult than the current difficulty 9.75).

Primecoin is designed to sustain a prosperous mining market long term, yet still have stronger scarcity in the short term (first 4 years) than bitcoin's design. These are conscious design choices. The release was pre-announced 10 days in advance, to ensure no advantage to anyone and a fair initial participation.

I think you are deluding yourself, my math above may not be exact, but it is representative. The coin was designed so that those that mined in the early few weeks would capture the vast majority of coins mined, leaving both little opportunity or incentive for others to join later and participate.

Your argument is everyone was free to participate in those first few weeks does not matter, those that did not (who are most people) now have little incentive to join and care about primecoin.
1015  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN] profit switching auto-exchanging pool - middlecoin.com on: August 18, 2013, 08:30:54 PM
Does anyone know of a method to see the network hash rate history of many of the alternate coins in one place? I'm curious to see what the effect is from the multi-coin pools on some of the smaller coins.
There's this:
http://cryptometer.org/
Only some coins there, but you can click "All Days" and see all the history. Although, some of them seem to be outdated... some of them are up to date.

Thanks for the link, this helps.
1016  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN] profit switching auto-exchanging pool - middlecoin.com on: August 18, 2013, 05:01:37 AM
Does anyone know of a method to see the network hash rate history of many of the alternate coins in one place? I'm curious to see what the effect is from the multi-coin pools on some of the smaller coins.

1017  Bitcoin / Hardware / Re: Liquid Synergy Designs Inc. -ASIC mining hardware on: August 18, 2013, 02:44:08 AM
Clearly the first batch to arrive should go to the Batch #1 buyers, who have been waiting the longest.

Anything else is ridiculous.

This buy has been FIFO since day one. Who cares about whatever number Avalon decides to stick on the side of a box?

Hogwash. The burden of lost/late/never shipments should not be pushed down the line to the last batch. That is ridiculous. Each batch transaction is clearly independent of the others. They each had to meet a chip quantity ordered before purchased, they each have their own order date, and they each have their own Avalon order number. The only thing in common between the batches is they are organized by the same group buy leader -- that doesn't mean they should automatically become dependent on one another.

By placing an order for chips not in the first few batches I have no intention of shouldering the burden of order problems on previous batches, just like my batch purchase shouldn't be impacted by order problems in other non-steamboat group buys. If you expect the last batch or two customers to get get stuck holding the bag if any batch doesn't fulfill, then clearly those batch customers should have received a steep discount compared to the other batches. Insurance like that isn't free.

I don't think you all understand how the probability on this works. Here is some math from Statistics 101. Let's say the probability of any given shipment never arriving is 15%.
If everyone shares the burden equally then there is a 15% change you'll be SOL. Sounds fair to me. Equal burden for all.
If you push the burden down the line to later batches, then:
 the probability that batch 1 won't receive chips drops from 15% to 0.0011390625% (.15 * .15 * .15 * .15 * .15)
  - AND -
 the probability that batch 6 is screwed jumps from 15% to 62.285% (1 - [.85 * .85 * .85 * .85 * .85]).

Again, there is no way it would be fair for later batch customers to have all of the burden of lost/late/never shipments. That burden should be spread out across the batches evenly.

This ^^^^

The risk is on each batch individually and steamboat has separate order numbers for each batch

Otherwise the last batch bears all of the compounded the risk of all the previous batches, which is not fair. Also batch 1 would gain from each subsequent order placed, i.e. if 100 batches were ordered then batch 1's odds of delivery would go up significantly, which they never paid for and thus is not fair.

Steamboat should be clear on the order numbers and go by order delivery.

Of course this all assumes batches are delivered at all, which is a poor assumption. At this point we are just squabbling.
1018  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XPM] [ANN] Primecoin Release - First Scientific Computing Cryptocurrency on: August 17, 2013, 11:35:25 PM
As someone new to Primecoin, can someone explain to me how this was not created to be only beneficial to early miners in the first month, with little profit or incentive for future miners?

In the first two weeks of Primecoin's life, over 100,000 coins were generated a day while difficulty was around 7. This means that it was both relatively easy to find blocks and blocks were highly valuable.

http://cryptometer.org/primecoin_90_day_charts.html

In just one month the number of coins generated per day has fallen to ~10K and at the same time it is much more difficult to find a block due to increased difficulty. Which means that the amount of coins received per work falls exponentially since it is both harder to find a block and blocks yield fewer coins.

With GPU mining about to come out soon, the difficulty will rapidly rise and we can expect only ~1K or less coins to be generated per day. This is an insignificant amount compared to the first two weeks.

What this means is that those that got in early (first 1-2 weeks) will have generated most of the coins for themselves, leaving little incentive or room for profit for those not involved in the launch.

I was pretty interested in participating in Primecoin when I first saw it recently, but after exploring more it seems to be designed to overly reward those that launched it with little benefit for anyone else. To me those are not traits for a successful alt coin.

Couldn't you say exactly the same about bitcoin a few years ago?

All crypto coins have an early adopter benefit, bitcoin is no exception.

My point is that the decrease in block reward payout greatly exaggerates this effect in Primecoin. Once GPU mining comes out the per block reward will decrease significantly, which means that those mining in a few months will never be able to mine the # of XPM that individuals were able to in the first weeks, no matter how much H/W they add. With bitcoin you may need a lot more H/W now to mine coins with ASIC difficulty, but roughly the same number of coins per day are released.

With Bitcoin, today 3600 bitcoins are released every day while 7200 bitcoins were released per day in the first 4 year period.

With Primecoin, in the first weeks over 100K coins were mined per day. Soon with GPUs most likely only 100s of coins will be able to be mined per day. That is very unbalanced.
1019  Alternate cryptocurrencies / Altcoin Discussion / Re: [XPM] Why Primecoin is Useless, Doomed to Fail? on: August 17, 2013, 06:44:48 PM
As someone new to Primecoin, it seems that it was created to be only beneficial to early miners in the first month, with little profit or incentive for future miners.

In the first two weeks of Primecoin's life, over 100,000 coins were generated a day while difficulty was around 7. This means that it was both relatively easy to find blocks and blocks were highly valuable.

http://cryptometer.org/primecoin_90_day_charts.html

In just one month the number of coins generated per day has fallen to ~10K and at the same time it is much more difficult to find a block due to increased difficulty. Which means that the amount of coins received per work falls exponentially since it is both harder to find a block and blocks yield fewer coins.

With GPU mining about to come out soon, the difficulty will rapidly rise and we can expect only ~1K or less coins to be generated per day. This is an insignificant amount compared to the first two weeks.

What this means is that those that got in early (first 1-2 weeks) will have generated most of the coins for themselves, leaving little incentive or room for profit for those not involved in the launch.

I was pretty interested in participating in Primecoin when I first saw it recently, but after exploring more it seems to be designed to overly reward those that launched it with little benefit for anyone else. To me those are not traits for a successful alt coin.
1020  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XPM] [ANN] Primecoin Release - First Scientific Computing Cryptocurrency on: August 17, 2013, 06:40:08 PM
As someone new to Primecoin, can someone explain to me how this was not created to be only beneficial to early miners in the first month, with little profit or incentive for future miners?

In the first two weeks of Primecoin's life, over 100,000 coins were generated a day while difficulty was around 7. This means that it was both relatively easy to find blocks and blocks were highly valuable.

http://cryptometer.org/primecoin_90_day_charts.html

In just one month the number of coins generated per day has fallen to ~10K and at the same time it is much more difficult to find a block due to increased difficulty. Which means that the amount of coins received per work falls exponentially since it is both harder to find a block and blocks yield fewer coins.

With GPU mining about to come out soon, the difficulty will rapidly rise and we can expect only ~1K or less coins to be generated per day. This is an insignificant amount compared to the first two weeks.

What this means is that those that got in early (first 1-2 weeks) will have generated most of the coins for themselves, leaving little incentive or room for profit for those not involved in the launch.

I was pretty interested in participating in Primecoin when I first saw it recently, but after exploring more it seems to be designed to overly reward those that launched it with little benefit for anyone else. To me those are not traits for a successful alt coin.
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!