Author Topic: [ANN] ptsweb.beeeeer.org - Protoshares mining sub-pool  (Read 415111 times)

0 Members and 1 Guest are viewing this topic.

Offline xolokram

  • Sr. Member
  • ****
  • Posts: 239
  • beeeeer.org
    • View Profile
Re: [ANN] ptsweb.beeeeer.org - Protoshares mining sub-pool
« Reply #1173 on: January 27, 2014, 08:53:36 pm »
@bizthinker:
i'm sorry, i just went through the asm code and it requires 64bit compilation, my bad --- didn't recognized that before :-[

- xolokram
stats for pts@beeeeer.org
BTC: 1S4kxaF4ro17qThUz4hQwAoiXzCWdzwdb | LTC: LMgYASNbAgGUG6fhw1xdMAWSbMiWjNNGgo
XPM: AJhA1PGbNM94ZmsJvVVM5FfbE9SdxiMzgd | PTS: PbfspbvSWxYqrp3DpRH7bsrmEqzY3418Ap

Offline ptsrush

  • Full Member
  • ***
  • Posts: 84
    • View Profile
Re: [ANN] ptsweb.beeeeer.org - Protoshares mining sub-pool
« Reply #1172 on: January 27, 2014, 12:15:46 pm »
@Michael

I think on user page you see your pts, not shares.

In the last 12 hours peeeer.org seems found 4 - 5 blocks so for you 3 blocks is all right.

Offline Michael

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: [ANN] ptsweb.beeeeer.org - Protoshares mining sub-pool
« Reply #1171 on: January 27, 2014, 10:45:20 am »
I started mining about 12 hours ago with ptsminer on Debian 64. Successfully submitted about 1000 some odd shares until it crashed at some point while I was asleep. I understand there is a 120 block latency but I am only seeing 3 shares so far under my user page. does it take longer than 12 hours to update?

Offline bizthinker

  • Newbie
  • *
  • Posts: 16
    • View Profile
Re: [ANN] ptsweb.beeeeer.org - Protoshares mining sub-pool
« Reply #1170 on: January 27, 2014, 07:39:30 am »
@xolokram,
my environment
gcc version 4.8.1 (GCC)
yasm 1.2.0

I used nm to check the .o file. I see the functions are there. Very strange. Could you help compile a Win32&SSE4 version and send to me? I have dozens of old servers are blocked on this. My email: bizthinker@qq.com. Thanks in advance.

Offline mitman

  • Newbie
  • *
  • Posts: 3
    • View Profile

well that worked but now i'm getting a different error.

yasm -f elf64 -o obj/sha512_avx.o intel/sha512_avx.asm
make: yasm: No such file or directory
make: *** [obj/sha512_avx.o] Error 1

I think it means that I have to install Yasm but I'm not exactly sure how to do that so if you could point me in the right direction or give me some tips on doing that it would be appreciated. thanks.
'sudo port install yasm' should do the trick

Well after doing all that I'm getting this really confusing error message that I have no idea what it means.

Code: [Select]
yasm -f elf64 -o obj/sha512_avx.o intel/sha512_avx.asm
yasm -f elf64 -o obj/sha512_sse4.o intel/sha512_sse4.asm
llvm-g++ -c -O2  -fpermissive -o obj/sha512.o sha512.c
clang: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated
clang: warning: argument unused during compilation: '-fpermissive'
llvm-g++ -c -O1  -fpermissive -o obj/sph_sha2.o sph_sha2.c
clang: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated
clang: warning: argument unused during compilation: '-fpermissive'
sph_sha2.c:33:32: warning: pragma diagnostic expected option name
      (e.g. "-Wundef") [-Wunknown-pragmas]
#pragma GCC diagnostic ignored "-fpermissive"
                               ^
sph_sha2.c:628:5: error: assigning to 'sph_sha224_context *' from incompatible
      type 'void *'
        sc = cc;
           ^ ~~
sph_sha2.c:643:5: error: assigning to 'sph_sha256_context *' (aka
      'sph_sha224_context *') from incompatible type 'void *'
        sc = cc;
           ^ ~~
In file included from sph_sha2.c:655:
./sph_md_helper.c:79:32: warning: pragma diagnostic expected option name
      (e.g. "-Wundef") [-Wunknown-pragmas]
#pragma GCC diagnostic ignored "-fpermissive"
                               ^
./sph_md_helper.c:136:5: error: assigning to 'sph_sha224_context *' from
      incompatible type 'void *'
        sc = cc;
           ^ ~~
./sph_md_helper.c:186:5: error: assigning to 'sph_sha224_context *' from
      incompatible type 'void *'
        sc = cc;
           ^ ~~
./sph_md_helper.c:208:3: error: no matching function for call to 'sha2_round'
                RFUN(data, SPH_VAL);
                ^~~~
sph_sha2.c:652:16: note: expanded from macro 'RFUN'
#define RFUN   sha2_round
               ^~~~~~~~~~
sph_sha2.c:615:1: note: candidate function not viable: cannot convert argument
      of incomplete type 'const void *' to 'const unsigned char *'
sha2_round(const unsigned char *data, sph_u32 r[8])
^
In file included from sph_sha2.c:655:
./sph_md_helper.c:250:5: error: assigning to 'sph_sha224_context *' from
      incompatible type 'void *'
        sc = cc;
           ^ ~~
2 warnings and 6 errors generated.
make: *** [obj/sph_sha2.o] Error 1

Offline reorder

  • Sr. Member
  • ****
  • Posts: 400
    • View Profile

well that worked but now i'm getting a different error.

yasm -f elf64 -o obj/sha512_avx.o intel/sha512_avx.asm
make: yasm: No such file or directory
make: *** [obj/sha512_avx.o] Error 1

I think it means that I have to install Yasm but I'm not exactly sure how to do that so if you could point me in the right direction or give me some tips on doing that it would be appreciated. thanks.
'sudo port install yasm' should do the trick

Offline mitman

  • Newbie
  • *
  • Posts: 3
    • View Profile
if anyone else is having issues building for osx, here is what I had to do to get it to build.

1)   cd /tmp
2)   xcode-select –install
3)   sudo xcodebuild -license
4)   curl -O https://distfiles.macports.org/MacPorts/MacPorts-2.2.1.tar.bz2
5)   tar xf MacPorts-2.2.1.tar.bz2
6)   cd MacPorts-2.2.1/
7)   ./configure
8)   make
9)   sudo make install
10)   sudo port selfupdate
11)   sudo port install boost db48@+no_java openssl miniupnpc   (this takes awhile, almost an hour)
12)   git clone https://github.com/thbaumbach/ptsminer
13)   cd ptsminer/src
14)   make –f makefile.osx

