Author

Topic: AllMiner - CPU based mining, all algos I could find (Read 1347 times)

hero member
Activity: 969
Merit: 1000
couldn't compile  Huh

$ ./autogen.sh
main::scan_file() called too early to check prototype at c:/MinGW/bin/aclocal-1.11 line 617.
'autom4te' is not recognized as an internal or external command, operable program or batch file.
POSIX::WIFEXITED not implemented on this architecture at /mingw/share/automake-1.11/Automake/FileUtils.pm line 267.
hero member
Activity: 662
Merit: 500
I'm currently cleaning up the scrypt-jane implementation as it doesn't compile nicely on a Mac. The ASM code makes the Mac cough and spit. I'm implementing another routine for scrypt-jane which should work better.

Very nice, thank you!
hero member
Activity: 938
Merit: 1001
Do you have any windows binaries?
Ka
newbie
Activity: 24
Merit: 0
Very nice! I want to hear what others say after checking code.

If it is clean, I will add to the CPU Only list.

Cheers!

I'm currently cleaning up the scrypt-jane implementation as it doesn't compile nicely on a Mac. The ASM code makes the Mac cough and spit. I'm implementing another routine for scrypt-jane which should work better.

After that will try to include the API of cgminer so to make it monitorable like you can do with bfgminer or cgminer.

For GPU... Still need to look into that. Could apply to some algos but definitely not to others.

Ka.
hero member
Activity: 810
Merit: 1000
I would be very interested in a GPU compaitable app...  Wink
hero member
Activity: 938
Merit: 1001
Very nice! I want to hear what others say after checking code.

If it is clean, I will add to the CPU Only list.
Ka
newbie
Activity: 24
Merit: 0
I'll have a look at bfgminer, never looked at the source before.

Ka.
hero member
Activity: 840
Merit: 1002
Any chance you'd like to merge these features into BFGMiner? It already includes CPU mining and we'd welcome additional algorithm support.
Ka
newbie
Activity: 24
Merit: 0
Good day,

I love wasting some money on mining on a VPS and was looking for a CPU miner that combined all the algos currently used by emerging altcoins.
Seems that some newer coins use their own algos and we need to compile one for each of the altcoins not following the Bitcoin or Litecoin path.

So decided to cook my own version of cpuminer that would combine them all in one single miner. Out of better imagination, I called it allminer.

It currently sports the following algos:
Code:
static const char *algo_names[] = {
[ALGO_SCRYPT] = "scrypt",
[ALGO_SCRYPT_JANE] = "scrypt-jane",
[ALGO_SHA256D] = "sha256d",
[ALGO_QUARK] = "quark",
[ALGO_KECCAK] = "keccak",
[ALGO_QUBIT] = "qubit",
[ALGO_SKEIN] = "skein",
[ALGO_X] = "X11",
};

So it works with Bitcoin (who mines Bitcoins with cpu anymore?), Litecoins... All their derivatives but also Quarkcoin, Qubitcoin, Maxcoin, Skein and more.
All the code was merged from the repos of the original authors. I'm merely the cook that assembled all together. I'll add other algos as they come out.

Here's the repo: https://github.com/KaSt/AllMiner

In case you find this useful... I'm happy...

Ka.


Jump to: