Bitcoin Forum
July 05, 2024, 03:07:01 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 24 25 26 27 28 29 30 31 32 33 34 35 36 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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 ... 166 »
1461  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 23, 2016, 09:17:56 PM

Have you tried this...

https://bitcointalk.org/index.php?topic=1120634.msg12684868#msg12684868

It looks like the same code I'm using except it sets the N factor automatically.

I know this old miner, it works, but I am curious if in this miner is some optimisations for scryptjane.


It's aready optimized up to AVX2 so it's as good as it gets.

Edit: Upon further analysis of the code scryptjane:18 might work for yac.

When I first ported scryptjane I just did a quick functional test on Nicehash and it worked with default options.
That was good enough and I Ieft it at that. I hadn't noticed that the default NF was 1024 which made no sense
and that Nicehash was NF16.

I'd like to retest at Nicehash with NF16 but the stratum is down due to lack of orders.
I know nothing about scrypt so I have no idea of the effect of the wrong NF. If the wrong NF works
maybe the right one works better.

I'm not that interested in setting up a user on a yac pool just for a quick test but if it works for you I'd
be curious.

Thanks for your response.
-a scryptjane:18 miner say "Unknown algo: scryptjane:18"
-a scryptjane:16 seems to work, but as far I know, there is no coins at NF16 (LEOcoin switched to POS)
to mine scryptjane need to use corect NF for  respective coin
 Tue, 08 Aug 2017 16:15:28 GMT YAC NF will be 19 http://download.muuttuja.org/yacoin/countdown/
UTC will stay forever at NF 14



Are you sure the miner isn't expecting N instead of NF? So for NF18, maybe you should specify scryptjane:524288 instead (according to the table in the link you provided)

That's part of it. There is inconsistent handling of N vs NF. The command line parser expects algo:n but scyptjane expects algo:nf.
scryptjane:18 fails because it is not a power of 2.

This is not an area I am familiar with so some suggestions are welcome.

NF seems more user friendly than N. Is it a convention to use algo:n notation or is algo:nf acceptible?

Can software reliably distisguish a NF spec from N spec by its value? For example if the value is not a power of 2 and
is smaller than some limit it is interpreted as NF, else N. What would be that limit?

Any personal preferences on how to handle it?   -a algo:nf    or -a algo -n nf

I still don't understand why the default NF=1024 worked on Nicehash (Leo). This was actually interpreted as NF=2.

 

As far as I know scryptjane is not scrypt:n, is not only to change N, is different algoritm, in scryptjane algo in miners need to put some aditional parameters --starttime --nfmin and --nfmax, to automaticaly calculate NF, but in some miners is manual you need to put NF --scryptjane:NF.

In Nicehash miner v1.3.0.3 (cpuminer_x64_AVX.exe)  scryptjane algo work corect with -a scyptjane:NF, (tested with YAC -a scryptjane:18)

I mined LEO at NF 16 and before NF 15 ... 14..., but with GPU. If I put cpuminer with -a scryptjane (NF16) to YAC (NF18) miner work but submited shares is rejected.


That where the confuision arises, scrypt:n vs scryptjane:nf. I can make the software work either way so that scryptjane:18
and scryptjane:524288 would both work. It's a simple conversion: N = 1 << (Nf+1). The only question is whether there is any
overlap where the same value could represent both a valid N or Nf.

Do you know the lowest N value and highest Nf?

I don't like the automatic NF setting because it requires 3 parameters instead if 1. It may work well if always mining the same
coin but is more complicated when switching coins.
1462  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 23, 2016, 09:02:26 PM
Is it only a CPU mining or also GPU?
If GPU mining : where to download GPU windows exe  and what is the speed on RX480?
Thanks

cpuminer-opt is CPU only. You'll have to search for other threads for GPU miners.
1463  Alternate cryptocurrencies / Pools (Altcoins) / Re: [POOL] YAAMP.COM multipool multialgo profit switch with exchange on: November 23, 2016, 05:36:16 PM
my problem on ubuntu done. but now. i can't mining BSD (xevan) on Windows. i download "cpuminer-multi-rel1.3" and edit info in "cpuminer-conf.json" file
Code:
"url" : "stratum+tcp://yiimp.ccminer.org:3739",
"user" : "BSD add",
when i run mining. it don't work.
Quote
[2016-11-23 16:35:10] Starting Stratum on stratum+tcp://yiimp.ccminer.org:3739
[2016-11-23 16:35:11] Stratum difficulty set to 0.125
fail to connect stratum.
i need help. thanks you!

I don't see a problem. If the stratum set difficulty it's connected. What happened after that?
1464  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 23, 2016, 03:17:24 PM

Have you tried this...

https://bitcointalk.org/index.php?topic=1120634.msg12684868#msg12684868

It looks like the same code I'm using except it sets the N factor automatically.

I know this old miner, it works, but I am curious if in this miner is some optimisations for scryptjane.


It's aready optimized up to AVX2 so it's as good as it gets.

Edit: Upon further analysis of the code scryptjane:18 might work for yac.

When I first ported scryptjane I just did a quick functional test on Nicehash and it worked with default options.
That was good enough and I Ieft it at that. I hadn't noticed that the default NF was 1024 which made no sense
and that Nicehash was NF16.

I'd like to retest at Nicehash with NF16 but the stratum is down due to lack of orders.
I know nothing about scrypt so I have no idea of the effect of the wrong NF. If the wrong NF works
maybe the right one works better.

I'm not that interested in setting up a user on a yac pool just for a quick test but if it works for you I'd
be curious.

Thanks for your response.
-a scryptjane:18 miner say "Unknown algo: scryptjane:18"
-a scryptjane:16 seems to work, but as far I know, there is no coins at NF16 (LEOcoin switched to POS)
to mine scryptjane need to use corect NF for  respective coin
 Tue, 08 Aug 2017 16:15:28 GMT YAC NF will be 19 http://download.muuttuja.org/yacoin/countdown/
UTC will stay forever at NF 14



Are you sure the miner isn't expecting N instead of NF? So for NF18, maybe you should specify scryptjane:524288 instead (according to the table in the link you provided)

That's part of it. There is inconsistent handling of N vs NF. The command line parser expects algo:n but scyptjane expects algo:nf.
scryptjane:18 fails because it is not a power of 2.

This is not an area I am familiar with so some suggestions are welcome.

NF seems more user friendly than N. Is it a convention to use algo:n notation or is algo:nf acceptible?

Can software reliably distisguish a NF spec from N spec by its value? For example if the value is not a power of 2 and
is smaller than some limit it is interpreted as NF, else N. What would be that limit?

Any personal preferences on how to handle it?   -a algo:nf    or -a algo -n nf

I still don't understand why the default NF=1024 worked on Nicehash (Leo). This was actually interpreted as NF=2.

 
1465  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 23, 2016, 01:28:11 AM

Have you tried this...

https://bitcointalk.org/index.php?topic=1120634.msg12684868#msg12684868

It looks like the same code I'm using except it sets the N factor automatically.

I know this old miner, it works, but I am curious if in this miner is some optimisations for scryptjane.


It's aready optimized up to AVX2 so it's as good as it gets.

Edit: Upon further analysis of the code scryptjane:18 might work for yac.

When I first ported scryptjane I just did a quick functional test on Nicehash and it worked with default options.
That was good enough and I Ieft it at that. I hadn't noticed that the default NF was 1024 which made no sense
and that Nicehash was NF16.

I'd like to retest at Nicehash with NF16 but the stratum is down due to lack of orders.
I know nothing about scrypt so I have no idea of the effect of the wrong NF. If the wrong NF works
maybe the right one works better.

I'm not that interested in setting up a user on a yac pool just for a quick test but if it works for you I'd
be curious.
1466  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 22, 2016, 10:52:24 PM

Hi. How to use cpuminer-opt for scryptjane algo at NF 18?

Did you try "-a scrytpjane:18" ?

Edit: That's not going to work. The Nf code is messed up. By default it runs scrypt(N,1,1) with N=2
which works on Nicehsash scrytjanenf16. Looking at the code I have no idea why it works and Nicehash
is down due to lack of orders.

If you know of anywhere I can test I can play with it.



Thanks for your response.

YAC pool (NF 18) http://yac.yacoin.club/
UTC pool (NF 14) http://utc14.yacoin.club/

Best regards.


Have you tried this...

https://bitcointalk.org/index.php?topic=1120634.msg12684868#msg12684868

It looks like the same code I'm using except it sets the N factor automatically.
1467  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 22, 2016, 02:55:41 PM

Hi. How to use cpuminer-opt for scryptjane algo at NF 18?

Did you try "-a scrytpjane:18" ?

Edit: That's not going to work. The Nf code is messed up. By default it runs scrypt(N,1,1) with N=2
which works on Nicehsash scrytjanenf16. Looking at the code I have no idea why it works and Nicehash
is down due to lack of orders.

If you know of anywhere I can test I can play with it.

1468  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell / Pascal kernels. on: November 21, 2016, 03:52:15 PM
Is there an nvidia GPU miner for Zcoin? It's some sort of lyra2 variant.

Zcoin just tweaked their version of Lyra2 and are planning to change to MTP. That will be its fourth algo
in its short life.

There is no GPU miner for Zcoin.
1469  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 21, 2016, 12:44:56 AM
cpuminer.exe --help. Get the parameters from from the pool you want to mine.
1470  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 20, 2016, 05:22:05 PM
Zcoin-xzc Algo was modified after block 8192 - lyra2z

It's not worth making the change, it will change again soon to something completely different.
For those who compile their own it's a one line change in algo/lyra2/zcoin.c line 11:

Code:
old:        LYRA2Z(hash, 32, input, 80, input, 80, 2, height, 256);
new:        LYRA2Z(hash, 32, input, 80, input, 80, 2, 8192, 256);
Ok, works fine : thank you :-).
Any future optimisation for ZCoin ?

We'll see when MTP comes out.

If I have a good reason to release a new version before then it will include the above change.
1471  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 19, 2016, 09:51:09 PM
Zcoin-xzc Algo was modified after block 8192 - lyra2z

It's not worth making the change, it will change again soon to something completely different.
For those who compile their own it's a one line change in algo/lyra2/zcoin.c line 11:

Code:
old:        LYRA2Z(hash, 32, input, 80, input, 80, 2, height, 256);
new:        LYRA2Z(hash, 32, input, 80, input, 80, 2, 8192, 256);
1472  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 18, 2016, 01:13:46 PM
i have taken a screen of the interesting part:


There's likely an unallocated stratum session id variable with value "deadbeef......"

Like I said in my previous reply, very strange. Hex code that form highly visible words are often used to help debugging
by making invalid data stick out in a hex dump.

Those hex tags are very useful. The specific deafbeef tag was used in a product I supported and got us into
trouble when we tried to sell to India.

I this case deadbeef is used to initialize a local variable in uint256 code only used by the non-optimized hodl code.
In other words this code does not get run on a 4770K.

The invalid session id also contains two other hex tags: cafe & babe, that are only used in hamsi code which isn't used
by hodl.

It is also interesting that a valid share was hashed with the apparently invalid session id.

These three observations are not related to each other and don't appear to be related to the crash which tells me process
was corrupt. Either the program file is corrupt or the CPU is corrupting data. Since your system is running I assume the
CPU is ok.

Try downloading a fresh copy. I've had no other complaints about the download so it should be ok.
1473  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 18, 2016, 02:45:29 AM
Why it crashes with HODL?  Huh
I have i74770K (Haswell).

Because you're doing something wrong. If you want a better answer, ask a better question.

Back, sorry if I did not left enough info.
I'm just doing the same that works for cpuminer-opt-3-3-8-windows version, that version is around half slower than cpuminer-opt-3.4.11-windows.
I'm trying to mine here https://erc.suprnova.cc/index.php?page=dashboard
However works as benchmark mode.

My bat line is cpuminer-core-avx2 -a hodl -o stratum+tcp://erc.suprnova.cc:7674 -u Username.Worker -p x -t 7 -D
pause

Here is a video
http://tinypic.com/player.php?v=1znv5hs%3E&s=9#.WC5TAWfrtkg


That's strange. Hodl was recently optimized with AVX2 but a 4770K supports it so it should work. I tested at Suprnova with a
4790K and it works fine with the AVX2 build.

It looks like an issue with your CPU. Did you try any of the other builds? That will tell you if your CPU has AVX2 working.
You could also test with another algo that uses AVX2 such as X11 or Lyra2REv2.

I don't like unknown media sites so I didn't look at your video. It's better to just copy/paste or screenshot the text from the
command window.
1474  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 17, 2016, 07:17:10 PM
Are there any improvements to make by building it with gcc-6 over gcc-4?

Some people have reported problems with newer compilers, one that comes to mind is -flto option seems
to fail to break the compile.

I don't have a GCC 6 build environment yet so I have no comparative performance data. It is my feeling there
would be little miner performance gain from compiler improvements because most miner optimizations use
ASM or intrinsic functions for the time critical code.

Feel free to try and report your results.
1475  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN]: cpuminer-opt v3.4.11, faster Groestl & Myriad on: November 17, 2016, 04:25:48 AM
Why it crashes with HODL?  Huh
I have i74770K (Haswell).

Because you're doing something wrong. If you want a better answer, ask a better question.
1476  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] ccminer 1.8.3 with sia, lyra2 and lbry boost - opensource (tpruvot) on: November 16, 2016, 11:04:27 PM
I've encountered the problem with all later versions of ccminer(tpruvot), which came out after ~April-May, 2016.

That's around the time he switched to using Cuda 8.0. You are probably better off with
Cuda 6.5 for older algos that haven't been optimized for Cuda 8.
1477  Alternate cryptocurrencies / Mining (Altcoins) / Re: Poll: Zcash. Buyer's Remorse. (Perhaps I should not have got 2 rigs) lol :) on: November 15, 2016, 05:24:18 PM
I don't understand why people would buy new equipment for a new coin when they already have suitable equipment.
It's not like buying a new dress for a big night out. Then again I don't like Kool-Aid either.
1478  Alternate cryptocurrencies / Mining (Altcoins) / Re: SILENTARMY v5: Zcash miner, 115 sol/s on R9 Nano, 70 sol/s on GTX 1070 on: November 13, 2016, 11:31:26 PM
Just put 2 more RX480 and started getting this:
Quote
[  327.726578] VM fault (0x02, vmid 2) at page 1641426, read from 'TC4' (0x54433400) (72)
[  327.726582] amdgpu 0000:03:00.0: GPU fault detected: 147 0x07c84802
[  327.726597] amdgpu 0000:03:00.0:   VM_CONTEXT1_PROTECTION_FAULT_ADDR   0x001A82F1
[  327.726613] amdgpu 0000:03:00.0:   VM_CONTEXT1_PROTECTION_FAULT_STATUS 0x04048002
[  327.726629] VM fault (0x02, vmid 2) at page 1737457, read from 'TC4' (0x54433400) (72)
[  327.726634] amdgpu 0000:03:00.0: GPU fault detected: 147 0x01484802
[  327.726648] amdgpu 0000:03:00.0:   VM_CONTEXT1_PROTECTION_FAULT_ADDR   0x0017865A
[  327.726664] amdgpu 0000:03:00.0:   VM_CONTEXT1_PROTECTION_FAULT_STATUS 0x04048002
[  327.726680] VM fault (0x02, vmid 2) at page 1541722, read from 'TC4' (0x54433400) (72)
[  327.726684] amdgpu 0000:03:00.0: GPU fault detected: 147 0x08304802
[  327.727325] amdgpu 0000:03:00.0:   VM_CONTEXT1_PROTECTION_FAULT_ADDR   0x001BCEF3
[  327.727865] amdgpu 0000:03:00.0:   VM_CONTEXT1_PROTECTION_FAULT_STATUS 0x04048002
[  327.728406] VM fault (0x02, vmid 2) at page 1822451, read from 'TC4' (0x54433400) (72)
[  327.728411] amdgpu 0000:03:00.0: GPU fault detected: 147 0x07d04802
[  327.728943] amdgpu 0000:03:00.0:   VM_CONTEXT1_PROTECTION_FAULT_ADDR   0x001B280A
[  327.729472] amdgpu 0000:03:00.0:   VM_CONTEXT1_PROTECTION_FAULT_STATUS 0x04044002
[  327.729998] VM fault (0x02, vmid 2) at page 1779722, read from 'TC5' (0x54433500) (68)

I've installed some old powered PCIe risers which are non usb/nor original asrocks but cards are recognized.
Additional power to the motherboard H81 Pro BTC is not installed...may that be the problem?
It's not so often but a few times every 10mins... and mostly doesn't seem to stop mining unless it completely freezes.

ASROCK STATES THAT THE TWO MOLEX POWER CONNECTIONS MUST BE USED--

The auxilliary mollex power connecters are not an option, according to the manual.  I know board chat goes either way, but non-powered ribbon risers are dangerous and flammable.       --scryptr

The on board power connectors shouldn't be an issue because powered risers don't draw any power from the mobo.
It doesn't mean it's not a power issue. If your PSU is multi rail make sure the distribution is balanced.

Is it same GPU every time? Intermittant nature suggests a bad connection, ie bad riser.
1479  Alternate cryptocurrencies / Mining (Altcoins) / Re: NiceHash EQM Zcash NVIDIA optimized miner [GTX 970 50 Sol/s] on: November 13, 2016, 07:57:04 PM
Well depends on the view..90sol/s on a GTX1070 is fast no question.

And it seems to change from day to day.
The competition is great, I've never seen so many publicly available miners for a new algo.
1480  Alternate cryptocurrencies / Mining (Altcoins) / Re: NiceHash EQM Zcash NVIDIA optimized miner [GTX 970 50 Sol/s] on: November 13, 2016, 07:26:20 PM
Made a cuda port of SA5. If anyone need.

https://github.com/krnlx/nheqminer

thanks but it doesn't start any kernel on the devices.
no ram usage, nothing.
ubuntu 16.04, cuda 8.
do I need cuda 7.5?

I believe SA is all OCL. Why not use the entire SA miner instead of a transplanted kernel?

Krnlx said his cuda port is faster.

README.md says otherwise.
Pages: « 1 ... 24 25 26 27 28 29 30 31 32 33 34 35 36 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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 ... 166 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!