MinermanNC
Legendary
Offline
Activity: 2198
Merit: 1000
|
|
February 01, 2014, 05:12:41 AM |
|
Still waiting I am not going to give away my coins on Poloniex ,,, waiting to see of cryptsy will list. They should I would think, but they may be waiting to see and hear more form the devs... does anyone have anything new about the devs and whats next? Anyways, I feel good about this coin so far. Hoarding for now
|
*BTC: 1DiR25SPo84sThzTATr27EZEQZLt6hv6tG
|
|
|
skwinx
Member
Offline
Activity: 100
Merit: 10
|
|
February 01, 2014, 05:48:42 AM |
|
|
|
|
|
helloge
Legendary
Offline
Activity: 1057
Merit: 1000
The Experience Layer of the Decentralized Internet
|
|
February 01, 2014, 06:10:32 AM |
|
what's about this exchange? the new one ? is the guy who open this site the member of this forum?
|
|
|
|
bsunau7
Member
Offline
Activity: 114
Merit: 10
|
|
February 01, 2014, 06:15:50 AM |
|
After fixing a SIGBUS error I managed to get clintar's miner working on ARM. Still some issues (which don't seem to impact mining)
Four A15 cores x 1.4GHz getting 125kHash/s
No optimizations yet but I am getting about 25% of hash rate of my E5630 (per core).
ARM looks to be over 6 times more hash per watt (getting any publish power consumption number for my ARM is difficult!!)
|
|
|
|
skwinx
Member
Offline
Activity: 100
Merit: 10
|
|
February 01, 2014, 06:22:15 AM |
|
what's about this exchange? the new one ? is the guy who open this site the member of this forum? I do not know, I just looking on ypool chat.
|
|
|
|
hanki
Newbie
Offline
Activity: 18
Merit: 0
|
|
February 01, 2014, 11:52:53 AM |
|
Guuys! diff very low again! only 106663.233497 (ypool stat)
|
|
|
|
TiberiuC
|
|
February 01, 2014, 02:25:21 PM |
|
Guuys! diff very low again! only 106663.233497 (ypool stat)
i wouldn't say very low...
|
|
|
|
Azrael_PT
Full Member
Offline
Activity: 190
Merit: 100
Par Pari Refertur
|
|
February 01, 2014, 07:06:29 PM |
|
|
Donations: 16WPtSGFtj7wH2TxQi5tZfdxtAG84zPVwD CEX.IO
|
|
|
crendore
|
|
February 01, 2014, 07:37:14 PM |
|
After fixing a SIGBUS error I managed to get clintar's miner working on ARM. Still some issues (which don't seem to impact mining)
Four A15 cores x 1.4GHz getting 125kHash/s
No optimizations yet but I am getting about 25% of hash rate of my E5630 (per core).
ARM looks to be over 6 times more hash per watt (getting any publish power consumption number for my ARM is difficult!!)
Whoa sweet dude! care to share your source code fixes? Which Micropc has 4 A15 cores???
|
|
|
|
DubFX
|
|
February 01, 2014, 08:12:45 PM |
|
price crashing? any preddictions?
|
|
|
|
chip99
|
|
February 01, 2014, 08:21:04 PM |
|
0.002btc per mtc in 1month.
|
|
|
|
|
bsunau7
Member
Offline
Activity: 114
Merit: 10
|
|
February 01, 2014, 10:52:38 PM |
|
After fixing a SIGBUS error I managed to get clintar's miner working on ARM. Still some issues (which don't seem to impact mining)
Four A15 cores x 1.4GHz getting 125kHash/s
No optimizations yet but I am getting about 25% of hash rate of my E5630 (per core).
ARM looks to be over 6 times more hash per watt (getting any publish power consumption number for my ARM is difficult!!)
Whoa sweet dude! care to share your source code fixes? Which Micropc has 4 A15 cores??? look up odroid.com for the XU boards, they make use of the Samsung SoC's used in Samsung devices. Also look at radxa.com, I don't have one but a cheaper price and higher clock but an A9 chip without CPU heatsink (i.e no sure how hot it'll run). The xpt parser was causing the crashes (when compiled without optimizations it would run at quarter speed and not crash). Patch which was a quick hack and only addresses the crash (and I've not validated correctness!) is: --- ../../xptMiner/xptMiner/xptPacketbuffer.cpp 2014-01-31 23:57:51.477412594 +1100 +++ xptPacketbuffer.cpp 2014-02-01 15:42:44.922439628 +1100 @@ -74,7 +74,15 @@ *error = true; return 0; } - float v = *(float*)(pb->buffer+pb->parserIndex); + // ARM has alignment requirements which the compiler seems to have + // issues with with -O + uint8 tmp[4]; + tmp[0] = *(uint8*)(pb->buffer+pb->parserIndex); + tmp[1] = *(uint8*)(pb->buffer+pb->parserIndex+1); + tmp[2] = *(uint8*)(pb->buffer+pb->parserIndex+2); + tmp[3] = *(uint8*)(pb->buffer+pb->parserIndex+3); + + float v = *(float*)(&tmp); pb->parserIndex += 4; *error = false; return v; @@ -377,4 +385,4 @@ stringData[stringLength] = '\0'; pb->parserIndex += stringLength; *error = false; -} \ No newline at end of file +}
There are other parts which potentially suffer from the same effect (but don't crash) which is why I assume the "ping" messages are sometimes screwy. I might roll it into clintar's latest and see how it goes. Regards,
|
|
|
|
Donate.MTC.To.Me
Newbie
Offline
Activity: 2
Merit: 0
|
|
February 02, 2014, 07:44:40 AM |
|
Hey, is everyone tired of developer fees on linux versions of xptminer? Sure - the developers made it all possible, but if you are like me, you are pretty greedy with your coins. That's why, I took the open source code for xptminer, and removed all of the developer fee sections of code! Why am I posting it here, well to get donations of course! I'm well aware most people wont tip or donate, but it's worth a shot! Here's how you do it: I accept tips to: M8u6BhbCF4YfRVWshixCneZ74gN6JXdWHG Type the following lines in the terminal: sudo apt-get update sudo apt-get install build-essential bc curl dos2unix fail2ban haveged libboost-all-dev libdb++-dev libminiupnpc-dev libssl-dev m4 -y wget —no-check-certificate https://www.dropbox.com/s/c1761a414nldhpr/xptminer.zip unzip xtpminer.zip sudo CFLAGS="-march=native -mtune=native” make ./xpt -o http://ypool.net -u user -p pass
I am running this on several of my machines with ubuntu, and it has worked fine for me. Let me know what you think. It's exactly the code off github, with donation code literally just commented out haha.
|
|
|
|
kuperis
|
|
February 02, 2014, 07:53:19 AM |
|
for now is fair price... when is arround 0.0006-0.0008 BTC in next 3months could be 0.002-0.003 BTC if not dies this coin.
|
|
|
|
clintar
|
|
February 02, 2014, 08:19:01 AM |
|
Hey, is everyone tired of developer fees on linux versions of xptminer? Sure - the developers made it all possible, but if you are like me, you are pretty greedy with your coins. That's why, I took the open source code for xptminer, and removed all of the developer fee sections of code! Why am I posting it here, well to get donations of course! I'm well aware most people wont tip or donate, but it's worth a shot! Here's how you do it: I accept tips to: M8u6BhbCF4YfRVWshixCneZ74gN6JXdWHG Type the following lines in the terminal: sudo apt-get update sudo apt-get install build-essential bc curl dos2unix fail2ban haveged libboost-all-dev libdb++-dev libminiupnpc-dev libssl-dev m4 -y wget —no-check-certificate https://www.dropbox.com/s/c1761a414nldhpr/xptminer.zip unzip xtpminer.zip sudo CFLAGS="-march=native -mtune=native” make ./xpt -o http://ypool.net -u user -p pass
I am running this on several of my machines with ubuntu, and it has worked fine for me. Let me know what you think. It's exactly the code off github, with donation code literally just commented out haha. If it was my version, you could just use the -d option and set it to 0. Lot easier.
|
|
|
|
phm
Full Member
Offline
Activity: 378
Merit: 110
DATABLOCKCHAIN.IO SALE IS LIVE | MVP @ DBC.IO
|
|
February 02, 2014, 11:57:28 AM Last edit: February 02, 2014, 01:51:23 PM by phm |
|
Do you get your payouts from ypool? I see a payout in my account that was almost 1 hour ago and it still did not make it to my wallet.
Edit: after 2 more hours I finally received my payout.
|
|
|
|
SP4RK7
|
|
February 02, 2014, 11:59:47 AM |
|
Do you get your payouts from ypool? I see a payout in my account that was almost 1 hour ago and it still did not make it to my wallet.
I think payouts are set to once an hour it does take a while sometimes, you will get them though.
|
|
|
|
hanki
Newbie
Offline
Activity: 18
Merit: 0
|
|
February 02, 2014, 12:12:13 PM |
|
Do you get your payouts from ypool? I see a payout in my account that was almost 1 hour ago and it still did not make it to my wallet.
Yes, I maked 2 hour ago, 5min and get my wallet this coins!
|
|
|
|
grebec92
|
|
February 02, 2014, 02:49:16 PM |
|
Hi guys! Any news about Cryptsy or Coined Up?
|
|
|
|
|