Search content
Sort by

Showing 20 of 27 results by henningml
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [BBC] BigBangCoin Pos Only | Mandatory Wallet Update
by
henningml
on 19/08/2014, 17:32:36 UTC
So lesson learned would be: Don't keep coins at the pools. Use automatic payout and move to your own wallet..
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][WHRL] WhirlCoin | WhirlPool Algorithm | Sloped Rewards |AMD + CUDA Equal
by
henningml
on 15/08/2014, 12:25:35 UTC
Doing cryptoasians POD really helps getting bittrex interrested.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 01/08/2014, 21:02:57 UTC
I might sound a bit lame, but this is funny how often we get complaints and how little we get donation...  Grin
(I think we should charge for technical assistance, like any software company...)


So where's the donation address? I can only find the addresses of Christian and Christian in ccminer, when compiling your sources. Haven't found it on github either.
you can send to this address (BTC): 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
(or do you want for other currencies ?)

BTC is just fine.

Have you considered having the address in your signature, or promoting it otherwise if you'd like more donations and less complaints? Smiley


A couple of beers worth of donation for now, maybe more later if your source compiles on Linux next time Wink
0.08 BTC (Beers are expensive where I'm from).

Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 01/08/2014, 20:01:06 UTC
I might sound a bit lame, but this is funny how often we get complaints and how little we get donation...  Grin
(I think we should charge for technical assistance, like any software company...)


So where's the donation address? I can only find the addresses of Christian and Christian in ccminer, when compiling your sources. Haven't found it on github either.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 30/07/2014, 12:48:30 UTC


edit: please don't suggest random changes


Well, I just corrected a typo to get it to compile, hardly a random suggestion. Hard for me to know that the defines shouldn't be there in the first place.

You could test it yourself on Linux if you find it annoying that someone needs to do changes to get it to compile.

BTW: you changed my text in your quote.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 30/07/2014, 10:49:12 UTC
Compiling latest djm34 source failed on Linux:

Code:
nvcc -g -O2 -I . -Xptxas "-abi=no -v" -gencode=arch=compute_30,code=\"sm_30,compute_30\" -gencode=arch=compute_35,code=\"sm_35,compute_35\" --maxrregcount=80 --ptxas-options=-v -I./compat/jansson -o qubit/qubit_luffa512.o -c qubit/qubit_luffa512.cu
qubit/qubit_luffa512.cu(35): error: invalid redeclaration of type name "uint64_t"
/usr/include/stdint.h(55): here

1 error detected in the compilation of "/tmp/tmpxft_00003bab_00000000-9_qubit_luffa512.compute_35.cpp1.ii".
make[2]: *** [qubit/qubit_luffa512.o] Error 2
make[2]: Leaving directory `/home/henning/CryptCoins/compile/djm34/ccminer'

Changed:
Code:
typedef unsigned long long uint64_t;

to:
Code:
typedef unsigned long uint64_t;

in qubit/qubit_luffa512.cu
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 30/07/2014, 10:46:01 UTC
Find find -lboost_thread_win32 in quid-qt.pro and remove "_win32".
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 29/07/2014, 09:36:59 UTC
Is it OK to compile latest miners on Ubuntu with Cuda 5.5 or should I install new Cuda version?

I compiled djm34's github-source successfully today. Mint 17 / Ubuntu 14.04, Cuda 5.5, drivers 331.38

Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 29/07/2014, 07:16:15 UTC
Does the latest version implementing luffa require nvidia-driver 340 and/or cuda 6?

edit: to compile and run
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 27/07/2014, 20:43:35 UTC
should work now.
The line containing the definition of haval and sha512 was removed by mistake from the makefile when I edited the makefile to put keccak... (not sure how, might I have removed 2 lines instead of one by mistake... difficult to spot that one)
getting closer:
Code:
g++  -g -O2 -pthread -L/opt/cuda/lib64  -o ccminer ccminer-cpu-miner.o ccminer-util.o ccminer-bmw.o ccminer-blake.o ccminer-groestl.o ccminer-jh.o ccminer-keccak.o ccminer-skein.o ccminer-hefty1.o ccminer-scrypt.o ccminer-sha2.o heavy/heavy.o heavy/cuda_blake512.o heavy/cuda_combine.o heavy/cuda_groestl512.o heavy/cuda_hefty1.o heavy/cuda_keccak512.o heavy/cuda_sha256.o ccminer-fuguecoin.o cuda_fugue256.o ccminer-fugue.o ccminer-groestlcoin.o cuda_groestlcoin.o ccminer-myriadgroestl.o cuda_myriadgroestl.o JHA/jackpotcoin.o JHA/cuda_jha_keccak512.o JHA/cuda_jha_compactionTest.o quark/cuda_quark_checkhash.o quark/cuda_jh512.o quark/cuda_quark_blake512.o quark/cuda_quark_groestl512.o quark/cuda_skein512.o quark/cuda_bmw512.o quark/cuda_quark_keccak512.o quark/quarkcoin.o quark/animecoin.o quark/cuda_quark_compactionTest.o cuda_nist5.o ccminer-cubehash.o ccminer-echo.o ccminer-luffa.o ccminer-shavite.o ccminer-simd.o ccminer-hamsi.o ccminer-hamsi_helper.o ccminer-shabal.o ccminer-whirlpool.o ccminer-haval.o ccminer-sha2big.o qubit/qubit.o qubit/qubit_luffa512.o x13/x14.o x13/fresh.o x13/x17.o x13/x13.o x13/cuda_x13_hamsi512.o x13/cuda_x13_fugue512.o x13/x15.o x13/cuda_shabal512.o x13/cuda_whirlpool512.o x13/whirlcoin.o Algo256/cuda_keccak256.o Algo256/keccak256.o x11/x11.o x11/cuda_x11_luffa512.o x11/cuda_x11_cubehash512.o x11/cuda_x11_shavite512.o x11/cuda_x11_simd512.o x11/cuda_x11_echo.o -lcurl -lssl -lcrypto -lssl -lcrypto -lz -ljansson -lpthread  -lcudart -fopenmp -lcrypto -lssl  -lcrypto -lssl
x13/x17.o: In function `scanhash_x17':
tmpxft_000065d6_00000000-6_x17.compute_30.cudafe1.cpp:(.text+0x582): undefined reference to `sha512_cpu_hash_64(int, int, unsigned int, unsigned int*, unsigned int*, int)'
tmpxft_000065d6_00000000-6_x17.compute_30.cudafe1.cpp:(.text+0x5a1): undefined reference to `haval256_cpu_hash_64(int, int, unsigned int, unsigned int*, unsigned int*, int)'
tmpxft_000065d6_00000000-6_x17.compute_30.cudafe1.cpp:(.text+0x79e): undefined reference to `sha512_cpu_init(int, int)'
tmpxft_000065d6_00000000-6_x17.compute_30.cudafe1.cpp:(.text+0x7aa): undefined reference to `haval256_cpu_init(int, int)'
collect2: error: ld returned 1 exit status
make[2]: *** [ccminer] Error 1
make[2]: Leaving directory `/home/skunk/bitcoin/ccminer-djm34'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/skunk/bitcoin/ccminer-djm34'
make: *** [all] Error 2
done... now at some point you might want to check what could be wrong in the makefile between the last working x17 version and this one...
I am really getting tired of github crap...
 

Compiled successfully on Linux Mint 17! Thanks for your efforts, I will drop you a donation next time I'm exchanging some mined coins...

Edit: cant seem to find any donation address?
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 26/07/2014, 21:16:47 UTC
the makefile should be fixed now

Thanks, compiling again, will report back in a couple of hours Smiley

couple of hours for compiling?

Close to at least. I'm unable to install cuda toolkit 6 (seems hard on ubuntu 14.04 / mint 17). And compile-times with toolkit 5.5 takes forever.

Compile failed again with same error. Guess djm34 didn't fix my problem in the last update.

Code:
g++  -g -O2 -pthread -L/usr/local/cuda/lib64  -o ccminer ccminer-cpu-miner.o ccminer-util.o ccminer-bmw.o ccminer-blake.o ccminer-groestl.o ccminer-jh.o ccminer-keccak.o ccminer-skein.o ccminer-hefty1.o ccminer-scrypt.o ccminer-sha2.o heavy/heavy.o heavy/cuda_blake512.o heavy/cuda_combine.o heavy/cuda_groestl512.o heavy/cuda_hefty1.o heavy/cuda_keccak512.o heavy/cuda_sha256.o ccminer-fuguecoin.o cuda_fugue256.o ccminer-fugue.o ccminer-groestlcoin.o cuda_groestlcoin.o ccminer-myriadgroestl.o cuda_myriadgroestl.o JHA/jackpotcoin.o JHA/cuda_jha_keccak512.o JHA/cuda_jha_compactionTest.o quark/cuda_quark_checkhash.o quark/cuda_jh512.o quark/cuda_quark_blake512.o quark/cuda_quark_groestl512.o quark/cuda_skein512.o quark/cuda_bmw512.o quark/cuda_quark_keccak512.o quark/quarkcoin.o quark/animecoin.o quark/cuda_quark_compactionTest.o cuda_nist5.o ccminer-cubehash.o ccminer-echo.o ccminer-luffa.o ccminer-shavite.o ccminer-simd.o ccminer-hamsi.o ccminer-hamsi_helper.o ccminer-shabal.o ccminer-whirlpool.o qubit/qubit.o qubit/qubit_luffa512.o x13/x14.o x13/fresh.o x13/x17.o x13/x13.o x13/cuda_x13_hamsi512.o x13/cuda_x13_fugue512.o x13/x15.o x13/cuda_shabal512.o x13/cuda_whirlpool512.o x13/whirlcoin.o Algo256/cuda_keccak256.o Algo256/keccak256.o x11/x11.o x11/cuda_x11_luffa512.o x11/cuda_x11_cubehash512.o x11/cuda_x11_shavite512.o x11/cuda_x11_simd512.o x11/cuda_x11_echo.o -L/usr/lib/x86_64-linux-gnu -lcurl compat/jansson/libjansson.a -lpthread  -lcudart -static-libstdc++ -fopenmp -lcrypto -lssl  -lcrypto -lssl
ccminer-cpu-miner.o: In function `miner_thread':
/home/henning/CryptCoins/compile/djm34/ccminer/cpu-miner.c:972: undefined reference to `scanhash_wh'
x13/x17.o: In function `scanhash_x17':
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x17.cu:315: undefined reference to `sha512_cpu_hash_64(int, int, unsigned int, unsigned int*, unsigned int*, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x17.cu:317: undefined reference to `haval256_cpu_hash_64(int, int, unsigned int, unsigned int*, unsigned int*, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x17.cu:253: undefined reference to `sha512_cpu_init(int, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x17.cu:255: undefined reference to `haval256_cpu_init(int, int)'
x13/x17.o: In function `x17hash(void*, void const*)':
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x17.cu:201: undefined reference to `sph_sha512_init'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x17.cu:202: undefined reference to `sph_sha384'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x17.cu:203: undefined reference to `sph_sha512_close'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x17.cu:206: undefined reference to `sph_haval256_5_init'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x17.cu:207: undefined reference to `sph_haval256_5'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x17.cu:208: undefined reference to `sph_haval256_5_close'
x13/whirlcoin.o: In function `scanhash_test':
/home/henning/CryptCoins/compile/djm34/ccminer/x13/whirlcoin.cu:103: undefined reference to `whirlpool512_setBlock_80(void*)'
collect2: error: ld returned 1 exit status
make[2]: *** [ccminer] Error 1
make[2]: Leaving directory `/home/henning/CryptCoins/compile/djm34/ccminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/henning/CryptCoins/compile/djm34/ccminer'
make: *** [all] Error 2
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 26/07/2014, 19:02:57 UTC
the makefile should be fixed now

Thanks, compiling again, will report back in a couple of hours Smiley
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 26/07/2014, 18:09:14 UTC
new version of ccminer:

* small improvement over whirlcoin (increased the total number of threads): gpu usage is 99% for the gtx780ti (as well as the gtx750ti)
in terms of performance: I was getting before for gtx780ti+gtx750ti = around 19MH/s now I get 20.6MHash/s.

* added keccak256 (maxcoin) to ccminer
It isn't a port of cudaminer as it makes use of the main function of keccak512 instead of the one of cudaminer.

In terms of performance. cudaminer gives over my gtx780ti (OC) 293MHash/s, with this kernel I get around 300MHash/s
(I am not sure if the problem of low share getting registered  by pool is still present or not... I would assume yes).
Please watch the number of rejected shares. This one can be high (it is due to the use of a difficulty multiplier, and some tuning is still needed there)

The changes have been included into https://github.com/djm34/ccminer

It should compile on linux however it is untested.
I don't plan to release binaries.

Hi no luck compiling on Linux..

Code:
g++  -g -O2 -pthread -L/usr/local/cuda/lib64  -o ccminer ccminer-cpu-miner.o ccminer-util.o ccminer-bmw.o ccminer-blake.o ccminer-groestl.o ccminer-jh.o ccminer-keccak.o ccminer-skein.o ccminer-hefty1.o ccminer-scrypt.o ccminer-sha2.o heavy/heavy.o heavy/cuda_blake512.o heavy/cuda_combine.o heavy/cuda_groestl512.o heavy/cuda_hefty1.o heavy/cuda_keccak512.o heavy/cuda_sha256.o ccminer-fuguecoin.o Algo256/cuda_fugue256.o ccminer-fugue.o ccminer-groestlcoin.o Algo256/cuda_groestlcoin.o ccminer-myriadgroestl.o Algo256/cuda_myriadgroestl.o JHA/jackpotcoin.o JHA/cuda_jha_keccak512.o JHA/cuda_jha_compactionTest.o quark/cuda_quark_checkhash.o quark/cuda_jh512.o quark/cuda_quark_blake512.o quark/cuda_quark_groestl512.o quark/cuda_skein512.o quark/cuda_bmw512.o quark/cuda_quark_keccak512.o quark/quarkcoin.o quark/animecoin.o quark/cuda_quark_compactionTest.o cuda_nist5.o ccminer-cubehash.o ccminer-echo.o ccminer-luffa.o ccminer-shavite.o ccminer-simd.o ccminer-hamsi.o ccminer-hamsi_helper.o ccminer-shabal.o ccminer-whirlpool.o qubit/qubit.o qubit/qubit_luffa512.o x13/x14.o x13/fresh.o x13/x17.o x13/x13.o x13/cuda_x13_hamsi512.o x13/cuda_x13_fugue512.o x13/x15.o x13/cuda_shabal512.o x13/cuda_whirlpool512.o x13/whirlcoin.o Algo256/cuda_keccak256.o Algo256/keccak256.o -L/usr/lib/x86_64-linux-gnu -lcurl compat/jansson/libjansson.a -lpthread  -lcudart -static-libstdc++ -fopenmp -lcrypto -lssl  -lcrypto -lssl
g++: error: Algo256/cuda_fugue256.o: No such file or directory
g++: error: Algo256/cuda_groestlcoin.o: No such file or directory
g++: error: Algo256/cuda_myriadgroestl.o: No such file or directory
make[2]: *** [ccminer] Error 1
make[2]: Leaving directory `/home/henning/CryptCoins/compile/djm34/ccminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/henning/CryptCoins/compile/djm34/ccminer'
make: *** [all] Error 2

Contents of Algo256:
Code:
henning@KontorPC ~/CryptCoins/compile/djm34/ccminer $ ls Algo256/
cuda_keccak256.cu  cuda_keccak256.o  keccak256.cu  keccak256.o

I updated github...

Still no luck, new problem, get a load of these:

Code:

/home/henning/CryptCoins/compile/djm34/ccminer/x13/x13.cu:248: undefined reference to `x11_shavite512_cpu_hash_64(int, int, unsigned int, unsigned int*, unsigned int*, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x13.cu:251: undefined reference to `x11_simd512_cpu_hash_64(int, int, unsigned int, unsigned int*, unsigned int*, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x13.cu:254: undefined reference to `x11_echo512_cpu_hash_64(int, int, unsigned int, unsigned int*, unsigned int*, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x13.cu:200: undefined reference to `x11_luffa512_cpu_init(int, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x13.cu:201: undefined reference to `x11_cubehash512_cpu_init(int, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x13.cu:202: undefined reference to `x11_shavite512_cpu_init(int, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x13.cu:203: undefined reference to `x11_simd512_cpu_init(int, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x13.cu:204: undefined reference to `x11_echo512_cpu_init(int, int)'
x13/x15.o: In function `scanhash_x15':
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x15.cu:267: undefined reference to `x11_luffa512_cpu_hash_64(int, int, unsigned int, unsigned int*, unsigned int*, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x15.cu:270: undefined reference to `x11_cubehash512_cpu_hash_64(int, int, unsigned int, unsigned int*, unsigned int*, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x15.cu:273: undefined reference to `x11_shavite512_cpu_hash_64(int, int, unsigned int, unsigned int*, unsigned int*, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x15.cu:276: undefined reference to `x11_simd512_cpu_hash_64(int, int, unsigned int, unsigned int*, unsigned int*, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x15.cu:279: undefined reference to `x11_echo512_cpu_hash_64(int, int, unsigned int, unsigned int*, unsigned int*, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x15.cu:220: undefined reference to `x11_luffa512_cpu_init(int, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x15.cu:221: undefined reference to `x11_cubehash512_cpu_init(int, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x15.cu:222: undefined reference to `x11_shavite512_cpu_init(int, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x15.cu:223: undefined reference to `x11_simd512_cpu_init(int, int)'
/home/henning/CryptCoins/compile/djm34/ccminer/x13/x15.cu:224: undefined reference to `x11_echo512_cpu_init(int, int)'
x13/whirlcoin.o: In function `scanhash_test':
/home/henning/CryptCoins/compile/djm34/ccminer/x13/whirlcoin.cu:103: undefined reference to `whirlpool512_setBlock_80(void*)'
collect2: error: ld returned 1 exit status
make[2]: *** [ccminer] Error 1
make[2]: Leaving directory `/home/henning/CryptCoins/compile/djm34/ccminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/henning/CryptCoins/compile/djm34/ccminer'
make: *** [all] Error 2


Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 26/07/2014, 08:19:56 UTC
new version of ccminer:

* small improvement over whirlcoin (increased the total number of threads): gpu usage is 99% for the gtx780ti (as well as the gtx750ti)
in terms of performance: I was getting before for gtx780ti+gtx750ti = around 19MH/s now I get 20.6MHash/s.

* added keccak256 (maxcoin) to ccminer
It isn't a port of cudaminer as it makes use of the main function of keccak512 instead of the one of cudaminer.

In terms of performance. cudaminer gives over my gtx780ti (OC) 293MHash/s, with this kernel I get around 300MHash/s
(I am not sure if the problem of low share getting registered  by pool is still present or not... I would assume yes).
Please watch the number of rejected shares. This one can be high (it is due to the use of a difficulty multiplier, and some tuning is still needed there)

The changes have been included into https://github.com/djm34/ccminer

It should compile on linux however it is untested.
I don't plan to release binaries.

Hi no luck compiling on Linux..

Code:
g++  -g -O2 -pthread -L/usr/local/cuda/lib64  -o ccminer ccminer-cpu-miner.o ccminer-util.o ccminer-bmw.o ccminer-blake.o ccminer-groestl.o ccminer-jh.o ccminer-keccak.o ccminer-skein.o ccminer-hefty1.o ccminer-scrypt.o ccminer-sha2.o heavy/heavy.o heavy/cuda_blake512.o heavy/cuda_combine.o heavy/cuda_groestl512.o heavy/cuda_hefty1.o heavy/cuda_keccak512.o heavy/cuda_sha256.o ccminer-fuguecoin.o Algo256/cuda_fugue256.o ccminer-fugue.o ccminer-groestlcoin.o Algo256/cuda_groestlcoin.o ccminer-myriadgroestl.o Algo256/cuda_myriadgroestl.o JHA/jackpotcoin.o JHA/cuda_jha_keccak512.o JHA/cuda_jha_compactionTest.o quark/cuda_quark_checkhash.o quark/cuda_jh512.o quark/cuda_quark_blake512.o quark/cuda_quark_groestl512.o quark/cuda_skein512.o quark/cuda_bmw512.o quark/cuda_quark_keccak512.o quark/quarkcoin.o quark/animecoin.o quark/cuda_quark_compactionTest.o cuda_nist5.o ccminer-cubehash.o ccminer-echo.o ccminer-luffa.o ccminer-shavite.o ccminer-simd.o ccminer-hamsi.o ccminer-hamsi_helper.o ccminer-shabal.o ccminer-whirlpool.o qubit/qubit.o qubit/qubit_luffa512.o x13/x14.o x13/fresh.o x13/x17.o x13/x13.o x13/cuda_x13_hamsi512.o x13/cuda_x13_fugue512.o x13/x15.o x13/cuda_shabal512.o x13/cuda_whirlpool512.o x13/whirlcoin.o Algo256/cuda_keccak256.o Algo256/keccak256.o -L/usr/lib/x86_64-linux-gnu -lcurl compat/jansson/libjansson.a -lpthread  -lcudart -static-libstdc++ -fopenmp -lcrypto -lssl  -lcrypto -lssl
g++: error: Algo256/cuda_fugue256.o: No such file or directory
g++: error: Algo256/cuda_groestlcoin.o: No such file or directory
g++: error: Algo256/cuda_myriadgroestl.o: No such file or directory
make[2]: *** [ccminer] Error 1
make[2]: Leaving directory `/home/henning/CryptCoins/compile/djm34/ccminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/henning/CryptCoins/compile/djm34/ccminer'
make: *** [all] Error 2

Contents of Algo256:
Code:
henning@KontorPC ~/CryptCoins/compile/djm34/ccminer $ ls Algo256/
cuda_keccak256.cu  cuda_keccak256.o  keccak256.cu  keccak256.o
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 21/07/2014, 22:32:06 UTC
Still compiling...
And I'm compiling my own edit (just replaced all occurences of "xor"), not the version currently on github.

crap, my edit didn't work. probably shouldn't used "replace all". trying github.

install 6.0 ot 6.5 (it is really a lot faster... I compiled an exe this afternoon by mistake with 5.5 it took about 2 hours... with 6.5, it takes only half hours and certainly a lot less on Amph computer...)

for the xor there are 32 occurences (replace all told me that... actually only 7 gives a boost...)

I believed I had 6.0 installed, but seems like I had 5.5 as well and the compile uses that one. I'll try and clean it up.
you need to change that somewhere (for visual I can tell you... but for linux it should be in the config file...)

Just removed everything and installed 6.0 again. Seems to use the proper nvcc now. Thanks for the heads up.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 21/07/2014, 22:24:18 UTC
Still compiling...
And I'm compiling my own edit (just replaced all occurences of "xor"), not the version currently on github.

crap, my edit didn't work. probably shouldn't used "replace all". trying github.

install 6.0 ot 6.5 (it is really a lot faster... I compiled an exe this afternoon by mistake with 5.5 it took about 2 hours... with 6.5, it takes only half hours and certainly a lot less on Amph computer...)

for the xor there are 32 occurences (replace all told me that... actually only 7 gives a boost...)

I believed I had 6.0 installed, but seems like I had 5.5 as well and the compile uses that one. I'll try and clean it up.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 21/07/2014, 21:34:00 UTC
Still compiling...
And I'm compiling my own edit (just replaced all occurences of "xor"), not the version currently on github.

crap, my edit didn't work. probably shouldn't used "replace all". trying github.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 21/07/2014, 21:11:24 UTC
I did the change and seems to compile now.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 21/07/2014, 21:04:52 UTC
I dont think Linux likes "xor" as a variable name.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]
by
henningml
on 21/07/2014, 20:42:53 UTC
Still errors..

Code:
make[2]: Entering directory `/home/henning/CryptCoins/compile/djm34/ccminer'
nvcc -g -O2 -I . -Xptxas "-abi=no -v" -gencode=arch=compute_30,code=\"sm_30,compute_30\" -gencode=arch=compute_35,code=\"sm_35,compute_35\" --maxrregcount=80 --ptxas-options=-v -I./compat/jansson -o x13/cuda_whirlpool512.o -c x13/cuda_whirlpool512.cu
x13/cuda_whirlpool512.cu(67): error: expected an identifier

x13/cuda_whirlpool512.cu(2392): error: expected an expression

x13/cuda_whirlpool512.cu(2398): error: expected an expression

x13/cuda_whirlpool512.cu(2398): error: expected an expression

x13/cuda_whirlpool512.cu(2398): error: expected an expression

x13/cuda_whirlpool512.cu(2398): error: expected an expression

x13/cuda_whirlpool512.cu(2398): error: expected an expression

x13/cuda_whirlpool512.cu(2398): error: expected an expression

x13/cuda_whirlpool512.cu(2398): error: expected an expression

x13/cuda_whirlpool512.cu(2398): error: expected an expression

x13/cuda_whirlpool512.cu(2400): error: expected an expression

x13/cuda_whirlpool512.cu(2400): error: expected an expression

x13/cuda_whirlpool512.cu(2400): error: expected an expression

x13/cuda_whirlpool512.cu(2400): error: expected an expression

x13/cuda_whirlpool512.cu(2400): error: expected an expression

x13/cuda_whirlpool512.cu(2400): error: expected an expression

x13/cuda_whirlpool512.cu(2400): error: expected an expression

x13/cuda_whirlpool512.cu(2400): error: expected an expression

x13/cuda_whirlpool512.cu(2406): error: expected an expression

x13/cuda_whirlpool512.cu(2420): error: expected an expression

x13/cuda_whirlpool512.cu(2428): error: expected an expression

x13/cuda_whirlpool512.cu(2428): error: expected an expression

x13/cuda_whirlpool512.cu(2428): error: expected an expression

x13/cuda_whirlpool512.cu(2428): error: expected an expression

x13/cuda_whirlpool512.cu(2428): error: expected an expression

x13/cuda_whirlpool512.cu(2428): error: expected an expression

x13/cuda_whirlpool512.cu(2428): error: expected an expression

x13/cuda_whirlpool512.cu(2428): error: expected an expression

x13/cuda_whirlpool512.cu(2430): error: expected an expression

x13/cuda_whirlpool512.cu(2430): error: expected an expression

x13/cuda_whirlpool512.cu(2430): error: expected an expression

x13/cuda_whirlpool512.cu(2430): error: expected an expression

x13/cuda_whirlpool512.cu(2430): error: expected an expression

x13/cuda_whirlpool512.cu(2430): error: expected an expression

x13/cuda_whirlpool512.cu(2430): error: expected an expression

x13/cuda_whirlpool512.cu(2430): error: expected an expression

x13/cuda_whirlpool512.cu(2437): error: expected an expression

x13/cuda_whirlpool512.cu(2438): error: expected an expression

x13/cuda_whirlpool512.cu(2439): error: expected an expression

x13/cuda_whirlpool512.cu(2440): error: expected an expression

x13/cuda_whirlpool512.cu(2386): warning: variable "h" was set but never used

x13/cuda_whirlpool512.cu(2358): warning: variable "sharedMemory" was set but never used

x13/cuda_whirlpool512.cu(2506): error: expected an expression

x13/cuda_whirlpool512.cu(2512): error: expected an expression

x13/cuda_whirlpool512.cu(2512): error: expected an expression

x13/cuda_whirlpool512.cu(2512): error: expected an expression

x13/cuda_whirlpool512.cu(2512): error: expected an expression

x13/cuda_whirlpool512.cu(2512): error: expected an expression

x13/cuda_whirlpool512.cu(2512): error: expected an expression

x13/cuda_whirlpool512.cu(2512): error: expected an expression

x13/cuda_whirlpool512.cu(2512): error: expected an expression

x13/cuda_whirlpool512.cu(2514): error: expected an expression

x13/cuda_whirlpool512.cu(2514): error: expected an expression

x13/cuda_whirlpool512.cu(2514): error: expected an expression

x13/cuda_whirlpool512.cu(2514): error: expected an expression

x13/cuda_whirlpool512.cu(2514): error: expected an expression

x13/cuda_whirlpool512.cu(2514): error: expected an expression

x13/cuda_whirlpool512.cu(2514): error: expected an expression

x13/cuda_whirlpool512.cu(2514): error: expected an expression

x13/cuda_whirlpool512.cu(2520): error: expected an expression

x13/cuda_whirlpool512.cu(2529): error: expected an expression

x13/cuda_whirlpool512.cu(2536): error: expected an expression

x13/cuda_whirlpool512.cu(2536): error: expected an expression

x13/cuda_whirlpool512.cu(2536): error: expected an expression

x13/cuda_whirlpool512.cu(2536): error: expected an expression

x13/cuda_whirlpool512.cu(2536): error: expected an expression

x13/cuda_whirlpool512.cu(2536): error: expected an expression

x13/cuda_whirlpool512.cu(2536): error: expected an expression

x13/cuda_whirlpool512.cu(2536): error: expected an expression

x13/cuda_whirlpool512.cu(2538): error: expected an expression

x13/cuda_whirlpool512.cu(2538): error: expected an expression

x13/cuda_whirlpool512.cu(2538): error: expected an expression

x13/cuda_whirlpool512.cu(2538): error: expected an expression

x13/cuda_whirlpool512.cu(2538): error: expected an expression

x13/cuda_whirlpool512.cu(2538): error: expected an expression

x13/cuda_whirlpool512.cu(2538): error: expected an expression

x13/cuda_whirlpool512.cu(2538): error: expected an expression

x13/cuda_whirlpool512.cu(2543): error: expected an expression

x13/cuda_whirlpool512.cu(2544): error: expected an expression

x13/cuda_whirlpool512.cu(2545): error: expected an expression

x13/cuda_whirlpool512.cu(2546): error: expected an expression

x13/cuda_whirlpool512.cu(2547): error: expected an expression

x13/cuda_whirlpool512.cu(2548): error: expected an expression

x13/cuda_whirlpool512.cu(2500): warning: variable "h" was set but never used

x13/cuda_whirlpool512.cu(2464): warning: variable "sharedMemory" was set but never used

x13/cuda_whirlpool512.cu(2308): warning: function "ROUND_ELT" was declared but never referenced

81 errors detected in the compilation of "/tmp/tmpxft_00004790_00000000-9_cuda_whirlpool512.compute_35.cpp1.ii".
make[2]: *** [x13/cuda_whirlpool512.o] Error 2
make[2]: Leaving directory `/home/henning/CryptCoins/compile/djm34/ccminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/henning/CryptCoins/compile/djm34/ccminer'
make: *** [all] Error 2