Bitcoin Forum
June 22, 2024, 09:11:48 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 [8]
141  Local / Альтернативные криптовалюты / Re: [NXT] Nxt crypto - немного инфы, и самих NXT. on: January 28, 2015, 06:44:08 PM
по разному....
от часа (лучший вариант)  до 4-5 дней.
 При задержке,   поддержка  Криспи, вежливо отвечала, что есть технические проблемы, но они работают над этим.... Grin
А с другими биржами такая же трабла?
142  Local / Альтернативные криптовалюты / Re: [NXT] Nxt crypto - немного инфы, и самих NXT. on: January 28, 2015, 11:39:14 AM
Подскажите пожалуйста, вчера кинул монеты с cryptsy на кошелек NXT, до сех пор не дошли. Сколько они вообще примерно идут?
143  Local / Юристы / Bitcoin, электронные деньги, Украина on: January 24, 2015, 12:18:33 AM
Здравствуйте, скажите пожалуйста попадает ли BitCoin под определение електронных денег и действует ли на него закон http://forbes.ua/news/1375674-nbu-obyasnyaet-limity-na-perevody-elektronnyh-deneg-trebovaniyami-es
144  Alternate cryptocurrencies / Mining (Altcoins) / Re: 10MHASH CCminer modded NVIDIA Maxwell kernals by SP. on: January 13, 2015, 03:11:41 PM
Anyone have a good OC setting for a 750ti, stable and that don't crash driver please ?

For now I have +200 core clock / +100 Memory and it's look to be stable, no crash since 24h and card running at 29 - 30°c
Hashing at 5150kh on quark, 3050kh on X11 for now with SP build  Wink



I use core +100, mem +300 and it stable on x11, x13, x15 but on quark it not stable and crash the driver but hash rate more than 6400 for 5 minutes  Smiley I also increase the core voltage for 16 mV
145  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] sgminer v5 - optimized X11/X13/NeoScrypt/Lyra2RE/etc. kernel-switch miner on: January 10, 2015, 11:58:54 AM
.....This is worth 20KH/s on my 280X......from 343KHs to 363KH/s at 1020MHz clock
.....now somebody needs to find 20KH/s more for me....  Smiley

change the XORBytesInPlace call from
Code:
	XORBytesInPlace(B + bufidx, input, BLAKE2S_OUT_SIZE);
to
Code:
      XORBytesInPlace(B + bufidx, input, bufidx);
and change the function itself to perform some byte alignment checking
Code:
//
// a bit of byte alignment checking goes a long ways...
//
void XORBytesInPlace(void *restrict dst, const void *restrict src, uint mod)
{
  switch(mod % 4)
  {
  case 0:
    #pragma unroll 2
    for(int i = 0; i < 4; i+=2)
    {
      ((uint2 *)dst)[i]   ^= ((uint2 *)src)[i];
        ((uint2 *)dst)[i+1] ^= ((uint2 *)src)[i+1];   
    }
    break;   

  case 2: 
    #pragma unroll 8
    for(int i = 0; i < 16; i+=2)
    {
      ((uchar2 *)dst)[i] ^= ((uchar2 *)src)[i];
      ((uchar2 *)dst)[i+1] ^= ((uchar2 *)src)[i+1];
    }
    break;

  default:
  #pragma unroll 8
   for(int i = 0; i < 31; i+=4)
   {
    ((uchar *)dst)[i] ^= ((uchar *)src)[i];
    ((uchar *)dst)[i+1] ^= ((uchar *)src)[i+1];
    ((uchar *)dst)[i+2] ^= ((uchar *)src)[i+2];
    ((uchar *)dst)[i+3] ^= ((uchar *)src)[i+3];   
    }
  }
}

What settings do you use?
146  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] sgminer v5 - optimized X11/X13/NeoScrypt/Lyra2RE/etc. kernel-switch miner on: January 07, 2015, 11:41:18 AM
Here is a small neoscrypt kernel improvement for free, since I am mostly doing X11 anyway.
It gave me a 5.8% speedup on my reference R9 290 card (with Stilt bios),
from 290.2 to 307Kh/s  at 800/1500 core/mem freq on Ubuntu 12.04 with stock drivers.
I didnt try it on my R9 280x cards, so please post your results if you try this.

You will have to mod the kernel as per the code below.
The bottleneck in this kernel is the way it stores the 128 intermediate results of chacha and salsa in global memory.
By doing the change below you are reducing stalls/latency by not making read/writes to same/adjacent memory banks.

Change:
void ScratchpadStore(__global void *V, void *X, uchar idx)
{
   ((__global ulong16 *)V)[idx << 1] = ((ulong16 *)X)[0];
   ((__global ulong16 *)V)[(idx << 1) + 1] = ((ulong16 *)X)[1];
}

void ScratchpadMix(void *X, const __global void *V, uchar idx)
{
   ((ulong16 *)X)[0] ^= ((__global ulong16 *)V)[idx << 1];
   ((ulong16 *)X)[1] ^= ((__global ulong16 *)V)[(idx << 1) + 1];
}

