Author

Topic: Doing a project for a parallel computing class, looking into crypto-mining (Read 1764 times)

member
Activity: 81
Merit: 1002
It was only the wind.
Thank you but SIMD_16 is a huge bet and I'm not sure it's worth it at all (over 8-way)!  Roll Eyes
I'd have to work on it. Sometime in the future.

I have an 8-way (not my own, but private), and yours still is impressive, even if it doesn't perform better.
legendary
Activity: 1484
Merit: 1082
ccminer/cpuminer developer
Check this : https://blake2.net/ blake2sp seems used in RARv5 (and more recently in neo-scrypt)
hero member
Activity: 672
Merit: 500
Thank you but SIMD_16 is a huge bet and I'm not sure it's worth it at all (over 8-way)!  Roll Eyes
I'd have to work on it. Sometime in the future.
hero member
Activity: 672
Merit: 500
This miner mangles Qubit, a form of chained hashing: Luffa, CubeHash, Shavite, SIMD, Echo. The ending _X is the amount of kernel parallelism used.

SIMD stands for "SIMD is a message digest". Silly jokes.

Legacy kernels build a big function out of all those algorithms. In my implementation instead, the phases are clearly separated. This allows me to reconfigure GPU ALU more appropriately. Most of the benefit comes from the improved SIMD and Echo implementation.

Note: same algorithms but different implementations.

To your project, the value is mostly in the new codebase which is hopefully easier to understand. I do not claim it to be complete nor efficient but it is surely more compact.
full member
Activity: 160
Merit: 100
I'd like you to take a look at my miner, designed to be understandable and easy to use.
First miner with GPU specific kernels, solved overspilling. Proper GPU OpenCL kernels (instead of just running CPU code on GPU). MIT license. Sort-of-C++11.

If you can add kernels for the coin of your choice that would rock!
Or, you could optimize the kernels since I speculate there's another 70% to squeeze out.

What do these kernels represent? (CubeHash_2W.cl, Echo_8W.cl, Luffa_1W.cl, SHAvite3_1W.cl, SIMD_16W.cl) I recognize SHA-3, but what are the others? SIMD, single instruction multiple data.? I'm not familiar with any of the mining algorithms yet, I know the names just not their implementations.
hero member
Activity: 672
Merit: 500
I'd like you to take a look at my miner, designed to be understandable and easy to use.
First miner with GPU specific kernels, solved overspilling. Proper GPU OpenCL kernels (instead of just running CPU code on GPU). MIT license. Sort-of-C++11.

If you can add kernels for the coin of your choice that would rock!
Or, you could optimize the kernels since I speculate there's another 70% to squeeze out.
full member
Activity: 160
Merit: 100
For a parallel programming class at my university I need to implement some sort of parallel computation. It is a broad as that. I was thinking to do something involving crypto-coin mining. I would really like to try to optimize a current algorithm or try to implement something new in parallel. Obviously people are already trying stuff like this and I am trying to get a good understanding of where everything is currently at some I might find something I could contribute to for my project.

I was wondering if anyone might have any ideas that would be interesting and useful to the community. I will have about 6 weeks to devote to it so it can't be a massive under taking.

 
Jump to: