Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - EvilTwin

Pages: [1]
1
BitShares PTS / Re: [ANN] ypool.net - Fast PTS pool
« on: February 21, 2014, 05:16:15 pm »
Avast indeed. But had it already back when I could access the site without a problem.

2
BitShares PTS / Re: [ANN] ypool.net - Fast PTS pool
« on: February 21, 2014, 08:39:38 am »
Was the website compromised? My AV just blocked it because of malware...

3
Is the cuda-miner independent from the cpu? Would this run on a machine with amd-cpu?

4
After installing yasm i am getting the following error in Ubuntu 12.04

balu@jagali:~/cudapts$ make -f makefile.unix
make: ./osfinder.sh: Command not found
make: ./osfinder.sh: Command not found
make: ./osfinder.sh: Command not found
nvcc -O3 -c -arch=sm_35 -o obj/gpuhash.o gpuhash.cu
make: nvcc: Command not found
make: *** [obj/gpuhash.o] Error 127
Take a look at page 2, theres a description where to get osfinder.sh. As for nvcc, have you installed the cuda toolkit?

5
Yep, linux, I got the the missing package, now this:
make -f makefile.unix
g++ -c -O2  -pthread -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/root/cudapts/cudapts/src -I/root/cudapts/cudapts/src/obj -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -o obj/main_poolminer.o main_poolminer.cpp
g++ -Wl,-z,relro -Wl,-z,now  -o cudapts  obj/cpuid.o obj/sha512_avx.o obj/sha512_sse4.o obj/sha512.o obj/sph_sha2.o obj/sph_sha2big.o obj/gpuhash.o obj/main_poolminer.o -L/usr/local/cuda-5.5/lib64 -Wl,-Bdynamic -l boost_system -l boost_filesystem -l boost_program_options -l boost_thread -l boost_chrono -Wl,-Bdynamic -l z -l dl -l cudart -l pthread
/usr/lib64/gcc/x86_64-suse-linux/4.3/../../../../x86_64-suse-linux/bin/ld: cannot find -lboost_chrono
/usr/lib64/gcc/x86_64-suse-linux/4.3/../../../../x86_64-suse-linux/bin/ld: cannot find -lz
collect2: ld returned 1 exit status
make: *** [cudapts] Error 1

