Author Topic: [ANN] ypool.net - Fast PTS pool  (Read 199711 times)

0 Members and 1 Guest are viewing this topic.

Offline cass

  • Hero Member
  • *****
  • Posts: 4311
  • /(┬.┬)\
    • View Profile
Re: [ANN] ypool.net + Custom high speed miner (up to 500% faster)
« Reply #41 on: November 12, 2013, 05:26:25 pm »
Code: [Select]
jhlib.cpp:1:0: error: CPU you selected does not support x86-64 instruction set
 #include"global.h"

jhlib.cpp:1:0: error: CPU you selected does not support x86-64 instruction set
 #include"global.h"
 ^
make: *** [jhlib.o] Error 1


any ideas what i can do ?

Are you on a 32bit cpu or a 32bit OS?

ubuntu 31.10 64
█║▌║║█  - - -  The quieter you become, the more you are able to hear  - - -  █║▌║║█

Offline Riverhead

Re: [ANN] ypool.net + Custom high speed miner (up to 500% faster)
« Reply #40 on: November 12, 2013, 05:22:45 pm »
Code: [Select]
jhlib.cpp:1:0: error: CPU you selected does not support x86-64 instruction set
 #include"global.h"

jhlib.cpp:1:0: error: CPU you selected does not support x86-64 instruction set
 #include"global.h"
 ^
make: *** [jhlib.o] Error 1


any ideas what i can do ?

Are you on a 32bit cpu or a 32bit OS?

Offline bytemaster

Re: [ANN] ypool.net + Custom high speed miner (up to 500% faster)
« Reply #39 on: November 12, 2013, 05:22:12 pm »
Care to explain your algorithm from a mile-high view?
For the latest updates checkout my blog: http://bytemaster.bitshares.org
Anything said on these forums does not constitute an intent to create a legal obligation or contract between myself and anyone else.   These are merely my opinions and I reserve the right to change them at any time.

Offline cass

  • Hero Member
  • *****
  • Posts: 4311
  • /(┬.┬)\
    • View Profile
Re: [ANN] ypool.net + Custom high speed miner (up to 500% faster)
« Reply #38 on: November 12, 2013, 05:18:19 pm »
Code: [Select]
jhlib.cpp:1:0: error: CPU you selected does not support x86-64 instruction set
 #include"global.h"

jhlib.cpp:1:0: error: CPU you selected does not support x86-64 instruction set
 #include"global.h"
 ^
make: *** [jhlib.o] Error 1


any ideas what i can do ?
« Last Edit: November 12, 2013, 05:21:04 pm by cassiopaia »
█║▌║║█  - - -  The quieter you become, the more you are able to hear  - - -  █║▌║║█

Offline yago

  • Full Member
  • ***
  • Posts: 188
    • View Profile
Re: Linux Port Available
« Reply #37 on: November 12, 2013, 05:16:10 pm »
Hi everyone,

I've port this miner to Linux. It makes ~85cpm on a Intel Xeon E5620(4C8T@2.4GHz) and 16GB memory. It's really fast (although the codes are so bad formatted). Thanks jh.

Thank you! It works fine :)

Strange thing is that I've 3 miners running, but they doesnt appear as "active" on the web. Also shares = 0.0 but Unconfirmed (PTS) is growing.
http://bitsharestalk.org/donate.html  <---- Donate to the BitShares Forum ----> PforumPLfVQXTi4QpQqKwoChXHkoHcxGuA

Offline craggietx

  • Jr. Member
  • **
  • Posts: 32
    • View Profile
    • Final Drive Parts
Re: [ANN] ypool.net + Custom high speed miner (up to 500% faster)
« Reply #36 on: November 12, 2013, 05:15:10 pm »
Here's the full set of commands to compile and run this miner on ubuntu / linux:

#download the source files
git clone https://github.com/Tydus/jhProtominer -b linux-port

#change to the src directory
cd jhProtominer/src/jhProtominer/

#compile the code
make CFLAGS="-O3 -march=native"

#run the new miner - don't forget to change the user.   my settings are for 8 threads at maximum memory (512m per thread)
./jhProtominer -o ypool.net -u craggietx.1 -p 1 -t 8 -m512

I am seeing 3x times faster if collisions/min is same as hpm on coyote miner

Nice work tyeken8!


PS.   I already had compiled the ptsminer on this server so I did not need any new dependencies.   you may need some of all of the below packages if compiling fails for you:

# Update & upgrade repositories and install build tools
sudo apt-get update
#&& apt-get upgrade
sudo apt-get -y install build-essential git

# Install ptsminer dependencies
sudo apt-get -y install libminiupnpc-dev libssl-dev libgmp3-dev libboost-chrono1.48-dev libboost-filesystem1.48-dev libboost-system1.48-dev libboost-program-options1.48-dev libboost-thread1.48-dev

# Get db4.8 source, compile and install
wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
tar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix
../dist/configure --enable-cxx
sudo make
sudo make install

# Tell your system where to find db4.8
export BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include"
export BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb-4.8.so /usr/lib/libdb-4.8.so
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb_cxx-4.8.so /usr/lib/libdb_cxx-4.8.so


it this helps you, consider donating  PvfV4FnzRhY5aHCtZCLo3yoAbJTMVQzAQo

Offline tyeken8

  • Jr. Member
  • **
  • Posts: 23
    • View Profile
Re: Linux Port Available
« Reply #35 on: November 12, 2013, 05:06:10 pm »
Thank you very much. It runs great! I am getting 100-140 collisions/min on my Xeon. Is that good?

Pretty nice.

Pls check the log, find if the server rejects your share by `Share data time overflow'. I don't know if this is my bug; I'm working on this now.

BTW: Donate if you like it ;)
« Last Edit: November 12, 2013, 05:07:54 pm by tyeken8 »

Offline JohnD

  • Full Member
  • ***
  • Posts: 76
    • View Profile
Re: Linux Port Available
« Reply #34 on: November 12, 2013, 05:04:27 pm »
Hi everyone,

I've port this miner to Linux. It makes ~85cpm on a Intel Xeon E5620(4C8T@2.4GHz) and 16GB memory. It's really fast (although the codes are so bad formatted). Thanks jh.

Github
https://github.com/Tydus/jhProtominer/tree/linux-port.

How to use
git clone https://github.com/Tydus/jhProtominer -b linux-port
make CFLAGS="-O3 -march=native"
./jhProtominer -o ypool.net -u tyeken8.1 -p 1 -m512

Questions
PM me or issue on github.

Donate
BTC: 1PNDpCQhpvqGLFSYVLZH9gfnz1zuM4cmmi
PTS: PrfVTi6z6iZY7p6jGTLqc2AUycWJgDu42D

Thank you very much. It runs great! I am getting 100-140 collisions/min on my Xeon. Is that good?
Donate if you like it:
PTS: Pi236u2LoqHjt8xs75YdQ7ZEFGuMqVd9sJ
BTC: 1AngSrJcBxG3zBks8DnPzvTU3Q2d678XaF

Offline bytemaster

Re: [ANN] ypool.net + Custom high speed miner (up to 500% faster)
« Reply #33 on: November 12, 2013, 04:36:10 pm »
So is it safe to say that 90 colisions per minut is about the same as 90 hash per minut?

Yes, that that is safe.     What i call HPM is the number of block hashes, not birthday hashes so they are effectively the same thing.

Looks like I will have to update my miner.
For the latest updates checkout my blog: http://bytemaster.bitshares.org
Anything said on these forums does not constitute an intent to create a legal obligation or contract between myself and anyone else.   These are merely my opinions and I reserve the right to change them at any time.

Offline tyeken8

  • Jr. Member
  • **
  • Posts: 23
    • View Profile
Linux Port Available
« Reply #32 on: November 12, 2013, 04:33:46 pm »
Hi everyone,

I've port this miner to Linux. It makes ~90cpm on a Intel Xeon E5620(4C8T@2.4GHz) and 16GB memory. It's really fast (although the codes are so bad formatted). Thanks jh.

Github
https://github.com/Tydus/jhProtominer/tree/linux-port.

How to use
git clone https://github.com/Tydus/jhProtominer -b linux-port
cd jhProtominer/src/jhProtominer
make CFLAGS="-O3 -march=native"
./jhProtominer -o ypool.net -u tyeken8.1 -p 1 -m512

Known issue
Share invalid on some machines.
Pls check the log to see if the server rejects your share by `Share data time overflow'.
I don't know if this is my bug; I'm working on this now.

Questions
PM me or issue on github.

Donate
BTC: 1PNDpCQhpvqGLFSYVLZH9gfnz1zuM4cmmi
PTS: PrfVTi6z6iZY7p6jGTLqc2AUycWJgDu42D


Update
Auto reconnect issue fixed.
Please do "git pull" and recompile the client
« Last Edit: November 13, 2013, 12:29:47 am by tyeken8 »

Offline yago

  • Full Member
  • ***
  • Posts: 188
    • View Profile
Re: [ANN] ypool.net + Custom high speed miner (up to 500% faster)
« Reply #31 on: November 12, 2013, 04:16:21 pm »
Hope to see the linux miner  :)

I'm using it with wine, seems to work ok.
http://bitsharestalk.org/donate.html  <---- Donate to the BitShares Forum ----> PforumPLfVQXTi4QpQqKwoChXHkoHcxGuA

Offline bahamapascal

  • Jr. Member
  • **
  • Posts: 46
    • View Profile
Re: [ANN] ypool.net + Custom high speed miner (up to 500% faster)
« Reply #30 on: November 12, 2013, 03:54:03 pm »
So is it safe to say that 90 colisions per minut is about the same as 90 hash per minut?

Offline cass

  • Hero Member
  • *****
  • Posts: 4311
  • /(┬.┬)\
    • View Profile
Re: [ANN] ypool.net + Custom high speed miner (up to 500% faster)
« Reply #29 on: November 12, 2013, 03:50:52 pm »
Hope to see the linux miner  :)

yes pls ...
█║▌║║█  - - -  The quieter you become, the more you are able to hear  - - -  █║▌║║█

Offline darkyoung

  • Newbie
  • *
  • Posts: 16
    • View Profile
Re: [ANN] ypool.net + Custom high speed miner (up to 500% faster)
« Reply #28 on: November 12, 2013, 03:16:56 pm »
Hope to see the linux miner  :)
Pm8WVX1EmKNfW5X7gNMJjsEtv8juYM5kMB

Offline jh00

  • Jr. Member
  • **
  • Posts: 36
    • View Profile
Re: [ANN] ypool.net + Custom high speed miner (up to 500% faster)
« Reply #27 on: November 12, 2013, 03:04:23 pm »
Sorry for the downtime. There was a ddos attack a few days ago which forced us to migrate to new software/hardware immediately to withstand the attack, it worked but the downside is that the service is a bit unstable now. Yesterday I found a very critical bug that probably has caused a majority of the crashes. Since it was fixed there has not been a single second of downtime caused by our own software. The recent 5 hour downtime was due to a hard disk failure, which is just bad luck and it was also the only time since the launch of our pool where the pool server for mining was down and not only the fronted.

Again I am sorry for the inconvenience.

The good news is that we have ~5000 workers connected and find a block every 6 minutes, not bad for a pool that is up for only 18 hours.