Bitcoin Forum
June 20, 2024, 06:56:06 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 [123] 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 ... 248 »
2441  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell / Pascal kernels. on: October 14, 2016, 12:24:52 AM
Does 1.5.74 or 1.5.80 support LBRY or only the private miners?

It doesn't seem to work, I'm not sure if the algo config is correct and I couldn't find documentation to set the algo.

I've tried 

ccminer.exe -a lbry -o stratum+tcp://lbry.suprnova.cc:6256 -u username.workerx -p x
pause

ccminer.exe --algo=lbry -o stratum+tcp://lbry.suprnova.cc:6256 -u username.workerx -p x
pause

It doesn't work, use tpruvot's.
2442  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell / Pascal kernels. on: October 13, 2016, 08:02:06 PM
Solution to most of your problems: don't overclock! You will make better use of your electricity and your cards will last much longer.
2443  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell / Pascal kernels. on: October 13, 2016, 12:36:04 PM
http://www.gainward.com/main/vgapro.php?id=993&lang=en





Basic model and the cheapest. I like it because it has 2 fans. one 6pin connector and 90watt in the wall. (doesn't need powered risers)  If you oc too much the card will trottle down to the maximum stable speed.
Nice..

if used for mining 7/24, the fans will likely break way before the warranty ends.
for mining, ball bearing fans are way more reliable, and I'd say required, unless you sell the cards after a handful of months.
2444  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell / Pascal kernels. on: October 13, 2016, 11:14:22 AM
beware of poloniex, they have disabled XCN wallet as well, and for a couple weeks already!!!
2445  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [VLT] Veltor / Duplex Micropayment Channel / SegWit on: October 13, 2016, 07:08:29 AM
I have some trouble with the implementation, porting back some of the SegWit functions in to the older coinbase.
Sometimes I wish I could just start over, learned so much within the past couple of weeks.
Would have done things very differently.
Things would go much faster if I'd be working on a more modern coinbase.

J.V.

Maybe that's the way to go: correct me if I'm wrong but Veltor now is just bitcoin with different pow algo and some tuning.
2446  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer M7 (XCN) by djm34, fixed + optimized for cuda 8 and new cards by pallas on: October 13, 2016, 07:06:08 AM
Would there be much involved in changing the cuda toolkit used to 8.0 so it compiles with VS2015?

It does use cuda 8 already and compiles fine on linux and, I assume, Windows with mingw. For visual studio, I think you need to update the project file.
2447  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer M7 (XCN) by djm34, fixed + optimized for cuda 8 and new cards by pallas on: October 12, 2016, 03:37:30 PM
Code:
		m7_keccak512_cpu_hash(thr_id, throughput*tp_coef_f[thr_id], pdata[29], KeccakH[thr_id], order++);
m7_sha512_cpu_hash_120(thr_id, throughput*tp_coef_f[thr_id], pdata[29], d_prod1[thr_id], order++);
    cpu_mulT4(0, throughput*tp_coef_f[thr_id], 8, 8, d_prod1[thr_id], KeccakH[thr_id], d_prod0[thr_id],order); //64
// MyStreamSynchronize(0,order++,thr_id);

    m7_whirlpool512_cpu_hash_120(thr_id, throughput*tp_coef_f[thr_id], pdata[29], KeccakH[thr_id], order++);
cpu_mulT4(0, throughput*tp_coef_f[thr_id],8, 16, KeccakH[thr_id], d_prod0[thr_id], d_prod1[thr_id],order); //128
// MyStreamSynchronize(0,order++,thr_id);

m7_sha256_cpu_hash_120(thr_id, throughput*tp_coef_f[thr_id], pdata[29], KeccakH[thr_id], order++);
cpu_mulT4(0, throughput*tp_coef_f[thr_id], 4, 24, KeccakH[thr_id], d_prod1[thr_id], d_prod0[thr_id],order); //96
// MyStreamSynchronize(0,order++,thr_id);

m7_haval256_cpu_hash_120(thr_id, throughput*tp_coef_f[thr_id], pdata[29], KeccakH[thr_id], order++);
cpu_mulT4(0, throughput*tp_coef_f[thr_id], 4, 28, KeccakH[thr_id], d_prod0[thr_id], d_prod1[thr_id],order);  //112
// MyStreamSynchronize(0,order++,thr_id);

m7_tiger192_cpu_hash_120(thr_id, throughput*tp_coef_f[thr_id], pdata[29], KeccakH[thr_id], order++);
m7_bigmul_unroll1_cpu(thr_id, throughput*tp_coef_f[thr_id], KeccakH[thr_id], d_prod1[thr_id], d_prod0[thr_id],order);
// MyStreamSynchronize(0,order++,thr_id);

m7_ripemd160_cpu_hash_120(thr_id, throughput*tp_coef_f[thr_id], pdata[29], KeccakH[thr_id], order++);
m7_bigmul_unroll2_cpu(thr_id, throughput*tp_coef_f[thr_id], KeccakH[thr_id], d_prod0[thr_id], d_prod1[thr_id],order);
// MyStreamSynchronize(0,order++,thr_id);

uint32_t foundNonce = m7_sha256_cpu_hash_300(thr_id, throughput*tp_coef_f[thr_id], pdata[29], NULL, d_prod1[thr_id], order);

someone must rewrite this(join in one function) to prevent to many memory writes... like Tanguy Pruvot did with lbry miner.

no, it will be much slower.
you can do it with lbry because they are a few little hashes, those are 7 (+ all the muls) and some are much heavier (like whirlpool).
2448  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN][GRS][DMD] Pallas optimized groestlcoin / diamond etc. opencl kernel on: October 12, 2016, 12:38:27 PM
Quote
did you put memory to the lowest clock possible?
about low difficulty, try adding this:

--difficulty-multiplier 0.0039062500

EDIT: you should use -k diamond and rename groestlcoin.cl to diamond.cl

no, memory runs at 1450(1st card) and 1250(2nd card).

adding difficulty-multiplier results in much faster output of rejected shares.
renaming groestlcoin.cl to diamond.cl and running sgminer-5.4.0 with -k diamond gives same low hashrate(11 and 12) unless i rebuild bin file. That works !!!! Thank you so much Pallas. Going to put a positive feedback for your endless help.
What sgminer version do you use ?

if you set ram to the lowest possible clock, which may be limited to core clock - 200, you will save power and be able to overclock more.
2449  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN][GRS][DMD] Pallas optimized groestlcoin / diamond etc. opencl kernel on: October 12, 2016, 11:18:45 AM
try with another driver version:

https://bitcointalk.org/index.php?topic=779598.msg8787566#msg8787566

you don't need to install the whole driver, just put the opencl.dll file in the sgminer executable folder and run.
Are u using Linux? I've found some info dating 2014 year saying video drivers under linux(especially 14.6) runs better for groestl.
i've tried 14.6_beta, 14.7_rc3 - no difference at all. also played with .bin .cl files.

btw do u have a hawaii.cl file ? Using groestlcoin.cl gives rejected shares 100% on DiamondCoin
sgminer-5.4.0-nicehash - gives little better +1-1.5Mh/s hashrate

Yes I use linux.
Diamond and groestlcoin use the same kernel.
DiamondCoin is another thing, unrelated to diamond.

Thank you ! Finally i got results that i wanted. Just needed to use groestlcoin.cl in bat file by writing -k groestlcoin. Makes hashrate 15.2 Mh/s for 1100 mhz core and 16.53 Mh/s for 1200 mhz core.  Smiley Smiley Smiley

Wait.... all shares are rejected due to low difficulty

did you put memory to the lowest clock possible?
about low difficulty, try adding this:

--difficulty-multiplier 0.0039062500

EDIT: you should use -k diamond and rename groestlcoin.cl to diamond.cl
2450  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer M7 (XCN) by djm34, fixed + optimized for cuda 8 and new cards by pallas on: October 12, 2016, 11:16:31 AM
hm, is there source code? just require compile?

yes it's on git, see first post.

what version there is there on git, the one that does 20MH?

the one that works on cuda8 and pascal and is about 10% faster than the code base (djm version).
2451  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer M7 (XCN) by djm34, fixed + optimized for cuda 8 and new cards by pallas on: October 12, 2016, 09:54:34 AM
hm, is there source code? just require compile?

yes it's on git, see first post.
2452  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN][GRS][DMD] Pallas optimized groestlcoin / diamond etc. opencl kernel on: October 12, 2016, 06:50:28 AM
try with another driver version:

https://bitcointalk.org/index.php?topic=779598.msg8787566#msg8787566

you don't need to install the whole driver, just put the opencl.dll file in the sgminer executable folder and run.
Are u using Linux? I've found some info dating 2014 year saying video drivers under linux(especially 14.6) runs better for groestl.
i've tried 14.6_beta, 14.7_rc3 - no difference at all. also played with .bin .cl files.

btw do u have a hawaii.cl file ? Using groestlcoin.cl gives rejected shares 100% on DiamondCoin
sgminer-5.4.0-nicehash - gives little better +1-1.5Mh/s hashrate

Yes I use linux.
Diamond and groestlcoin use the same kernel.
DiamondCoin is another thing, unrelated to diamond.
2453  Economy / Service Announcements / Re: [ANN] NiceHash.com - sell & buy hash rate cloud mining service / multipool on: October 11, 2016, 02:05:55 PM
HODL what is hodl algorithm please..what coin.  thanks