6
make -f makefile.unix
g++ -c -O2  -fpermissive -o obj/cpuid.o cpuid.c
yasm -f elf64 -o obj/sha512_avx.o intel/sha512_avx.asm
yasm -f elf64 -o obj/sha512_sse4.o intel/sha512_sse4.asm
g++ -c -O2  -fpermissive -o obj/sha512.o sha512.c
g++ -c -O1  -fpermissive -o obj/sph_sha2.o sph_sha2.c
g++ -c -O1  -fpermissive -o obj/sph_sha2big.o sph_sha2big.c
nvcc -O3 -c -arch=sm_30 -o obj/gpuhash.o gpuhash.cu
g++ -c -O2  -pthread -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/root/cudapts/cudapts/src -I/root/cudapts/cudapts/src/obj -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -o obj/main_poolminer.o main_poolminer.cpp
In file included from main_poolminer.cpp:15:
main_poolminer.hpp:6:28: error: boost/thread.hpp: No such file or directory
main_poolminer.hpp:7:26: error: boost/asio.hpp: No such file or directory
main_poolminer.hpp:8:56: error: boost/date_time/posix_time/posix_time_io.hpp: No such file or directory
In file included from main_poolminer.cpp:15:
main_poolminer.hpp: In function ‘void print256(const char*, uint32_t*)’:
main_poolminer.hpp:54: error: aggregate ‘std::stringstream ss’ has incomplete type and cannot be defined
main_poolminer.hpp:56: error: ‘setw’ is not a member of ‘std’
main_poolminer.hpp:56: error: ‘setfill’ is not a member of ‘std’
main_poolminer.cpp: At global scope:
main_poolminer.cpp:40: error: ‘boost’ has not been declared
main_poolminer.cpp:40: error: expected initializer before ‘*’ token
main_poolminer.cpp:41: error: ‘boost’ has not been declared
main_poolminer.cpp:41: error: expected initializer before ‘t_start’
main_poolminer.cpp:126: error: ‘boost’ has not been declared
main_poolminer.cpp:126: error: ISO C++ forbids declaration of ‘shared_mutex’ with no type
main_poolminer.cpp:126: error: expected ‘;’ before ‘_mutex_getwork’
main_poolminer.cpp: In member function ‘virtual blockHeader_t* CBlockProviderGW::getBlock(unsigned int, unsigned int, unsigned int)’:
main_poolminer.cpp:69: error: ‘boost’ has not been declared
main_poolminer.cpp:69: error: ‘boost’ has not been declared
main_poolminer.cpp:69: error: ‘_mutex_getwork’ was not declared in this scope
main_poolminer.cpp:69: error: ‘lock’ was not declared in this scope
main_poolminer.cpp: In member function ‘virtual void CBlockProviderGW::setBlockTo(blockHeader_t*)’:
main_poolminer.cpp:89: error: ‘boost’ has not been declared
main_poolminer.cpp:89: error: ‘boost’ has not been declared
main_poolminer.cpp:89: error: ‘_mutex_getwork’ was not declared in this scope
main_poolminer.cpp:89: error: ‘lock’ was not declared in this scope
main_poolminer.cpp: In member function ‘virtual void CBlockProviderGW::submitBlock(blockHeader_t*, unsigned int)’:
main_poolminer.cpp:111: error: ‘socket_to_server’ was not declared in this scope
main_poolminer.cpp:115: error: ‘boost’ has not been declared
main_poolminer.cpp:115: error: expected `;' before ‘submit_error’
main_poolminer.cpp:116: error: ‘boost’ has not been declared
main_poolminer.cpp:116: error: ‘boost’ has not been declared
main_poolminer.cpp:116: error: ‘boost’ has not been declared
main_poolminer.cpp:116: error: ‘submit_error’ was not declared in this scope
main_poolminer.cpp:119: error: ‘submit_error’ was not declared in this scope
main_poolminer.cpp: At global scope:
main_poolminer.cpp:137: error: ‘boost’ has not been declared
main_poolminer.cpp:137: error: ISO C++ forbids declaration of ‘shared_mutex’ with no type
main_poolminer.cpp:137: error: ‘shared_mutex’ declared as a ‘virtual’ field
main_poolminer.cpp:137: error: expected ‘;’ before ‘&’ token
main_poolminer.cpp:229: error: ‘boost’ has not been declared
main_poolminer.cpp:229: error: ISO C++ forbids declaration of ‘shared_lock’ with no type
main_poolminer.cpp:229: error: expected ‘;’ before ‘<’ token
main_poolminer.cpp:235: error: ‘boost’ has not been declared
main_poolminer.cpp:235: error: ISO C++ forbids declaration of ‘thread’ with no type
main_poolminer.cpp:235: error: expected ‘;’ before ‘_thread’
main_poolminer.cpp: In constructor ‘CWorkerThread::CWorkerThread(CMasterThreadStub*, unsigned int, CBlockProviderGW*)’:
main_poolminer.cpp:144: error: class ‘CWorkerThread’ does not have any field named ‘_working_lock’
main_poolminer.cpp:144: error: class ‘CWorkerThread’ does not have any field named ‘_thread’
main_poolminer.cpp: In member function ‘void CWorkerThread::mineloop()’:
main_poolminer.cpp:165: error: ‘boost’ has not been declared
main_poolminer.cpp:165: error: ‘boost’ has not been declared
main_poolminer.cpp: In member function ‘void CWorkerThread::run()’:
main_poolminer.cpp:215: error: ‘boost’ has not been declared
main_poolminer.cpp:215: error: ‘boost’ has not been declared
main_poolminer.cpp: In member function ‘void CWorkerThread::work()’:
main_poolminer.cpp:224: error: ‘_working_lock’ was not declared in this scope
main_poolminer.cpp:224: error: expected type-specifier before ‘boost’
main_poolminer.cpp:224: error: expected `;' before ‘boost’
main_poolminer.cpp: At global scope:
main_poolminer.cpp:416: error: ‘boost’ has not been declared
main_poolminer.cpp:416: error: ISO C++ forbids declaration of ‘shared_mutex’ with no type
main_poolminer.cpp:416: error: expected ‘;’ before ‘&’ token
main_poolminer.cpp:420: error: expected `;' before ‘private’
main_poolminer.cpp:428: error: ‘boost’ has not been declared
main_poolminer.cpp:428: error: ISO C++ forbids declaration of ‘shared_mutex’ with no type
main_poolminer.cpp:428: error: expected ‘;’ before ‘_mutex_master’
main_poolminer.cpp:429: error: ‘boost’ has not been declared
main_poolminer.cpp:429: error: ISO C++ forbids declaration of ‘shared_mutex’ with no type
main_poolminer.cpp:429: error: expected ‘;’ before ‘_mutex_working’
main_poolminer.cpp: In member function ‘void CMasterThread::run()’:
main_poolminer.cpp:246: error: ‘boost’ has not been declared
main_poolminer.cpp:246: error: ‘boost’ has not been declared
main_poolminer.cpp:246: error: ‘_mutex_master’ was not declared in this scope
main_poolminer.cpp:246: error: ‘lock’ was not declared in this scope
main_poolminer.cpp:255: error: ‘boost’ has not been declared
main_poolminer.cpp:255: error: expected `;' before ‘io_service’
main_poolminer.cpp:256: error: ‘boost’ has not been declared
main_poolminer.cpp:256: error: expected `;' before ‘resolver’
main_poolminer.cpp:257: error: ‘boost’ has not been declared
main_poolminer.cpp:257: error: expected `;' before ‘query’
main_poolminer.cpp:259: error: ‘boost’ has not been declared
main_poolminer.cpp:259: error: expected `;' before ‘endpoint’
main_poolminer.cpp:260: error: ‘boost’ has not been declared
main_poolminer.cpp:260: error: expected `;' before ‘end’
main_poolminer.cpp:261: error: ‘boost’ has not been declared
main_poolminer.cpp:261: error: expected `;' before ‘nd_option’
main_poolminer.cpp:262: error: ‘boost’ has not been declared
main_poolminer.cpp:262: error: expected `;' before ‘ka_option’
main_poolminer.cpp:265: error: ‘endpoint’ was not declared in this scope
main_poolminer.cpp:265: error: ‘resolver’ was not declared in this scope
main_poolminer.cpp:265: error: ‘query’ was not declared in this scope
main_poolminer.cpp:266: error: ‘boost’ has not been declared
main_poolminer.cpp:266: error: ‘boost’ has not been declared
main_poolminer.cpp:266: error: ‘socket’ was not declared in this scope
main_poolminer.cpp:267: error: ‘boost’ has not been declared
main_poolminer.cpp:267: error: expected `;' before ‘error_socket’
main_poolminer.cpp:268: error: ‘error_socket’ was not declared in this scope
main_poolminer.cpp:268: error: ‘end’ was not declared in this scope
main_poolminer.cpp:271: error: expected type-specifier before ‘boost’
main_poolminer.cpp:271: error: expected `)' before ‘boost’
main_poolminer.cpp:272: error: ‘boost’ has not been declared
main_poolminer.cpp:272: error: expected `;' before ‘tcp_ep’
main_poolminer.cpp:273: error: ‘tcp_ep’ was not declared in this scope
main_poolminer.cpp:276: error: ‘nd_option’ was not declared in this scope
main_poolminer.cpp:277: error: ‘ka_option’ was not declared in this scope
main_poolminer.cpp:279: error: ‘error_socket’ was not declared in this scope
main_poolminer.cpp:281: error: ‘boost’ has not been declared
main_poolminer.cpp:281: error: ‘boost’ has not been declared
main_poolminer.cpp:284: error: ‘t_start’ was not declared in this scope
main_poolminer.cpp:284: error: ‘boost’ has not been declared
main_poolminer.cpp:305: error: ‘boost’ has not been declared
main_poolminer.cpp:305: error: expected `;' before ‘error’
main_poolminer.cpp:306: error: ‘boost’ has not been declared
main_poolminer.cpp:306: error: ‘error’ was not declared in this scope
main_poolminer.cpp:312: error: ‘socket_to_server’ was not declared in this scope
main_poolminer.cpp:320: error: ‘boost’ has not been declared
main_poolminer.cpp:320: error: expected `;' before ‘error’
main_poolminer.cpp:321: error: ‘boost’ has not been declared
main_poolminer.cpp:321: error: ‘boost’ has not been declared
main_poolminer.cpp:321: error: ‘boost’ has not been declared
main_poolminer.cpp:321: error: ‘error’ was not declared in this scope
main_poolminer.cpp:322: error: ‘boost’ has not been declared
main_poolminer.cpp:337: error: ‘boost’ has not been declared
main_poolminer.cpp:337: error: expected `;' before ‘error’
main_poolminer.cpp:338: error: ‘boost’ has not been declared
main_poolminer.cpp:338: error: ‘boost’ has not been declared
main_poolminer.cpp:338: error: ‘boost’ has not been declared
main_poolminer.cpp:338: error: ‘error’ was not declared in this scope
main_poolminer.cpp:339: error: ‘boost’ has not been declared
main_poolminer.cpp:359: error: ‘boost’ has not been declared
main_poolminer.cpp:359: error: expected `;' before ‘error’
main_poolminer.cpp:360: error: ‘boost’ has not been declared
main_poolminer.cpp:360: error: ‘boost’ has not been declared
main_poolminer.cpp:360: error: ‘boost’ has not been declared
main_poolminer.cpp:360: error: ‘error’ was not declared in this scope
main_poolminer.cpp:361: error: ‘boost’ has not been declared
main_poolminer.cpp:406: error: ‘boost’ has not been declared
main_poolminer.cpp:406: error: ‘boost’ has not been declared
main_poolminer.cpp: In member function ‘virtual void CMasterThread::wait_for_master()’:
main_poolminer.cpp:413: error: ‘boost’ has not been declared
main_poolminer.cpp:413: error: ‘boost’ has not been declared
main_poolminer.cpp:413: error: ‘_mutex_master’ was not declared in this scope
main_poolminer.cpp:413: error: ‘lock’ was not declared in this scope
main_poolminer.cpp: In member function ‘void CMasterThread::wait_for_workers()’:
main_poolminer.cpp:423: error: ‘boost’ has not been declared
main_poolminer.cpp:423: error: ‘boost’ has not been declared
main_poolminer.cpp:423: error: ‘_mutex_working’ was not declared in this scope
main_poolminer.cpp:423: error: ‘lock’ was not declared in this scope
main_poolminer.cpp: In member function ‘void CMasterThread::stats_running()’:
main_poolminer.cpp:435: error: ‘setprecision’ is not a member of ‘std’
main_poolminer.cpp:436: error: ‘boost’ has not been declared
main_poolminer.cpp:436: error: expected `;' before ‘t_end’
main_poolminer.cpp:447: error: ‘t_end’ was not declared in this scope
main_poolminer.cpp:448: error: ‘t_start’ was not declared in this scope
main_poolminer.cpp: In function ‘void exit_handler()’:
main_poolminer.cpp:470: error: ‘socket_to_server’ was not declared in this scope
main_poolminer.cpp: In function ‘int main(int, char**)’:
main_poolminer.cpp:598: error: ‘t_start’ was not declared in this scope
main_poolminer.cpp:598: error: ‘boost’ has not been declared
main_poolminer.cpp:612: error: ‘socket_to_server’ was not declared in this scope
main_poolminer.cpp:636: error: aggregate ‘std::stringstream ss’ has incomplete type and cannot be defined
main_poolminer.cpp:637: error: ‘setw’ is not a member of ‘std’
main_poolminer.cpp:637: error: ‘setfill’ is not a member of ‘std’
make: *** [obj/main_poolminer.o] Error 1

Any advice?

7
Marketplace / Re: 250 PTS Bounty - AngelShare Explorer Bounty [LAST CALL]
« on: January 07, 2014, 11:14:00 pm »
I would like to participate, if it's not too late for it yet.

8
I have started working on my implementation. Will report back soonTM.

9
BitShares PTS / Re: jhProtominer - CPU and collisions/min charts
« on: January 02, 2014, 09:52:29 am »
@drmyfore Can you tell me how you set up your system? I have the same hardware(2x 2680v2), but I only get half of your cpm.
I bound 2 processes to each socket/node using numactl, but that didnt help. I'm using the yam-ivy-bridge miner.

Pages: [1]