Here is 0 khash/s on opencl version with ati hd6870 again.
Did it build the kernel successfully or not? You'll just have to find out what in the kernel is causing it not to build on your machine.
I first tried to build this on my ubuntu 10.04 system, but it failed with the same errors as flags8192. Experimenting with installing different version of wxWidgets did not help.
You don't need wxWidgest to compile just the rpc miners. Set the appropriate CMake options to not compile the GUI.
What's the difference between the 4way and the crypto?
I'm using an Intel i7
4way uses SSE2 instructions, which may be faster depending on the CPU. The -cpu miner just uses the standard CPU mining found in the vanilla GUI client.
like compile, but when you start error
./rpcminer-cuda -url=http://mining.bitcoin.cz:8332/ -user=xxxxxxx.xxxxxxxxx -password=xxxxxxxxx -statsurl=http://mining.bitcoin.cz/stats/json/
Client will start 1 miner threads
Work will be refreshed every 4000 ms
1 CUDA GPU devices found
Setting CUDA device to first device found
Loading module bitcoinminercuda_11.cubin
Unable to load CUDA module
what is Problem?
You need to compile the .cu file targeting the 1.1, 1.2, and 2.0 CUDA architecture, and give the resulting cubin the appropriate name, and place it in the working directory before you start the miner.
Problem with linux compilation.
Ubuntu 10.04, gcc 4.4.3
cmake buid configs without problems, all dependencies installed.
> make rpcminer
In file included from /src/bitcoin-rpc-miner/src/rpcminer/../minercommon/minerheaders.h:58,
from /src/bitcoin-rpc-miner/src/rpcminer/rpcminerclient.h:26,
from /src/bitcoin-rpc-miner/src/rpcminer/rpcminerclient.cpp:19:
/src/bitcoin-rpc-miner/src/rpcminer/../minercommon/../serialize.h: In function ‘unsigned int GetSizeOfCompactSize(uint64)’:
/src/bitcoin-rpc-miner/src/rpcminer/../minercommon/../serialize.h:167: error: ‘USHRT_MAX’ was not declared in this scope
/src/bitcoin-rpc-miner/src/rpcminer/../minercommon/../serialize.h:168: error: ‘UINT_MAX’ was not declared in this scope
/src/bitcoin-rpc-miner/src/rpcminer/../minercommon/../serialize.h: In function ‘void WriteCompactSize(Stream&, uint64)’:
/src/bitcoin-rpc-miner/src/rpcminer/../minercommon/../serialize.h:180: error: ‘USHRT_MAX’ was not declared in this scope
/src/bitcoin-rpc-miner/src/rpcminer/../minercommon/../serialize.h:187: error: ‘UINT_MAX’ was not declared in this scope
....
Maybe try to #include
in minerheaders.h, before serialize.h is included.