Edit: one of my co-workers needed to download the command line tool for Xcode. So if step 2 doesn't work, that maybe why.

I got all the way to step 14 but then when I run that command I get the error "make: *** No rule to make target `–f'.  Stop." I have no idea what the problem is and I have Googled everywhere but I cannot find the answer. Can someone please help me? I'm willing to pay in protoshares when I can get this to work. Thanks!
You have a long dash in '-f'. Type the minus on your keyboard instead of it.

well that worked but now i'm getting a different error.

yasm -f elf64 -o obj/sha512_avx.o intel/sha512_avx.asm
make: yasm: No such file or directory
make: *** [obj/sha512_avx.o] Error 1

I think it means that I have to install Yasm but I'm not exactly sure how to do that so if you could point me in the right direction or give me some tips on doing that it would be appreciated. thanks.

Offline reorder

  • Sr. Member
  • ****
  • Posts: 400
    • View Profile
if anyone else is having issues building for osx, here is what I had to do to get it to build.

1)   cd /tmp
2)   xcode-select –install
3)   sudo xcodebuild -license
4)   curl -O https://distfiles.macports.org/MacPorts/MacPorts-2.2.1.tar.bz2
5)   tar xf MacPorts-2.2.1.tar.bz2
6)   cd MacPorts-2.2.1/
7)   ./configure
8)   make
9)   sudo make install
10)   sudo port selfupdate
11)   sudo port install boost db48@+no_java openssl miniupnpc   (this takes awhile, almost an hour)
12)   git clone https://github.com/thbaumbach/ptsminer
13)   cd ptsminer/src
14)   make –f makefile.osx

Edit: one of my co-workers needed to download the command line tool for Xcode. So if step 2 doesn't work, that maybe why.

I got all the way to step 14 but then when I run that command I get the error "make: *** No rule to make target `–f'.  Stop." I have no idea what the problem is and I have Googled everywhere but I cannot find the answer. Can someone please help me? I'm willing to pay in protoshares when I can get this to work. Thanks!
You have a long dash in '-f'. Type the minus on your keyboard instead of it.

Offline mitman

  • Newbie
  • *
  • Posts: 3
    • View Profile
if anyone else is having issues building for osx, here is what I had to do to get it to build.

1)   cd /tmp
2)   xcode-select –install
3)   sudo xcodebuild -license
4)   curl -O https://distfiles.macports.org/MacPorts/MacPorts-2.2.1.tar.bz2
5)   tar xf MacPorts-2.2.1.tar.bz2
6)   cd MacPorts-2.2.1/
7)   ./configure
8)   make
9)   sudo make install
10)   sudo port selfupdate
11)   sudo port install boost db48@+no_java openssl miniupnpc   (this takes awhile, almost an hour)
12)   git clone https://github.com/thbaumbach/ptsminer
13)   cd ptsminer/src
14)   make –f makefile.osx

Edit: one of my co-workers needed to download the command line tool for Xcode. So if step 2 doesn't work, that maybe why.

I got all the way to step 14 but then when I run that command I get the error "make: *** No rule to make target `–f'.  Stop." I have no idea what the problem is and I have Googled everywhere but I cannot find the answer. Can someone please help me? I'm willing to pay in protoshares when I can get this to work. Thanks!

Offline xolokram

  • Sr. Member
  • ****
  • Posts: 239
  • beeeeer.org
    • View Profile
Re: [ANN] ptsweb.beeeeer.org - Protoshares mining sub-pool
« Reply #1164 on: January 26, 2014, 07:24:36 pm »
@bizthinker:
the compile process looks good as far as i can tell (except the errors of course).

what versions are you using?
Code: [Select]
$ g++ -v
Ziel: mingw32
Konfiguriert mit: ../gcc-4.7.2/configure --enable-languages=c,c++,ada,fortran,objc,obj-c++ --disable-sjlj-exceptions --w
ith-dwarf2 --enable-shared --enable-libgomp --disable-win32-registry --enable-libstdcxx-debug --disable-build-poststage1
-with-cxx --enable-version-specific-runtime-libs --build=mingw32 --prefix=/mingw
Thread-Modell: win32
gcc-Version 4.7.2 (GCC)

$ yasm --version
yasm 1.2.0
Compiled on Oct 31 2011.

- xolokram
stats for pts@beeeeer.org
BTC: 1S4kxaF4ro17qThUz4hQwAoiXzCWdzwdb | LTC: LMgYASNbAgGUG6fhw1xdMAWSbMiWjNNGgo
XPM: AJhA1PGbNM94ZmsJvVVM5FfbE9SdxiMzgd | PTS: PbfspbvSWxYqrp3DpRH7bsrmEqzY3418Ap

Offline bizthinker

  • Newbie
  • *
  • Posts: 16
    • View Profile
Re: [ANN] ptsweb.beeeeer.org - Protoshares mining sub-pool
« Reply #1163 on: January 26, 2014, 08:07:12 am »
@xolokram,

following are my comple log. I will appreciate it you can take a look.