HODLcoin.
But, the mined coins are unspendable for 1 year, so nobody's mining it unless really into the coin itself.
CPU only AFAIK.
2454  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN][GRS][DMD] Pallas optimized groestlcoin / diamond etc. opencl kernel on: October 11, 2016, 11:51:14 AM
...

does it submit valid shares?
if you look one or two pages back, there are alternative links for the v1 sources.

1-2 pages ago there is a same link as on page №1. Do i need to use this bin file along with v1 or v2 kernel files(.cl) ? If so - where to get them ? Links are broken (((

You should use a bin file OR a cl file (which will generate the bins itself).
Here is an alternative link to the v1 sources:

https://app.box.com/s/9vikvemf7acio3uns7taorodqmod42ej
Got this. Thanks for sharing link. I've downloaded .cl file, deleted existing .bin and tried to run sgminer with following command line:
sgminer.exe -k diamond -o stratum+tcp://eu.miningfield.com:3376 -u x -p x --difficulty-multiplier 0.0039062500 --intensity 22
same results 10-11Mh/s per one 7950 card. The one that overclocked to 1200Mhz core/1450Mhz mem runs 11Mhs. Not even near 18Mh/s that i've seen in this thread. I am using 4.1.1 sgminer, do i need to use other version ?

try with another driver version:

https://bitcointalk.org/index.php?topic=779598.msg8787566#msg8787566

you don't need to install the whole driver, just put the opencl.dll file in the sgminer executable folder and run.
2455  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN][GRS][DMD] Pallas optimized groestlcoin / diamond etc. opencl kernel on: October 11, 2016, 09:16:19 AM
...

does it submit valid shares?
if you look one or two pages back, there are alternative links for the v1 sources.

1-2 pages ago there is a same link as on page №1. Do i need to use this bin file along with v1 or v2 kernel files(.cl) ? If so - where to get them ? Links are broken (((

You should use a bin file OR a cl file (which will generate the bins itself).
Here is an alternative link to the v1 sources:

https://app.box.com/s/9vikvemf7acio3uns7taorodqmod42ej
2456  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN][GRS][DMD] Pallas optimized groestlcoin / diamond etc. opencl kernel on: October 10, 2016, 01:29:15 PM
Hey, guys. Running 2x7950 GPU's (Asus and Gigabyte). After installing 14.6 instead of 15.12 catalyst my hashrate on mining Diamond Coin increased from 6.2(1st GPU) and 6.6(2nd GPU) to significant 10.2(1st) and 11.09(2nd)Mh/s !!!

Looking for more improvement. Links on first message are broken. Where to get v2 experimental cl kernel, pls ? Send to miner.hid@ya.ru someone kind please.

For best result, you need to get Wolf0's Tahiti bin, see first post.

I've downloaded Wolf's bin on first page. Delete my old .bin files after i copied their names, then pasted Wolf's bin and renamed it to copied string. Correct ?
It gives me significant small hashrate at 700Kilo hashes per card  Shocked
What's wrong ? sgminer v.4.1.0(got it from diamond mining page).

does it submit valid shares?
if you look one or two pages back, there are alternative links for the v1 sources.
2457  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XCN] Cryptonite | 1st mini-blockchain coin | M7 PoW | No Premine on: October 10, 2016, 08:40:38 AM
I successfully compiled the wallet on linux (ubuntu 16.04).
There was a line of main.cpp which triggered an error.
Here is my fork with a little fix to make it compile:

https://github.com/pallas1/Cryptonite

Enjoy!
2458  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN][GRS][DMD] Pallas optimized groestlcoin / diamond etc. opencl kernel on: October 09, 2016, 10:30:27 PM
Hey, guys. Running 2x7950 GPU's (Asus and Gigabyte). After installing 14.6 instead of 15.12 catalyst my hashrate on mining Diamond Coin increased from 6.2(1st GPU) and 6.6(2nd GPU) to significant 10.2(1st) and 11.09(2nd)Mh/s !!!

Looking for more improvement. Links on first message are broken. Where to get v2 experimental cl kernel, pls ? Send to miner.hid@ya.ru someone kind please.

For best result, you need to get Wolf0's Tahiti bin, see first post.
2459  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer M7 (XCN) by djm34, fixed + optimized for cuda 8 and new cards by pallas on: October 09, 2016, 05:07:54 PM
Cuda 8 final is out, no need to register and get the rc.
2460  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell / Pascal kernels. on: October 08, 2016, 12:02:43 PM
With sia i got 3 BTC in just one day with a single card.
It wasn't just instamining though, I also made a 9x miner.
Pages: « 1 ... 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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 [123] 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 ... 248 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!