To:
void ScratchpadStore(__global void *V, void *X, uchar idx)
{
   ((__global ulong16 *)V)[idx] = ((ulong16 *)X)[0];
   ((__global ulong16 *)V)[idx + 128] = ((ulong16 *)X)[1];
}
void ScratchpadMix(void *X, const __global void *V, uchar idx)
{
   ((ulong16 *)X)[0] ^= ((__global ulong16 *)V)[idx];
   ((ulong16 *)X)[1] ^= ((__global ulong16 *)V)[idx + 128];
}

thanks, increase from 317 to 324 on 290x
147  Alternate cryptocurrencies / Mining (Altcoins) / Re: 10MHASH CCminer modded NVIDIA Maxwell kernals by SP. on: December 27, 2014, 12:32:49 AM
Hello, I have a drop performance in lyra2re in the last build from near 680 to near 460 with GTX 750 Ti from previous build.  
148  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: X11 X13 X15 with 50% more hashrate 7Mh/s on 280x or 10 Mh/s on 290x on: December 21, 2014, 09:56:22 PM
thevictimofuktyranny thank you
149  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: X11 X13 X15 with 50% more hashrate 7Mh/s on 280x or 10 Mh/s on 290x on: December 21, 2014, 09:35:26 PM
Down are kernels and generated bins for X algos(11, 13, 15):

http://www.filedropper.com/x111315kernels
http://www.filedropper.com/x111314bins

Complete decision including last version of sgminer and all this kernels&bins&configuration file you can use:
http://www.filedropper.com/sgminer-51-dev-2014-mod

If you like to compile yourself you can download from:
https://github.com/sgminer-dev

This kernel&bins are for Tahiti&Hawaii. I have no Kaiman and Pitcairn to test.
After the test if you're satisfied you can tip me here: 13FykK1WoEwXV1WvrjT1hDRi1E1gFaBT8y
And Wolf0, of course!

x13 working! And working well! Thanks for sharing!
What hash rate on x13?

Hi, I'll give you my numbers:

14.7 Drivers R9 290, no overclock and powertune 20%

X11= 7.55-7.60mhs
X13= 5.20-5.30mhs
X15= 4.10-4.20mhs

Without bins or kernels still work fine like Neoscrypt (295-300khs).

Thank You, uploader!





Told you. My x13 is 7.1MH/s. Also, 300kh/s on 290? You should at least get around 325 or so... 600+ with mods.
Only you have this mod?
150  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: X11 X13 X15 with 50% more hashrate 7Mh/s on 280x or 10 Mh/s on 290x on: December 21, 2014, 09:28:20 PM
Down are kernels and generated bins for X algos(11, 13, 15):

http://www.filedropper.com/x111315kernels
http://www.filedropper.com/x111314bins

Complete decision including last version of sgminer and all this kernels&bins&configuration file you can use:
http://www.filedropper.com/sgminer-51-dev-2014-mod

If you like to compile yourself you can download from:
https://github.com/sgminer-dev

This kernel&bins are for Tahiti&Hawaii. I have no Kaiman and Pitcairn to test.
After the test if you're satisfied you can tip me here: 13FykK1WoEwXV1WvrjT1hDRi1E1gFaBT8y
And Wolf0, of course!

x13 working! And working well! Thanks for sharing!
What hash rate on x13?

Hi, I'll give you my numbers:

14.7 Drivers R9 290, no overclock and powertune 20%

X11= 7.55-7.60mhs
X13= 5.20-5.30mhs
X15= 4.10-4.20mhs

Without bins or kernels still work fine like Neoscrypt (295-300khs).

Thank You, uploader!




Can you show your config for x13 and x15 mod?
151  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: X11 X13 X15 with 50% more hashrate 7Mh/s on 280x or 10 Mh/s on 290x on: December 21, 2014, 09:16:38 PM
Down are kernels and generated bins for X algos(11, 13, 15):

http://www.filedropper.com/x111315kernels
http://www.filedropper.com/x111314bins

Complete decision including last version of sgminer and all this kernels&bins&configuration file you can use:
http://www.filedropper.com/sgminer-51-dev-2014-mod

If you like to compile yourself you can download from:
https://github.com/sgminer-dev

This kernel&bins are for Tahiti&Hawaii. I have no Kaiman and Pitcairn to test.
After the test if you're satisfied you can tip me here: 13FykK1WoEwXV1WvrjT1hDRi1E1gFaBT8y
And Wolf0, of course!

x13 working! And working well! Thanks for sharing!
What hash rate on x13?
152  Local / Барахолка / Re: (Украина) Продам Ant S1 1500 грн. on: December 21, 2014, 02:03:49 PM
А блок питания, это типа к компу нужно подключать майнер?
153  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: X11 X13 X15 with 50% more hashrate 7Mh/s on 280x or 10 Mh/s on 290x on: December 21, 2014, 01:40:01 PM
Down are kernels and generated bins for X algos(11, 13, 15):

http://www.filedropper.com/x111315kernels
http://www.filedropper.com/x111314bins

Complete decision including last version of sgminer and all this kernels&bins&configuration file you can use:
http://www.filedropper.com/sgminer-51-dev-2014-mod

If you like to compile yourself you can download from:
https://github.com/sgminer-dev

This kernel&bins are for Tahiti&Hawaii. I have no Kaiman and Pitcairn to test.
After the test if you're satisfied you can tip me here: 13FykK1WoEwXV1WvrjT1hDRi1E1gFaBT8y
And Wolf0, of course!
Thanks, it works.

Of course it does - what hash?
Can you give me the latest bins files? Or it is a private developing?

Latest X11 bins are here: https://www.reddit.com/r/DRKCoin/comments/2o1yoz/rewritten_x11_binaries/

I've got a killer Neoscrypt, though (nsfw): https://ottrbutt.com/miner/neoscryptwolf-12202014.png
Tell me please which of the miner is faster x86 or x64?

It doesn't matter.
Ok, can you give me please your config for x11?
154  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: X11 X13 X15 with 50% more hashrate 7Mh/s on 280x or 10 Mh/s on 290x on: December 21, 2014, 01:08:10 PM
Down are kernels and generated bins for X algos(11, 13, 15):

http://www.filedropper.com/x111315kernels
http://www.filedropper.com/x111314bins

Complete decision including last version of sgminer and all this kernels&bins&configuration file you can use:
http://www.filedropper.com/sgminer-51-dev-2014-mod

If you like to compile yourself you can download from:
https://github.com/sgminer-dev

This kernel&bins are for Tahiti&Hawaii. I have no Kaiman and Pitcairn to test.
After the test if you're satisfied you can tip me here: 13FykK1WoEwXV1WvrjT1hDRi1E1gFaBT8y
And Wolf0, of course!
Thanks, it works.

Of course it does - what hash?
Can you give me the latest bins files? Or it is a private developing?

Latest X11 bins are here: https://www.reddit.com/r/DRKCoin/comments/2o1yoz/rewritten_x11_binaries/

I've got a killer Neoscrypt, though (nsfw): https://ottrbutt.com/miner/neoscryptwolf-12202014.png
Tell me please which of the miner is faster x86 or x64?
155  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: X11 X13 X15 with 50% more hashrate 7Mh/s on 280x or 10 Mh/s on 290x on: December 21, 2014, 10:54:32 AM
Down are kernels and generated bins for X algos(11, 13, 15):

http://www.filedropper.com/x111315kernels
http://www.filedropper.com/x111314bins

Complete decision including last version of sgminer and all this kernels&bins&configuration file you can use:
http://www.filedropper.com/sgminer-51-dev-2014-mod

If you like to compile yourself you can download from:
https://github.com/sgminer-dev

This kernel&bins are for Tahiti&Hawaii. I have no Kaiman and Pitcairn to test.
After the test if you're satisfied you can tip me here: 13FykK1WoEwXV1WvrjT1hDRi1E1gFaBT8y
And Wolf0, of course!
Thanks, it works.

Of course it does - what hash?
Can you give me the latest bins files? Or it is a private developing?

Latest X11 bins are here: https://www.reddit.com/r/DRKCoin/comments/2o1yoz/rewritten_x11_binaries/

I've got a killer Neoscrypt, though (nsfw): https://ottrbutt.com/miner/neoscryptwolf-12202014.png
It's cool ))
156  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: X11 X13 X15 with 50% more hashrate 7Mh/s on 280x or 10 Mh/s on 290x on: December 21, 2014, 09:47:15 AM
Down are kernels and generated bins for X algos(11, 13, 15):

http://www.filedropper.com/x111315kernels
http://www.filedropper.com/x111314bins

Complete decision including last version of sgminer and all this kernels&bins&configuration file you can use:
http://www.filedropper.com/sgminer-51-dev-2014-mod

If you like to compile yourself you can download from:
https://github.com/sgminer-dev

This kernel&bins are for Tahiti&Hawaii. I have no Kaiman and Pitcairn to test.
After the test if you're satisfied you can tip me here: 13FykK1WoEwXV1WvrjT1hDRi1E1gFaBT8y
And Wolf0, of course!
Thanks, it works.

Of course it does - what hash?
Can you give me the latest bins files? Or it is a private developing?
157  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] sgminer v5 - optimized X11/X13/NeoScrypt/etc. kernel switching miner on: December 20, 2014, 02:58:59 PM
Hello, can you help me with neoscript for r9 290x what miner and what configs need to use. I cant get above 260 kh.
158  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: X11 X13 X15 with 50% more hashrate 7Mh/s on 280x or 10 Mh/s on 290x on: December 20, 2014, 12:23:34 PM
Hello, I use this config for 290x --xintensity 64 -w 64 --gpu-threads 2, and it give 8.2 - 8.3 mh. Does someone has better config for better speed?
Pages: « 1 2 3 4 5 6 7 [8]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!