Pages:
Author

Topic: [ANN] [Metiscoin] [MTS] Unique algorithm | NO PREMINE| NEW POOL! CPU/GPU - page 44. (Read 154480 times)

newbie
Activity: 42
Merit: 0
maybe, fair mtc price= 1 mtc = 0.01 btc. 

wait for other exchange.
newbie
Activity: 5
Merit: 0
WTS 30 MTC for 0.2 BTC
please PM me
newbie
Activity: 21
Merit: 0
Selling 50MTC = 0,7BTC

PM with offer
newbie
Activity: 13
Merit: 0
I tried mining MTC just about 1 or 2 days after the release and was able to get only 5 after about 24 hours Sad

If anyone wants to share some love, here's my address: MPRd1qH2bJ6vnajcDFYL1TCVWW7x1sNH46

I started to mine at ypool a couple hours after they started with the coin, and got 18 coins in the first 24 hours, with four cpu's. Then it slowed to a crawl.

So explain to me how this coin was not instamined, considering that there was very quickly over a million of them:
http://109.230.230.110/mtc/

member
Activity: 100
Merit: 10
NEW PROGRAM FAST++ ypool

cryptsy LIKE exchange

Win32/64bit + Ubuntu 13.04 x64

New
Khash 300 -->>400-500 
Shares 1,5x Fast


Did I miss something?  I took a look at the source code and it seems to be identical to my modified version of metiscoinMiner.cpp.  It seems like you took the stock v1.1 from jh00, called it v1.2 and copy/pasted my code.

What else did you change? (aside from the developer fees)

He changed the version number, hahah~  Grin
hero member
Activity: 616
Merit: 500
I've added a few more performance tweaks and pushed the kHash overflow fix to github.
The other performance tweaks I have not pushed because they hard code 64-bit mode for some of the hash algorithms.  For the sake of openness, here's the changes:

keccak.c
Code:
#define SPH_KECCAK_64       1
#define SPH_KECCAK_UNROLL   0
#define SPH_KECCAK_NOCOPY   0

metis.c
Code:
#define SPH_KECCAK_NOCOPY   0
#define SPH_64              1

I've also compiled the code through Visual Studio 2010 with performance guided optimization and the windows builds now regularly meet or exceeds the jh00 speeds.
I've built two versions: one with the /favor:INTEL64 flag and one with /favor:AMD64.  Pick whichever matches your processor.
edit: AMD users!  Try the favorAMD build first, then the favorBLEND build.  Apparently /favor:AMD64 prefers older AMD processors (Athlon, Opteron, and Sempron).  See which works best for you!

Download Links:
https://mega.co.nz/#F!YsZSHYKA!IC8LK_MBGwqC-gWOpO7zoQ
https://www.dropbox.com/sh/wtxvxvkirxax2vj/9P_Rxb9V1y (dropbox mirror)

Thanks! A 20Kh/s boost.

EDIT: And climbing!
full member
Activity: 168
Merit: 100
NEW PROGRAM FAST++ ypool

cryptsy LIKE exchange

Win32/64bit + Ubuntu 13.04 x64

New
Khash 300 -->>400-500 
Shares 1,5x Fast


Did I miss something?  I took a look at the source code and it seems to be identical to my modified version of metiscoinMiner.cpp.  It seems like you took the stock v1.1 from jh00, called it v1.2 and copy/pasted my code.

What else did you change? (aside from the developer fees)
newbie
Activity: 8
Merit: 0
NEW PROGRAM FAST++ ypool

cryptsy LIKE exchange

Win32/64bit + Ubuntu 13.04 x64

New
Khash 300 -->>400-500 
Shares 1,5x Fast

WIN DOWNLOAD : dropbox
                         mega.co

Instal :vcredist_x64.exe / x32
modify example :  xptMiner.exe -o ypool.net -u username.yourworkername -p password -t thread(->1-32 core) pause
save and 2x click :-)

Mine in LINUX UBUNTU x64


http://i.imgur.com/1yP5pzZ.png
Follow Video

HOW TO CLOUD MINE METISCOIN

miner of metiscoin for ypool.net

HOW TO CLOUD MINE METISCOIN
Sign up for Digital Ocean Virtual Server : REGISTR VPS
for 20 USD good server add 10 USD + 10 FREE Use this code for $10 free credit: DIVEIN10  or ssd2014
REGISTR VPS


Commands:
********************

sudo apt-get update

sudo apt-get install yasm -y git make g++ build-essential libminiupnpc-dev

sudo apt-get install -y libdb++-dev libgmp-dev libssl-dev dos2unix

git clone https://github.com/conicek/xptminer-linux

cd xptminer-linux

make

./xpt -o http://ypool.net -u username.worker -p password -t 4

*************************************
newbie
Activity: 1
Merit: 0
I took the time to finally get xptMiner to compile with GCC for Windows.
It was a nightmare for me, but what does that mean for you?  Christmas may have come early.

I've compiled my optimized code for each of the following architectures: generic, core2, corei7, corei7-avx, k8, k8-sse3, and barcelona (k10).

The Windows x64 binaries are available from here:
https://mega.co.nz/#F!YsZSHYKA!IC8LK_MBGwqC-gWOpO7zoQ
https://www.dropbox.com/sh/wtxvxvkirxax2vj/9P_Rxb9V1y (dropbox mirror)

Use whichever corresponds to your processor architecture.

If you're unsure, here's a quick guide based on your CPU manufacturer and age:
Intel: [Older] core2 -> corei7 -> corei7-avx [Newer]
AMD: [Older] k8 -> k8-sse3 -> barcelona (k10) [Newer]
Worst case scenario, use generic.


I will not be releasing any 32-bit builds.  "High performance 32-bit" is an oxymoron.


Let me know what sort of improvements you see!
Some builds may be slightly slower than the stock jh00 miner.  It all depends on your CPU.

I've added another 5-10% optimization to the code and hopefully fixed the issue with AMD builds.
It seems that mingw-gcc thinks that AMD processors don't support SSE, so it left them disabled.  I've fixed that.

The code optimizations have been pushed to the github repo.
The new binaries have been uploaded. (same URLs)

I've added a few more performance tweaks and pushed the kHash overflow fix to github.
The other performance tweaks I have not pushed because they hard code 64-bit mode for some of the hash algorithms.  For the sake of openness, here's the changes:

keccak.c
Code:
#define SPH_KECCAK_64       1
#define SPH_KECCAK_UNROLL   0
#define SPH_KECCAK_NOCOPY   0

metis.c
Code:
#define SPH_KECCAK_NOCOPY   0
#define SPH_64              1

I've also compiled the code through Visual Studio 2010 with performance guided optimization and the windows builds now regularly meet or exceeds the jh00 speeds.
I've built two versions: one with the /favor:INTEL64 flag and one with /favor:AMD64.  Pick whichever matches your processor.
edit: AMD users!  Try the favorAMD build first, then the favorBLEND build.  Apparently /favor:AMD64 prefers older AMD processors (Athlon, Opteron, and Sempron).  See which works best for you!

Download Links:
https://mega.co.nz/#F!YsZSHYKA!IC8LK_MBGwqC-gWOpO7zoQ
https://www.dropbox.com/sh/wtxvxvkirxax2vj/9P_Rxb9V1y (dropbox mirror)


http://i.imgur.com/0VtFTaB.png
(My AMD Phenom II x4 955 @ stock clock)

Tested favorIntel and it gave me 1100kH/s compared to 1150kH/s for the ypool suggested one.. It was on a i7-4930K.

*****GREAT JOB**** Using 2x Opteron 6174 I was getting 576Kh/s, using this version I'm getting 2200+ kh/s. I will try to use it to mine XPm.
Thank you very much!
newbie
Activity: 15
Merit: 0
I took the time to finally get xptMiner to compile with GCC for Windows.
It was a nightmare for me, but what does that mean for you?  Christmas may have come early.

I've compiled my optimized code for each of the following architectures: generic, core2, corei7, corei7-avx, k8, k8-sse3, and barcelona (k10).

The Windows x64 binaries are available from here:
https://mega.co.nz/#F!YsZSHYKA!IC8LK_MBGwqC-gWOpO7zoQ
https://www.dropbox.com/sh/wtxvxvkirxax2vj/9P_Rxb9V1y (dropbox mirror)

Use whichever corresponds to your processor architecture.

If you're unsure, here's a quick guide based on your CPU manufacturer and age:
Intel: [Older] core2 -> corei7 -> corei7-avx [Newer]
AMD: [Older] k8 -> k8-sse3 -> barcelona (k10) [Newer]
Worst case scenario, use generic.


I will not be releasing any 32-bit builds.  "High performance 32-bit" is an oxymoron.


Let me know what sort of improvements you see!
Some builds may be slightly slower than the stock jh00 miner.  It all depends on your CPU.

I've added another 5-10% optimization to the code and hopefully fixed the issue with AMD builds.
It seems that mingw-gcc thinks that AMD processors don't support SSE, so it left them disabled.  I've fixed that.

The code optimizations have been pushed to the github repo.
The new binaries have been uploaded. (same URLs)

I've added a few more performance tweaks and pushed the kHash overflow fix to github.
The other performance tweaks I have not pushed because they hard code 64-bit mode for some of the hash algorithms.  For the sake of openness, here's the changes:

keccak.c
Code:
#define SPH_KECCAK_64       1
#define SPH_KECCAK_UNROLL   0
#define SPH_KECCAK_NOCOPY   0

metis.c
Code:
#define SPH_KECCAK_NOCOPY   0
#define SPH_64              1

I've also compiled the code through Visual Studio 2010 with performance guided optimization and the windows builds now regularly meet or exceeds the jh00 speeds.
I've built two versions: one with the /favor:INTEL64 flag and one with /favor:AMD64.  Pick whichever matches your processor.
edit: AMD users!  Try the favorAMD build first, then the favorBLEND build.  Apparently /favor:AMD64 prefers older AMD processors (Athlon, Opteron, and Sempron).  See which works best for you!

Download Links:
https://mega.co.nz/#F!YsZSHYKA!IC8LK_MBGwqC-gWOpO7zoQ
https://www.dropbox.com/sh/wtxvxvkirxax2vj/9P_Rxb9V1y (dropbox mirror)


http://i.imgur.com/0VtFTaB.png
(My AMD Phenom II x4 955 @ stock clock)

Tested favorIntel and it gave me 1100kH/s compared to 1150kH/s for the ypool suggested one.. It was on a i7-4930K.
sr. member
Activity: 294
Merit: 250
WTS 200 MTC, pm me with a reasonable offer in BTC or LTC.
full member
Activity: 168
Merit: 100
I took the time to finally get xptMiner to compile with GCC for Windows.
It was a nightmare for me, but what does that mean for you?  Christmas may have come early.

I've compiled my optimized code for each of the following architectures: generic, core2, corei7, corei7-avx, k8, k8-sse3, and barcelona (k10).

The Windows x64 binaries are available from here:
https://mega.co.nz/#F!YsZSHYKA!IC8LK_MBGwqC-gWOpO7zoQ
https://www.dropbox.com/sh/wtxvxvkirxax2vj/9P_Rxb9V1y (dropbox mirror)

Use whichever corresponds to your processor architecture.

If you're unsure, here's a quick guide based on your CPU manufacturer and age:
Intel: [Older] core2 -> corei7 -> corei7-avx [Newer]
AMD: [Older] k8 -> k8-sse3 -> barcelona (k10) [Newer]
Worst case scenario, use generic.


I will not be releasing any 32-bit builds.  "High performance 32-bit" is an oxymoron.


Let me know what sort of improvements you see!
Some builds may be slightly slower than the stock jh00 miner.  It all depends on your CPU.

I've added another 5-10% optimization to the code and hopefully fixed the issue with AMD builds.
It seems that mingw-gcc thinks that AMD processors don't support SSE, so it left them disabled.  I've fixed that.

