Bitcoin Forum
April 23, 2024, 09:14:28 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: hash algo more GPU-resistant than scrypt?  (Read 3479 times)
killerstorm (OP)
Legendary
*
Offline Offline

Activity: 1022
Merit: 1015



View Profile
July 25, 2012, 10:03:44 AM
 #1

So it turns out that scrypt is barely better than SHA-256 in terms of CPU/GPU performance ratio. Maybe tuning parameters can make it better, but it seems that the whole idea isn't working. From litecoin wiki:

Quote
GPUs still do prove useful for Litecoin mining, though the improvement over CPUs is less significant than it was for Bitcoin mining (e.g. 10x speedup instead of 20x speedup).

But looking at mining hardware comparison page, difference seems to be lower than 2x.

OK, so aren't there hashes which offer higher competitive advantage to CPUs?

I'm really not an expert in this matter, but from what I know GPUs really do not like conditional jumps: with those jumps there won't be enough work for all ALUs within one stream processor. So are there hash algos which do that?

First thing which comes in mind is to make operations which are performed dependent on input itself. It might be structured in a way similar to scrypt, but with an additional step where bits of expanded input define what operations to perform on that expanded intermediate result.

Each such operation should be non-parallelizeable so that only one ALU of a stream processor can work at a time.

As a bonus it might give a relative advantage to hashing implemented in languages like JavaScript: they are already suboptimal so hit from conditional jumps is much lower.

I think there really is a case for CPU mining since it gives ordinary people a chance to mine coins for themselves. This makes sense for in-game currencies: some people really do not want to spend real money to get game money. And I guess ideally it should work well with browser-based mining so that people won't have to install anything to get money.

Chromia: a better dapp platform
1713863668
Hero Member
*
Offline Offline

Posts: 1713863668

View Profile Personal Message (Offline)

Ignore
1713863668
Reply with quote  #2

1713863668
Report to moderator
1713863668
Hero Member
*
Offline Offline

Posts: 1713863668

View Profile Personal Message (Offline)

Ignore
1713863668
Reply with quote  #2

1713863668
Report to moderator
1713863668
Hero Member
*
Offline Offline

Posts: 1713863668

View Profile Personal Message (Offline)

Ignore
1713863668
Reply with quote  #2

1713863668
Report to moderator
Even in the event that an attacker gains more than 50% of the network's computational power, only transactions sent by the attacker could be reversed or double-spent. The network would not be destroyed.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
markm
Legendary
*
Offline Offline

Activity: 2940
Merit: 1090



View Profile WWW
July 25, 2012, 10:54:24 AM
 #2

People can mine coins or gold or metal or whatever for themselves in games anyway if the game wants them to, its not as if they need some special weirdness to do it really, heck using greasemonkey or on MUDs a MUD-client they can even do it in games that DON'T want them to do it. So it seems like a non-existent problem. Just leave your character digging or killing monsters or whatever.

(Anyone got a MUD-client or greasemonkey that runs on GPUs? Wink)

-MarkM-

Browser-launched Crossfire client now online (select CrossCiv server for Galactic  Milieu)
Free website hosting with PHP, MySQL etc: http://hosting.knotwork.com/
killerstorm (OP)
Legendary
*
Offline Offline

Activity: 1022
Merit: 1015



View Profile
July 25, 2012, 11:20:53 AM
 #3

It makes sense in game where economy is large part of the game. If currency is blockchain-based then its coinage is limited, and thus players can rely on it. (Hint: it might be a financial game.)

Also it makes sense if same currency is shared among many games.

Litecoin was geared towards that market, but now as GPU mining is available CPU mining is pretty much pointless.

Chromia: a better dapp platform
markm
Legendary
*
Offline Offline

Activity: 2940
Merit: 1090



View Profile WWW
July 25, 2012, 11:36:43 AM
 #4

It still doesn't matter. They can use greasemonkey or MUDclient type stuff to bake pies or weave shirts or dig up gold or whatever, and trade that in for litecoins at a trade centre / market / shop. If there is too much dug up / woven / etc then the number of coins customers will offer them per pie or shirt or nugget or whatever will be lower. There is no fundamental problem there.

In fact the game can decide ahead of time exactly how many grams of gold exist on the planet, how much in astroids, how much on other planets in the starsystem, and whether it will become possible to reach other starsystems. So again, no problem.

-MarkM-

Browser-launched Crossfire client now online (select CrossCiv server for Galactic  Milieu)
Free website hosting with PHP, MySQL etc: http://hosting.knotwork.com/
alatus
Member
**
Offline Offline

Activity: 73
Merit: 10


View Profile
July 25, 2012, 11:45:43 AM
 #5

Games aside, I understand the question as "how to make litecoin that REALLY works and resists GPU", which is I think still a good question!
Blazr
Hero Member
*****
Offline Offline

Activity: 882
Merit: 1005



View Profile
July 25, 2012, 11:52:35 AM
 #6

CPU-chains will never work IMO. No matter what hashing function you use, an FPGA/ASIC can be manufactured that can run that function more efficiently than a CPU.

killerstorm (OP)
Legendary
*
Offline Offline

Activity: 1022
Merit: 1015



View Profile
July 25, 2012, 12:28:09 PM
 #7

I don't think so, with certain hash function designs advantage of ASIC/FPGA wouldn't be high enough to justify its price.

As I understand Litecoin's scrypt is still resistant against ASIC/FPGA because adding that much memory to the chip ruins the advantage.

So maybe we can wait till ASICs dominate bitcoin mining so all GPU guys will jump to litecoin mining and BEX will suck Smiley

As I understand, scrypt isn't GPU-resistant because GPUs are not sufficiently different from CPU in sense that they do have some cache memory.

Chromia: a better dapp platform
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
July 25, 2012, 02:33:00 PM
 #8

So it turns out that scrypt is barely better than SHA-256 in terms of CPU/GPU performance ratio. Maybe tuning parameters can make it better, but it seems that the whole idea isn't working.

The idea is working. Quality of its implementation depends on chosen parameters. LTC just uses a wrong set of them.
ElectricMucus
Legendary
*
Offline Offline

Activity: 1666
Merit: 1057


Marketing manager - GO MP


View Profile WWW
July 25, 2012, 07:18:28 PM
 #9

Making a hashing algo "GPU resistant" is the wrong way to go about it IMO.

The goal would be to use the available resources more consistently.
That is: instructions per second, memory bandwidth, amount of available memory.

Difficulty would be a the magnitude of the corresponding vector of all of those. Something like automated theorem proving coupled with adaptive hashing algorithm. That would be an interesting Bachelor Thesis.. give me 3 years  Grin
phelix
Legendary
*
Offline Offline

Activity: 1708
Merit: 1019



View Profile
April 03, 2013, 12:07:57 PM
 #10

Also it should be changing parameters or modifying itself in a way that it can never be done as asic and hinder "compiled" gpu / fpga implementations.
Pages: [1]
  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!