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 - Gekko

Pages: 1 2 3 4 5 [6]
76
BitShares PTS / Re: [ANN] ptsweb.beeeeer.org - Protoshares mining sub-pool
« on: November 27, 2013, 09:34:58 am »
(Why) Is ptsminer slower with higher RAM setting?

If I run ptsminer with standard settings (512 MB) I get about 475c/m or 15.3 sh/m.
If I run ptsminer with setting 28 (1024 MB) I get about 385c/m or 11.6sh/m.


77
@Gekko:
which OS?
let me re-check the no-chrono makefile
Ubuntu 13.10 64bit

Edit: btw: same error (Segmentation fault) when compiling with makefile.unix !

Edit 2: SOLVED! The machine has only 512MB RAM. Starting ptsminer with option "26" (256MB) works!

78
I'm trying to run ptsminer on a digitalocean.com machine. This is what happens:
Code: [Select]
********************************************
*** ptsminer - Pts Pool Miner v0.7 RC2 <experimental>
*** by xolokram/TB - www.beeeeer.org - glhf
***
*** press CTRL+C to exit
********************************************
using SPHLIB (no avx/sse4)
spawning 1 worker thread(s)
[WORKER0] Hello, World!
[WORKER0] GoGoGo!
connecting to 54.201.26.128:1337
[MASTER] work received - sharetarget: 03ffffffffffffffffffffffffffffffffffffffffffffffffffffffbeefde4d
Segmentation fault (core dumped)

Compilation:
Code: [Select]
root@machine:~/ptsminer/src# make -f makefile.unix.no-chrono
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
sph_sha2.c: In function ‘void sph_sha224_init(void*)’:
sph_sha2.c:628:5: warning: invalid conversion from ‘void*’ to ‘sph_sha224_context*’ [-fpermissive]
  sc = cc;
     ^
sph_sha2.c: In function ‘void sph_sha256_init(void*)’:
sph_sha2.c:643:5: warning: invalid conversion from ‘void*’ to ‘sph_sha256_context* {aka sph_sha224_context*}’ [-fpermissive]
  sc = cc;
     ^
In file included from sph_sha2.c:655:0:
sph_md_helper.c: In function ‘void sha224_short(void*, const void*, size_t)’:
sph_md_helper.c:136:5: warning: invalid conversion from ‘void*’ to ‘sph_sha224_context*’ [-fpermissive]
  sc = cc;
     ^
sph_md_helper.c: In function ‘void sph_sha224(void*, const void*, size_t)’:
sph_md_helper.c:186:5: warning: invalid conversion from ‘void*’ to ‘sph_sha224_context*’ [-fpermissive]
  sc = cc;
     ^
sph_md_helper.c:208:21: warning: invalid conversion from ‘const void*’ to ‘const unsigned char*’ [-fpermissive]
   RFUN(data, SPH_VAL);
                     ^
sph_sha2.c:615:1: warning:   initializing argument 1 of ‘void sha2_round(const unsigned char*, sph_u32*)’ [-fpermissive]
 sha2_round(const unsigned char *data, sph_u32 r[8])
 ^
In file included from sph_sha2.c:655:0:
sph_md_helper.c: In function ‘void sha224_addbits_and_close(void*, unsigned int, unsigned int, void*, unsigned int)’:
sph_md_helper.c:250:5: warning: invalid conversion from ‘void*’ to ‘sph_sha224_context*’ [-fpermissive]
  sc = cc;
     ^
g++ -c -O1  -fpermissive -o obj/sph_sha2big.o sph_sha2big.c
sph_sha2big.c: In function ‘void sph_sha384_init(void*)’:
sph_sha2big.c:191:5: warning: invalid conversion from ‘void*’ to ‘sph_sha384_context*’ [-fpermissive]
  sc = cc;
     ^
sph_sha2big.c: In function ‘void sph_sha512_init(void*)’:
sph_sha2big.c:202:5: warning: invalid conversion from ‘void*’ to ‘sph_sha512_context* {aka sph_sha384_context*}’ [-fpermissive]
  sc = cc;
     ^
In file included from sph_sha2big.c:210:0:
sph_md_helper.c: In function ‘void sha384_short(void*, const void*, size_t)’:
sph_md_helper.c:136:5: warning: invalid conversion from ‘void*’ to ‘sph_sha384_context*’ [-fpermissive]
  sc = cc;
     ^
