Bitcoin Forum
May 06, 2024, 11:10:08 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 [87] 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 »
1721  Alternate cryptocurrencies / Mining (Altcoins) / Re: Open Source XPM (Primecoin) GPU Miner & Pool xpmforall.org on: June 11, 2017, 04:53:49 PM
Bump... there is little info out there. Which algorthim would one use on Nicehash for primecoin mining?
Nicehash don't support primecoin mining now.

Sapphire R9 390 Fury HBM 4Gb. - 6.8 cpd
Sapphire R9 390 Nitro+ GDDR5 8Gb - 6.5 cpd
Sapphire R9 390X Nitro+ GDDR5 8Gb - 6.8 cpd

Win7x64, driver 16.3.2

I don't know why so slow.
16.3.2 not suitable for XPM mining, try old Catalyst 14.6 driver.

Quote
Are there any plans to write a fresh version of the miner?
After new Radeon RX Vega comes.
1722  Alternate cryptocurrencies / Mining (Altcoins) / Re: Open Source XPM (Primecoin) GPU Miner & Pool xpmforall.org on: May 23, 2017, 12:48:48 PM
eXtremal,
Why not go pool payments (xpmforall) Huh
xpmforall (coinsforall too) XPM payments work properly last 2 years.. unlike zec pool on startup Smiley
Sometimes pool can delay payment up to 4-5 hours, not more.
1723  Alternate cryptocurrencies / Mining (Altcoins) / Re: Open Source XPM (Primecoin) GPU Miner & Pool xpmforall.org on: April 29, 2017, 08:41:21 AM
Anyway, I have two questions.   What are the preferred GPUs for Primecoin mining now, and is there any reason to use coinsforall over xpmforall?
Preferred GPUs is Hawaii - R9 290(X)/390(X). Other GPUs also can be profitable on XPM rather than ETH and others, need use calculator to check them.
If you use coinsforall you can set payment threshold, do manual payments.. and no any lags on website.
1724  Alternate cryptocurrencies / Mining (Altcoins) / Re: Open Source XPM (Primecoin) GPU Miner & Pool xpmforall.org on: April 06, 2017, 08:23:23 AM
hi
how much CPD can i get with r9 390x and r9 nano?
R9 390x more than 15CPD, r9 nano/fury x don't know

What powertune options are valid? 0 - 20?
If ADL is working with your drivers, try 20.

Any idea to optimize the miner for rx480? I only get ~10 cpd.
Polaris too slow in XPM mining.. using GCN assembly can give about +5-10% on this GPUs, but it's not easy.
1725  Alternate cryptocurrencies / Mining (Altcoins) / Re: Open Source XPM (Primecoin) GPU Miner & Pool xpmforall.org on: April 03, 2017, 11:08:23 AM
Updated beta version of xpmclient for NVidia pascal GPUs is here: http://coinsforall.io/distr/xpmclient_v10.1beta.tar.gz
Quote
Fix problems with NVidia multi-gpu systems
Remove huge CPU usage in Linux (Windows still have this issue)
Performance for single GTX1070 is 9.5 CPD.
1726  Alternate cryptocurrencies / Mining (Altcoins) / Re: Gateless Gate: zawawa's open-source ZEC/ETH/XMR/PASC miner (453 sol/s on 7990) on: March 10, 2017, 06:49:48 PM
This patch gives +5-6% on NVidia GTX10xx cards:
Quote
--- a/Core/kernel/equihash.cl
+++ b/Core/kernel/equihash.cl
@@ -102,7 +102,11 @@ typedef __global slot_t *global_pointer_to_slot_t;
 
 __global char *get_slot_ptr(__global char *ht, uint round, uint row, uint slot)
 {
-    return ht + (row * _NR_SLOTS(round) + slot) * _SLOT_LEN(round);
+  // Split row into several sub-rows with 2^RowFragmentLog slots, it gives more L2 cache hits
+  const uint RowFragmentLog = 4;
+  const uint SlotsInRow = 1 << RowFragmentLog;
+  const uint SlotMask = (1 << RowFragmentLog) - 1;
+  return ht + ((slot >> RowFragmentLog)*_NR_ROWS(round)*_SLOT_LEN(round)*SlotsInRow) + (row*_SLOT_LEN(round)*SlotsInRow) + (slot & SlotMask)*_SLOT_LEN(round);
 }
Can't test on AMD now, may be it gives same performance advantage.
Unfortunatelly, this miner useless for NV cards.. only 280sols/s on GTX1070.
1727  Alternate cryptocurrencies / Mining (Altcoins) / Re: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 on: December 13, 2016, 10:04:48 AM
Did anybody implement NR_ROWS less than 16 support already ?
1728  Alternate cryptocurrencies / Mining (Altcoins) / Re: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 on: November 20, 2016, 10:19:33 PM
Did you make any progress with AMD?
Last release don't working on AMD, but if I found a reason, it will be same +10-15% on AMD cards. For more speedup, see my previous post.
1729  Alternate cryptocurrencies / Mining (Altcoins) / Re: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 on: November 20, 2016, 10:04:06 PM
Speedup +10-15% for NVIdia only:
http://coinsforall.io/distr/nvidia/input.cl
http://coinsforall.io/distr/nvidia/param.h

Sorry, but can't work more than 1 hour a day on miner now.

For other developers, you need:
- Decrease NR_ROWS_LOG to 13 or 12. ht_store function works much faster with low NR_ROWS values and when you decrease NR_ROWS, you also decrease total slots amount, because you can use less values for OVERHEAD constant.
- Optimize equihash round for big NR_SLOTS values. I begin do it in last NVidia release, but need much more work..
1730  Alternate cryptocurrencies / Mining (Altcoins) / Re: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 on: November 18, 2016, 01:35:14 PM
Because it's not native and we are discussing open source project here.If you don't want to share your kernel - that's fine. At least give a little hint to mrb,nerdralph and eXtremal for the new version.
Thank you.
I know what need to do, but have a time problem. I'll make an update at this week and instruction for other developers how to get other miners performance.
1731  Alternate cryptocurrencies / Mining (Altcoins) / Re: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 on: November 16, 2016, 07:52:34 PM
Wait next +10% in 12h, then 2 days pause before major release (~+50% ).
Not 10% Sad Only 7-8% for NVidia (AMD may be +1% Smiley ):
http://coinsforall.io/distr/input.cl
for AMD: http://coinsforall.io/distr/param.h.amd
for NVidia: http://coinsforall.io/distr/param.h.nvidia

Stock GTX1070 - 93sols/s now.
1732  Alternate cryptocurrencies / Mining (Altcoins) / Re: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 on: November 16, 2016, 01:36:42 PM
Wait next +10% in 12h, then 2 days pause before major release (~+50% ).
1733  Alternate cryptocurrencies / Pools (Altcoins) / Re: Open source ZEC/XPM pool coinsforall.io on: November 16, 2016, 12:08:36 PM
Hi eXtremal, I have a problem with your pool and can't contact you using admin@coinsforall.io :

Code:
Delivery to the following recipient failed permanently:

     admin@coinsforall.io

Technical details of permanent failure:
read error: generic::failed_precondition: read error (0): error

I'm waiting for a payment to a zaddr (requested days ago) but nothing happens.

Thank you
I changed email on website, use it plz.
1734  Alternate cryptocurrencies / Mining (Altcoins) / Re: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 on: November 16, 2016, 11:59:14 AM
It's not a final SA6 version, it's only +10% for all GPUs (85 sols/s for GTX1070 and 100-105 sols/s for modded RX480):
http://coinsforall.io/distr/input.cl
for AMD: http://coinsforall.io/distr/param.h.amd
for NVidia: http://coinsforall.io/distr/param.h.nvidia
1735  Alternate cryptocurrencies / Mining (Altcoins) / Re: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 on: November 15, 2016, 09:50:25 PM
"Capitalism vs communism mining" shows that with proper $ fee incentive, capitalism beat communism due to human (greedy) nature. Now we have minner sw wars where one side gets 2.5% and thrive with speed well motivated by earnings, while other side gets %0 or free will people donation. We see how it ends. Both author and its users of people version earn less then author and users of paid version. What an mind fk

Sad but mostly true...
Game not finished, wait a several days plz.
Quote
Just say the price and we'll gather donations for you(At least I am willing to donate hashpower for you)
I don't want talk about donations before new SA version.
1736  Alternate cryptocurrencies / Mining (Altcoins) / Re: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 on: November 15, 2016, 06:16:57 PM
For NVidia: processing 2 nonces per iteration gives +5-6% performance, AMD not affected.
1737  Alternate cryptocurrencies / Mining (Altcoins) / Re: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 on: November 15, 2016, 06:06:11 PM
you could not do a normal windows package, instead of installing python and all the linux stuff? not all people are able to use this miner Roll Eyes Roll Eyes Roll Eyes Roll Eyes
Genoil's package not working?

Quote
r9 270 : 70-72 sol
r9 380 : 90-95 sol
I know what need to do for get same performance, but it's not trivial patch, it's full equihash round code rewritting, need a time.
1738  Alternate cryptocurrencies / Mining (Altcoins) / Re: Open Source ZEC (ZCash) GPU Miner AMD & NVidia (up to 45 sol/s on RX480) on: November 14, 2016, 02:20:13 PM
Hi eXtremal,

I sent you a payment request by email containing all the required information.

http://coinsforall.io/#!/coin/ZCASH/wallet/zcPE7HSDd5xJnM2DnzMVj4Dt216KxXZCDGCFRDNLG9oBo5kzLGqkfktj1owrobLqQ3vVmAuVscEUFUYKC6JhLtn9UkQ1Jk7

Now the balance shows 0 ZCASH and no transactions are listed.

Can you please check it out? The balance was 0.00724922 ZCASH and I didn't receive anything on the t-address provided in the email.

Thank you !

Dikyx
You are not right, see https://explorer.zcha.in/transactions/805e5d3d2c1edb767a1f7521322aba05c625c6ef598a6326c48200a1c0570695 and time of this transaction.
1739  Alternate cryptocurrencies / Pools (Altcoins) / Re: Open source ZEC/XPM pool coinsforall.io on: November 14, 2016, 02:17:02 PM
Hey there,

Wondering what the connection details are for XPM pool?

cheers
See config.txt file from native miner archive https://www.dropbox.com/s/2976f8tnhc6p4pj/xpmclient_v9.4.1.tar.gz?dl=0 :
Quote
server = "xpmforall.org";
port = "6666";
Use "xpmforall.org" as server address for mining on old pool or "coinsforall.io" for new XPM pool. New pool does not pay for immature coins, you need wait 2,5 days for payments or continue to use xpmforall.org.
1740  Alternate cryptocurrencies / Mining (Altcoins) / Re: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 on: November 14, 2016, 02:12:57 PM
Yeah, I think it's totally worth it to put up a serious open source competition against Sir. Claymore  Wink
We shall be back.
I'll try get Claymore's v5/optiminer speed in 2-3 days.

p.s. he have a more motivation because his model (miner with fee) works perfectly - opposite to my (opensource miner and own pool), miners don't want support coinsforall.io Sad
Pages: « 1 ... 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 [87] 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!