Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GenesisH0 Hash creation on GPU #41

Open
appkisstronics opened this issue Oct 16, 2018 · 3 comments
Open

GenesisH0 Hash creation on GPU #41

appkisstronics opened this issue Oct 16, 2018 · 3 comments

Comments

@appkisstronics
Copy link

Please do let me know is there any way to execute this on GPU ?

@DemoCoin-Dev
Copy link

DemoCoin-Dev commented Oct 16, 2018

Probably....... but splitting the nonces into more threads should be implemented for cpu also....

screenshot from 2018-10-16 15-15-25

@DemoCoin-Dev
Copy link

you split the nonces into the number of threads that you want..... here I did it manually....

example for an 8 threads cpu :

4294967295 / 8 = 536870911.875

So : -n 0000000000 thread 1
-n 536870911 thread 2
-n 1073741823 thread 3
-n 1610612736 thread 4
etc..

@DemoCoin-Dev
Copy link

each thread is 70000 hash / s , and when I do only one thread, it's 140 000 hash / s

I guess it's one thread per real cpu.

but 70000 * 8 = 560 000 hash / s instead of 140 000 hash / s

in other words, an old I7, if this was implemented, would do 4 times more hashes per second, reducing the total time needed by a factor of 4.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants