Bitcoin Forum
May 12, 2024, 05:16:37 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2]  All
  Print  
Author Topic: Zcash Equihash PoW Released  (Read 7733 times)
maxsinner
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250



View Profile
April 29, 2016, 01:50:37 PM
 #21

So can we mine this already?
1715490997
Hero Member
*
Offline Offline

Posts: 1715490997

View Profile Personal Message (Offline)

Ignore
1715490997
Reply with quote  #2

1715490997
Report to moderator
1715490997
Hero Member
*
Offline Offline

Posts: 1715490997

View Profile Personal Message (Offline)

Ignore
1715490997
Reply with quote  #2

1715490997
Report to moderator
Whoever mines the block which ends up containing your transaction will get its fee.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
tromp
Legendary
*
Offline Offline

Activity: 978
Merit: 1087


View Profile
April 29, 2016, 03:13:41 PM
 #22

So can we mine this already?

Not for real.

You can mine on the zcash testnet but the current "basic" solver is un-optimized (hence rather slow)
and uses reduced parameters.
rdnkjdi (OP)
Legendary
*
Offline Offline

Activity: 1256
Merit: 1009


View Profile
April 29, 2016, 03:16:20 PM
 #23

I thought Wagner's algorithm sorted. I'll have to reread the paper more carefully.

That puzzled me too. I don't see a need for sorting, just for binning to find collisions on the next chunk of n/(k+1) bits

In this case it turns out there is little difference between fully sorting and sorting into bins,
since the expected bin size is only 2 :-)

So equihash really seems to be all about sorting...

I apologize for my ignorance in understanding exactly what you're saying.

The bottleneck is going to be sorting - so it will be transfer speed between the ram and the processor and the processor speed.  Not the amount of RAM that will be the bottleneck?
jl777
Legendary
*
Offline Offline

Activity: 1176
Merit: 1132


View Profile WWW
June 06, 2016, 06:21:45 AM
 #24

So can we mine this already?

Not for real.

You can mine on the zcash testnet but the current "basic" solver is un-optimized (hence rather slow)
and uses reduced parameters.
Are there any plain language descriptions of equihash algo?
I tried to look at the zcash C++ code, but it is C++...

Ideally some comparable reference implementation in C would be really helpful

http://www.digitalcatallaxy.com/report2015.html
100+ page annual report for SuperNET
dga
Hero Member
*****
Offline Offline

Activity: 737
Merit: 511


View Profile WWW
June 20, 2016, 05:00:36 AM
 #25

Again, we must wait to see the final parameters and optimized implementations. It seems likely they'll pick
n=144 and k=5, which means they need to find collisions on 16 bits at a time. That is just a lookup in a 64K entry table;
I don't expect to see any real sorting there. It's less clear how the actual items are represented, and if they are moved
themselves, or by pointer.

I believe you have the constants wrong.  n=144, k=5 means that they're finding collisions
on n/(k+1) = n/6 = 24 bits at a time, repeated 4 times, and then finding final collisions
on the remaining 144-(4*24) = 48 bits, each time from a set of approximately 2^25
candidate hashes.

It's quite intriguing algorithmically.  I think the original paper might be a little too glib about the constants, though.

tromp
Legendary
*
Offline Offline

Activity: 978
Merit: 1087


View Profile
June 20, 2016, 11:26:38 AM
 #26

Again, we must wait to see the final parameters and optimized implementations. It seems likely they'll pick
n=144 and k=5, which means they need to find collisions on 16 bits at a time. That is just a lookup in a 64K entry table;
I don't expect to see any real sorting there. It's less clear how the actual items are represented, and if they are moved
themselves, or by pointer.

I believe you have the constants wrong.  n=144, k=5 means that they're finding collisions
on n/(k+1) = n/6 = 24 bits at a time, repeated 4 times, and then finding final collisions
on the remaining 144-(4*24) = 48 bits, each time from a set of approximately 2^25
candidate hashes.

You're right; I somehow managed to mess up a trivial calculation. Thanks for the correction.

Quote
It's quite intriguing algorithmically.  I think the original paper might be a little too glib about the constants, though.

Which constants are you referring to?

Btw, nice to see you back after a 10 month hiatus...
dga
Hero Member
*****
Offline Offline

Activity: 737
Merit: 511


View Profile WWW
June 22, 2016, 05:33:27 AM
 #27

Again, we must wait to see the final parameters and optimized implementations. It seems likely they'll pick
n=144 and k=5, which means they need to find collisions on 16 bits at a time. That is just a lookup in a 64K entry table;
I don't expect to see any real sorting there. It's less clear how the actual items are represented, and if they are moved
themselves, or by pointer.

I believe you have the constants wrong.  n=144, k=5 means that they're finding collisions
on n/(k+1) = n/6 = 24 bits at a time, repeated 4 times, and then finding final collisions
on the remaining 144-(4*24) = 48 bits, each time from a set of approximately 2^25
candidate hashes.

You're right; I somehow managed to mess up a trivial calculation. Thanks for the correction.

Quote
It's quite intriguing algorithmically.  I think the original paper might be a little too glib about the constants, though.

Which constants are you referring to?

Btw, nice to see you back after a 10 month hiatus...


Thanks!  I'm not really back - still enjoying the heck out of my sabbatical, but I got curious about this
one this weekend.

The constants:  I think they're thinking about the design a bit wrong and should be able to get the
peak tuple length down to 150 bits, or about 600MB, plus perhaps another ~50MB of ancillary
data structures, without incurring more than a constant number of additional hash calculations.
But I could be wrong - I'm just handwaving in my head about how I'd solve it and haven't
tried writing it down carefully.  That wouldn't substantially change their view of their memory
use.