$ make -f makefile.mingw
g++ -c  -m32 -O3 -mmmx -msse -msse2 -msse3 -msse4 -msse4.1  -fpermissive -o obj/
cpuid.o cpuid.c
yasm -f win32 -D WINABI -o obj/sha512_avx.o intel/sha512_avx.asm
yasm -f win32 -D WINABI -o obj/sha512_sse4.o intel/sha512_sse4.asm
g++ -c  -m32 -O3 -mmmx -msse -msse2 -msse3 -msse4 -msse4.1  -fpermissive -o obj/
sha512.o sha512.c
g++ -c  -m32 -O3 -mmmx -msse -msse2 -msse3 -msse4 -msse4.1  -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_contex
t*' [-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_contex
t* {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_c
ontext*' [-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_c
ontext*' [-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 u
nsigned 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_c
ontext*' [-fpermissive]
  sc = cc;
     ^
g++ -c  -m32 -O3 -mmmx -msse -msse2 -msse3 -msse4 -msse4.1  -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_con
text*' [-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_con
text* {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_c
ontext*' [-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_c
ontext*' [-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(cons
t 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_c
ontext*' [-fpermissive]
  sc = cc;
     ^
g++ -c -m32 -O3 -mmmx -msse -msse2 -msse3 -msse4 -msse4.1  -m32 -mthreads -w -Wa
ll -Wextra -Wformat -Wformat-security -Wno-unused-parameter  -DWIN32 -D_WINDOWS
-DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -D_WIN32_WINNT=0x0501 -DWINVER=
0x0501  -I"/home/dev/ptsminer-master_src/src" -I"/mingw/include" -o obj/main_poo
lminer.o main_poolminer.cpp
g++ -m32 -mthreads -w -Wall -Wextra -Wformat -Wformat-security -Wno-unused-param
eter  -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -D_WIN
32_WINNT=0x0501 -DWINVER=0x0501  -I"/home/dev/ptsminer-master_src/src" -I"/mingw
/include" -Wl,--dynamicbase -Wl,--nxcompat -Wl,--large-address-aware -o ptsminer
.exe -L"/mingw/lib" 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 -l boost_system-mgw48-mt-d
-1_54 -l boost_filesystem-mgw48-mt-d-1_54 -l boost_program_options-mgw48-mt-d-1_
54 -l boost_thread-mgw48-mt-d-1_54 -l boost_chrono-mgw48-mt-d-1_54 -l kernel32 -
l user32 -l gdi32 -l comdlg32 -l winspool -l winmm -l shell32 -l comctl32 -l ole
32 -l oleaut32 -l uuid -l rpcrt4 -l advapi32 -l ws2_32 -l mswsock -l shlwapi
obj/sha512.o:sha512.c:(.text+0x6): undefined reference to `sha512_avx'
obj/sha512.o:sha512.c:(.text+0x16): undefined reference to `sha512_sse4'
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: obj/sha512
.o: bad reloc address 0x20 in section `.eh_frame'
collect2.exe: error: ld returned 1 exit status
make: *** [ptsminer.exe] Error 1


Offline nojle

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: [ANN] ptsweb.beeeeer.org - Protoshares mining sub-pool
« Reply #1162 on: January 24, 2014, 10:56:01 pm »
@bongo: up the threads you're using.  I have a six core amd with a horrible fan, so i'm only using 5 threads to keep the temp around 60C.  If you're on 64bit windows, the ptsminer lets you set how much ram to allocate.  Check out the bottom of the first post on this thread.

If I helped and you feel obliged, please donate to any of 4 in my signature.

Xolo: I show payouts for the last two blocks.  Just something weird happened in the two before it.  I'll live lol.  Thank you for your time.  I just wanted to MAKE SURE, it wasn't something major.
« Last Edit: January 25, 2014, 06:49:09 pm by nojle »
BTC: 1J34uXzToSPwfiJhufi9yqSDdvwtsji9pn | Doge: D8JbXk1juw3e1t1L8hzqk3i5sFPyorYfPy
PTS: PvGgzTKX7GdsnrqkwPXoEDG3ustv6BXAyt | XPM: AP6eRaN4wJJaxNANVuCs2UV26yJDcwxcsa

Offline bongo

  • Newbie
  • *
  • Posts: 4
    • View Profile
Re: [ANN] ptsweb.beeeeer.org - Protoshares mining sub-pool
« Reply #1161 on: January 24, 2014, 10:15:31 pm »
@nojle
@mmao

Thank you  for replying. The problem was definitely on my side. I was using the wrong wallet address. Problem resolved. How do i tune it. I am getting just 91 c/m on 8 core amd cpu

Offline xolokram

  • Sr. Member
  • ****
  • Posts: 239
  • beeeeer.org
    • View Profile
Re: [ANN] ptsweb.beeeeer.org - Protoshares mining sub-pool
« Reply #1160 on: January 24, 2014, 09:09:27 pm »
if you're first time mining on beeeer you'll have to wait until we find the next block to see you shares bound to that block (the current round).

@nojle:
ok, these are the correct links / downloads.

i dont have a clue what's wrong with your mining. either we wait until the next block, or you go back check your miner setup, maybe there's a typo in the address or something? srsly this is strange. btw and fyi: the times on the stats page is UTC, maybe that helps

mh

- xolokram
stats for pts@beeeeer.org
BTC: 1S4kxaF4ro17qThUz4hQwAoiXzCWdzwdb | LTC: LMgYASNbAgGUG6fhw1xdMAWSbMiWjNNGgo
XPM: AJhA1PGbNM94ZmsJvVVM5FfbE9SdxiMzgd | PTS: PbfspbvSWxYqrp3DpRH7bsrmEqzY3418Ap

Offline Bitcoin3D

  • Jr. Member
  • **
  • Posts: 27
  • Follow me: https://twitter.com/Bitcoin3D
    • View Profile
  • BitShares: bitcoin3d
Re: [ANN] ptsweb.beeeeer.org - Protoshares mining sub-pool
« Reply #1159 on: January 24, 2014, 09:02:35 pm »
Can someone help me out here. Im cloud mining and I see collisions and shares submitted but nothing shows up in my user address. http://ptsweb.beeeeer.org/user/PpyJrMVZMMmziN3eAqjkZ3ayoSbwG5V7wt

 I used to mine on Linux and all worked fine. But now I have a Windows service running. Do you know what I am doing wrong?
Bitcoin address: 19uYMBnPFsho8HDKMedtHP4gLgjoD1q34F