sph_md_helper.c: In function ‘void sph_sha384(void*, const void*, size_t)’:
sph_md_helper.c:186:5: warning: invalid conversion from ‘void*’ to ‘sph_sha384_context*’ [-fpermissive]
  sc = cc;
     ^
sph_md_helper.c:208:21: warning: invalid conversion from ‘const void*’ to ‘const unsigned char*’ [-fpermissive]
   RFUN(data, SPH_VAL);
                     ^
sph_sha2big.c:178:1: warning:   initializing argument 1 of ‘void sha3_round(const unsigned char*, sph_u64*)’ [-fpermissive]
 sha3_round(const unsigned char *data, sph_u64 r[8])
 ^
In file included from sph_sha2big.c:210:0:
sph_md_helper.c: In function ‘void sha384_addbits_and_close(void*, unsigned int, unsigned int, void*, unsigned int)’:
sph_md_helper.c:250:5: warning: invalid conversion from ‘void*’ to ‘sph_sha384_context*’ [-fpermissive]
  sc = cc;
     ^
g++ -c -O2  -pthread  -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/root/ptsminer/src -I/root/ptsminer/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 ptsminer  obj/cpuid.o obj/sha512_avx.o obj/sha512_sse4.o obj/sha512.o obj/sph_sha2.o obj/sph_sha2big.o obj/main_poolminer.o  -Wl,-Bdynamic -l boost_system -l boost_filesystem -l boost_program_options -l boost_thread -Wl,-Bdynamic -l z -l dl -l pthread

CPUInfo:
Code: [Select]
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 2
model name      : QEMU Virtual CPU version 1.0
stepping        : 3
microcode       : 0x1
cpu MHz         : 1999.999
cache size      : 4096 KB
fpu             : yes
fpu_exception   : yes
cpuid level     : 4
wp              : yes
flags           : fpu de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pse36 clflush mmx fxsr sse sse2 syscall nx lm rep_good nopl pni vmx cx16 popcnt hypervisor lahf_lm
bogomips        : 3999.99
clflush size    : 64
cache_alignment : 64
address sizes   : 40 bits physical, 48 bits virtual
power management:


 :(

79
I got multiple machines mining PTS to ptsweb.beeeeer.
Is there a way to see which machine sends which share on http://ptsweb.beeeeer.org/user/ ?
(I'm not sure if every ptsminer really works)

80
Marketplace / Re: Buy Keyhotee ID with ProtoShares 10 PTS+
« on: November 22, 2013, 03:11:45 pm »
But until Keyhotee goes live, we have to do it manually, corruptible humans though we are.   :)
...or as you said on http://invictus-innovations.com/anewbirthoffreedom:
Quote
Invictus, of course, is not a DAC (and therefore shouldn't be trusted fully).

;)


81
Marketplace / Re: Buy Keyhotee ID with ProtoShares 10 PTS+
« on: November 22, 2013, 09:26:45 am »
There will be no round of open bidding.  You can add to your "sealed bid" at any time before Christmas Eve but we can't have an auction for several practical reasons:
Correct me if I'm getting this wrong:
you "collect" all Founder-IDs in a "secret" list only you can see - until Xmas.
The list is not public because you don't want others to steal clever name ideas.
If someone wants to be sure he gets his clever name after Christmas Eve, he should add to his "sealed bid" an unknown amount of PTS.
Looking at the "open" aspect of the whole thing: who guarantees that you don't steal the clever names yourself as you have everything you need for it (the name and the highest bid). I don't want to allege that you do - but you (and nobody else) would be able to.
Wouldn't something like first come - first served be better?



82
Technical Support / Re: HALP! Wallet out of Sync
« on: November 21, 2013, 09:14:46 pm »
Hi,

168.63.12.227 seems to be down and sync is not possible with 94.23.215.174 (for almost 2 hours now).

Log says:

connected 94.23.215.174:80
send version message: version 70001, blocks=23437, us=0.0.0.0:0, them=94.23.215.174:80, peer=94.23.215.174:80
socket no message in first 60 seconds, 0 1
disconnecting node 94.23.215.174:80

trying connection 168.63.12.227:80 lastseen=0.0hrs
connection timeout



Pages: 1 2 3 4 5 [6]