I think they slightly overcount (again, small things - maybe 20%) the number of rows that
need to be sorted in main memory, because they're ignoring some of the things that can
hit in L3 cache.  As above, though, it's a minor difference.

As others already noted, their analysis ignores HBM / stacked DRAM, which, unlike last year,
is now distinctly real (though still expensive).

None of that is particularly important from an algorithmic standpoint.

iamnotback
Sr. Member
****
Offline Offline

Activity: 336
Merit: 265



View Profile
June 23, 2016, 04:02:37 PM
 #28

dga or tromp, any desire to make 1 BTC and help jl777?

https://bitcointalk.org/index.php?topic=1524143.msg15334660#msg15334660

I haven't taken the time to digest Equihash well enough to articulate an algorithm in pseudo-code.

I realize 1 BTC is probably insufficient for your time.

P.S. I am not involved in that in any way other than being aware that jl777 wants it.
tobeaj2mer01
Legendary
*
Offline Offline

Activity: 1098
Merit: 1000


Angel investor.


View Profile
August 11, 2016, 02:09:21 AM
 #29

dga or tromp, any desire to make 1 BTC and help jl777?

https://bitcointalk.org/index.php?topic=1524143.msg15334660#msg15334660

I haven't taken the time to digest Equihash well enough to articulate an algorithm in pseudo-code.

I realize 1 BTC is probably insufficient for your time.

P.S. I am not involved in that in any way other than being aware that jl777 wants it.
I will donate some money to the guy who makes a GPU-based miner for Zcash.

Sirx: SQyHJdSRPk5WyvQ5rJpwDUHrLVSvK2ffFa
bbc.reporter
Legendary
*
Offline Offline

Activity: 2926
Merit: 1444



View Profile
August 11, 2016, 02:37:37 AM
 #30

dga or tromp, any desire to make 1 BTC and help jl777?

https://bitcointalk.org/index.php?topic=1524143.msg15334660#msg15334660

I haven't taken the time to digest Equihash well enough to articulate an algorithm in pseudo-code.

I realize 1 BTC is probably insufficient for your time.

P.S. I am not involved in that in any way other than being aware that jl777 wants it.
I will donate some money to the guy who makes a GPU-based miner for Zcash.

It was said in their forum that there still could be changes in their algorithm. Nothing was specifically said what they were. So it would be safe to wait and let everything be finalized before committing in something. You can only mine in their testnet now and the official release has been pushed back with no date mentioned.

███████████████████████████
███████▄████████████▄██████
████████▄████████▄████████
███▀█████▀▄███▄▀█████▀███
█████▀█▀▄██▀▀▀██▄▀█▀█████
███████▄███████████▄███████
███████████████████████████
███████▀███████████▀███████
████▄██▄▀██▄▄▄██▀▄██▄████
████▄████▄▀███▀▄████▄████
██▄███▀▀█▀██████▀█▀███▄███
██▀█▀████████████████▀█▀███
███████████████████████████
.
.Duelbits.
..........UNLEASH..........
THE ULTIMATE
GAMING EXPERIENCE
DUELBITS
FANTASY
SPORTS
████▄▄█████▄▄
░▄████
███████████▄
▐███
███████████████▄
███
████████████████
███
████████████████▌
███
██████████████████
████████████████▀▀▀
███████████████▌
███████████████▌
████████████████
████████████████
████████████████
████▀▀███████▀▀
.
▬▬
VS
▬▬
████▄▄▄█████▄▄▄
░▄████████████████▄
▐██████████████████▄
████████████████████
████████████████████▌
█████████████████████
███████████████████
███████████████▌
███████████████▌
████████████████
████████████████
████████████████
████▀▀███████▀▀
/// PLAY FOR  FREE  ///
WIN FOR REAL
..PLAY NOW..
tromp
Legendary
*
Offline Offline

Activity: 978
Merit: 1087


View Profile
September 23, 2016, 08:32:29 PM
 #31

Zcash just announced their Open Source Miner Contest

https://z.cash/blog/announcing-miner-contest.html

Does a $30k prize fund tempt you into entering?
MarketMagic
Hero Member
*****
Offline Offline

Activity: 777
Merit: 777

Altbone inc.Burial service for altcoins


View Profile
September 23, 2016, 08:58:32 PM
 #32

https://coins.newbium.com/post/1917-zcash-30-000-miner-bounty

█████████████████████
tromp
Legendary
*
Offline Offline

Activity: 978
Merit: 1087


View Profile
September 26, 2016, 02:10:52 PM
 #33

None of that is particularly important from an algorithmic standpoint.

Right you are; I managed to implement some substantial optimizations for Equihash; see

https://forum.z.cash/t/breaking-equihash-in-solutions-per-gb-second/1995

Ayers
Legendary
*
Offline Offline

Activity: 2618
Merit: 1023


Seabet.io | Crypto-Casino


View Profile
September 26, 2016, 02:17:50 PM
 #34

Zcash just announced their Open Source Miner Contest

https://z.cash/blog/announcing-miner-contest.html

Does a $30k prize fund tempt you into entering?

i think wolfo will win this lol, he is a great dev in programming for mining, but there should be already a testnet version out there, pc only? so it's only a  matter of time before there is a porting for the gpu world

Quicksilver88
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
October 26, 2017, 12:09:59 PM
 #35

I've got an other question.

Does anybody know or has a link where I can find all of the coins that use 'equihash'. Im thinking of buying another mining contract over at Genesis. Because my Dash and the Lights are doing pretty well.
Or should I buy an Ether contract or a Monero contract?

I would love to hear from you guys

Greetz,

Pages: « 1 [2]  All
  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!