The code optimizations have been pushed to the github repo.
The new binaries have been uploaded. (same URLs)

I've added a few more performance tweaks and pushed the kHash overflow fix to github.
The other performance tweaks I have not pushed because they hard code 64-bit mode for some of the hash algorithms.  For the sake of openness, here's the changes:

keccak.c
Code:
#define SPH_KECCAK_64       1
#define SPH_KECCAK_UNROLL   0
#define SPH_KECCAK_NOCOPY   0

metis.c
Code:
#define SPH_KECCAK_NOCOPY   0
#define SPH_64              1

I've also compiled the code through Visual Studio 2010 with performance guided optimization and the windows builds now regularly meet or exceeds the jh00 speeds.
I've built two versions: one with the /favor:INTEL64 flag and one with /favor:AMD64.  Pick whichever matches your processor.
edit: AMD users!  Try the favorAMD build first, then the favorBLEND build.  Apparently /favor:AMD64 prefers older AMD processors (Athlon, Opteron, and Sempron).  See which works best for you!

Download Links:
https://mega.co.nz/#F!YsZSHYKA!IC8LK_MBGwqC-gWOpO7zoQ
https://www.dropbox.com/sh/wtxvxvkirxax2vj/9P_Rxb9V1y (dropbox mirror)



(My AMD Phenom II x4 955 @ stock clock)
sr. member
Activity: 434
Merit: 250
I actually sold 200 for 0.04 2 days b4 exchange, thought these prices were just imaginary.
sr. member
Activity: 294
Merit: 250
Lowest ask
0.000903 BTC

Highest bid
0.000827 BTC

R u crazy?
Cant even imagine who sell it now.

And: any news about exchanges? There was a giveaway for voting on Cryptsy. I think Dev must add this link (https://bitcointalk.org/index.php?topic=432278.160) in the 1st post. And create voting on Reddit to place MTC on Coined up.
Dev, where r u?
hero member
Activity: 616
Merit: 500
Hmm. I'm getting 295Kh/s with all 4 cores of my i7-4750HQ but with only 3 threads enabled it climbs up to 410Kh/s !

Can anybody confirm this behavior on other CPU models?

EDIT: with new miner I'm getting best results with 4 threads. (4 cores) 740Kh/s
newbie
Activity: 21
Merit: 0
WTS 50MTC = 0,7BTC

PM with offer

in poloniex.com exchange

50 MTC = 0.04515 BTC

saw it, waiting for another exchange, this will climb up for sure
sr. member
Activity: 357
Merit: 250
WTS 50MTC = 0,7BTC

PM with offer

in poloniex.com exchange

50 MTC = 0.04515 BTC
member
Activity: 94
Merit: 10
haswell i5 - 801kHs to 794 max, now...  Sad
newbie
Activity: 21
Merit: 0
WTS 50MTC = 0,7BTC

PM with offer
newbie
Activity: 8
Merit: 0
Help please ..


the miner from ypool .. got somekind of virus .. i know its false but my antivirus not letting it ..


can i use normal cpu miner Huh


and what is the port for that site to mine mtc its not in the how to page ..


NEW PROGRAM FAST++ ypool

cryptsy LIKE exchange

Win32/64bit + Ubuntu 13.04 x64

New
Khash 300 -->>400-500
Shares 1,5x Fast

WIN DOWNLOAD : dropbox
                         mega.co

Instal :vcredist_x64.exe / x32
modify example :  xptMiner.exe -o ypool.net -u username.yourworkername -p password -t thread(->1-32 core) pause
save and 2x click :-)

Mine in LINUX UBUNTU x64

Follow Video

HOW TO CLOUD MINE METISCOIN

miner of metiscoin for ypool.net

HOW TO CLOUD MINE METISCOIN
Sign up for Digital Ocean Virtual Server : REGISTR VPS
for 20 USD good server add 10 USD + 10 FREE Use this code for $10 free credit: DIVEIN10  or ssd2014
REGISTR VPS
Pages:
Jump to: