Bitcoin Forum
May 06, 2024, 02:55:23 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 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 ... 228 »
  Print  
Author Topic: [NemosMiner] multi algo profit switching NVIDIA/CPU miner  (Read 289388 times)
sundownz
Hero Member
*****
Offline Offline

Activity: 714
Merit: 512


View Profile WWW
January 06, 2018, 01:32:48 AM
Last edit: January 06, 2018, 02:18:58 AM by sundownz
 #2281

testing Palgins new HSR miner for neoscrypt i have it downloading and Benchmarking but running into a issue with it not closing after completing benchmarks  

you can test for yourself here: https://github.com/nemosminer/NemosMiner-v2.3/issues/130

Best Regards
Nemo

Awesome.  Grin

I am testing now on my home office PC... just got back in from Mexico =)

KlaustT 8.18 --> 1.43 MH/S
Palgin 1.0.1 --> 1.75 MH/S

GTX 1080Ti with very mild OC -- (+100 core / +200 mem) in my home office PC.

Very nice!

But yes... it seems to keep on running. So far it has failed to close after several cycles.



I am not a Powershell coder... but it seems to be calling for a .txt file that doesn't exist ?

For security, your account has been locked. Email acctcomp15@theymos.e4ward.com
No Gods or Kings. Only Bitcoin
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714964123
Hero Member
*
Offline Offline

Posts: 1714964123

View Profile Personal Message (Offline)

Ignore
1714964123
Reply with quote  #2

1714964123
Report to moderator
1714964123
Hero Member
*
Offline Offline

Posts: 1714964123

View Profile Personal Message (Offline)

Ignore
1714964123
Reply with quote  #2

1714964123
Report to moderator
Tinouti
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
January 06, 2018, 02:23:08 AM
 #2282

Hi,

It seems I'm not the only one having issue connecting to zpool24h pool status.

I constantly have the message Error contacting pool, retrying..

Hopefully, if we join efforts we can get to the bottom of this...

What I found so far:

I have 2 minirigs.
When they start failing to get the pool status, it keeps trying for a long long time before receiving a response.
If I stop both and wait a few minutes and start one and wait few more minutes before starting the other, it seems that's easier to get it to work. but not good, since this is manual intervention and lots a minutes without mining.

I modified the zpool script to get more details and found that the web request succeed with http 200 status but the content is empty (no stats).

Trying to get the status manually from the browser or a port of wget have the same issue. And after a successful request with content, retrying will get an empty response again.

Trying to get the status from a different internet connection have the same issue (on my mobile phone).

trying a web proxy page, so it access the status api from a different location will have the same issue.

At this point I don't think it's a nemosminer script issue. probably some error not correctly handle on the zpool server or perhaps some API request rate limit.

As anyone have more info? Should send a post on the zpool topic but wanted to get the more info from the people having the same issue here.

I'm pretty much at the same place right now.

When I'm trying to access the status from my phone, it works the first time, then return a blank page. If I switch airplane mode on and off (and thus getting a new IP), it'll work again the first time, then blank after that.

So I think that - like you assumed - zpool must have added a request limit per IP.
I don't know what the time limit is, but if we can't get the pool status, that pretty much negate the point of having a multialgo switching miner.

I guess we'll have to forget about zpool for the time being.  Undecided
minerx117 (OP)
Sr. Member
****
Offline Offline

Activity: 728
Merit: 256

NemosMiner-v3.8.1.3


View Profile
January 06, 2018, 04:03:16 AM
 #2283

A friend of mine (who told me about this project) has a problem:
when running program on 8-card rigs, sometimes when mining program is to be switched , Nemo is killing the current miner - he gets "driver failed "error and then 1 of cards disappears
Any idea what might be the cause and cure?
I confirmed same fenomena - gracefully closing Alexis miner to driver crash and the card running main display disappears Sad, need to restart
Even when making it manually with mouse Smiley
a possible workaround:
Code:
 $_.Active += (Get-Date)-$_.Process.StartTime
                $_.Process.CloseMainWindow() | Out-Null
                Sleep 1
                # if miner starts from Schedler, CloseMainWindow() is now enought, we have to force stop process by Id
                Stop-Process $_.Process | Out-Null
to
Code:
 $_.Active += (Get-Date)-$_.Process.StartTime
               # simply "Kill with power"
                Stop-Process $_.Process | Out-Null
                Sleep 2

thanks  :  https://github.com/nemosminer/NemosMiner-v2.3/issues/146

NemosMiner-v3.8.1.3
minerx117 (OP)
Sr. Member
****
Offline Offline

Activity: 728
Merit: 256

NemosMiner-v3.8.1.3


View Profile
January 06, 2018, 04:19:35 AM
Last edit: January 06, 2018, 09:41:02 AM by minerx117
 #2284

Hi,

It seems I'm not the only one having issue connecting to zpool24h pool status.

I constantly have the message Error contacting pool, retrying..

Hopefully, if we join efforts we can get to the bottom of this...

What I found so far:

I have 2 minirigs.
When they start failing to get the pool status, it keeps trying for a long long time before receiving a response.
If I stop both and wait a few minutes and start one and wait few more minutes before starting the other, it seems that's easier to get it to work. but not good, since this is manual intervention and lots a minutes without mining.

I modified the zpool script to get more details and found that the web request succeed with http 200 status but the content is empty (no stats).

Trying to get the status manually from the browser or a port of wget have the same issue. And after a successful request with content, retrying will get an empty response again.

Trying to get the status from a different internet connection have the same issue (on my mobile phone).

trying a web proxy page, so it access the status api from a different location will have the same issue.

At this point I don't think it's a nemosminer script issue. probably some error not correctly handle on the zpool server or perhaps some API request rate limit.

As anyone have more info? Should send a post on the zpool topic but wanted to get the more info from the people having the same issue here.

I'm pretty much at the same place right now.

When I'm trying to access the status from my phone, it works the first time, then return a blank page. If I switch airplane mode on and off (and thus getting a new IP), it'll work again the first time, then blank after that.

So I think that - like you assumed - zpool must have added a request limit per IP.
I don't know what the time limit is, but if we can't get the pool status, that pretty much negate the point of having a multialgo switching miner.

I guess we'll have to forget about zpool for the time being.  Undecided

yes there is something going on all my rigs at home can no longer access zpool i can't even load home page in Internet browser

if i run a vpn they connect fine an can load the hompage so i believe this is a poolside issue not nemosminer...  i get similar results with hashrefinery sometime to...

Ahashpool and MPH work fine.....

i'll look into this more and see if there is anything i can do about it

Regards
Nemo

NemosMiner-v3.8.1.3
car1999
Full Member
***
Offline Offline

Activity: 350
Merit: 100


View Profile
January 06, 2018, 04:29:27 AM
 #2285

testing Palgins new HSR miner for neoscrypt i have it downloading and Benchmarking but running into a issue with it not closing after completing benchmarks  

you can test for yourself here: https://github.com/nemosminer/NemosMiner-v2.3/issues/130

Best Regards
Nemo

Awesome.  Grin

I am testing now on my home office PC... just got back in from Mexico =)

KlaustT 8.18 --> 1.43 MH/S
Palgin 1.0.1 --> 1.75 MH/S

GTX 1080Ti with very mild OC -- (+100 core / +200 mem) in my home office PC.

Very nice!

But yes... it seems to keep on running. So far it has failed to close after several cycles.



I am not a Powershell coder... but it seems to be calling for a .txt file that doesn't exist ?
I've never coded powershell, after some researchs I found a fix, looks ugly but works, replace the codes in Wrapper.ps1:
Code:
   $PowerShell.Streams.Verbose.ReadAll() | ForEach-Object {
        $Line = $_

        if ($Line -like "*total speed:*" -or $Line -like "*accepted:*") {
            $Words = $Line -split " "
            $HashRate = [Decimal]$Words[$Words.IndexOf(($Words -like "*/s" | Select-Object -Last 1)) - 1]

            switch ($Words[$Words.IndexOf(($Words -like "*/s" | Select-Object -Last 1))]) {
                "kh/s" {$HashRate *= [Math]::Pow(1000, 1)}
                "mh/s" {$HashRate *= [Math]::Pow(1000, 2)}
                "gh/s" {$HashRate *= [Math]::Pow(1000, 3)}
                "th/s" {$HashRate *= [Math]::Pow(1000, 4)}
                "ph/s" {$HashRate *= [Math]::Pow(1000, 5)}
            }

            $HashRate | Set-Content ".\Wrapper_$Id.txt"
        } elseif ($Line -like "*overall speed is*") {
            $Words = $Line -split " "
            $HashRate = [Decimal]($Words -like "*H/s*" -replace ',', '' -replace "[^0-9.]",'' | Select-Object -Last 1)

            switch ($Words -like "*H/s*" -replace "[0-9.,]",'' | Select-Object -Last 1) {
                "KH/s" {$HashRate *= [Math]::Pow(1000, 1)}
                "mH/s" {$HashRate *= [Math]::Pow(1000, 2)}
                "MH/s" {$HashRate *= [Math]::Pow(1000, 2)}
            }

            $HashRate | Set-Content ".\Wrapper_$Id.txt"
        }

        $Line
    }
@minerx117 would have a elegant solution.
Happy mining!
restless
Legendary
*
Offline Offline

Activity: 1151
Merit: 1001


View Profile
January 06, 2018, 07:31:02 AM
Last edit: January 06, 2018, 08:44:35 AM by restless
 #2286

Replace what lines?!

PS: aaaah , its in wrapper.ps1

PPS:
Quote

It seems it HAS to be forced
Code:
Stop-Process $_.Process -Force | Out-Null
minerx117 (OP)
Sr. Member
****
Offline Offline

Activity: 728
Merit: 256

NemosMiner-v3.8.1.3


View Profile
January 06, 2018, 09:47:20 AM
Last edit: January 06, 2018, 11:15:08 AM by minerx117
 #2287


It seems it HAS to be forced
Code:
Stop-Process $_.Process -Force | Out-Null
[/quote]

thankyou https://github.com/nemosminer/NemosMiner-v2.3/issues/146

NemosMiner-v3.8.1.3
minerx117 (OP)
Sr. Member
****
Offline Offline

Activity: 728
Merit: 256

NemosMiner-v3.8.1.3


View Profile
January 06, 2018, 10:33:21 AM
Last edit: January 06, 2018, 11:22:23 AM by minerx117
 #2288

cheers @car1999 : https://github.com/nemosminer/NemosMiner-v2.3/issues/130

NemosMiner-v3.8.1.3
yashart
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
January 06, 2018, 01:21:38 PM
 #2289

Anyone using 1080 or 1080 Ti cards running this miner care to share their hashrates? I can't seem to source 1070ti's at a reasonable price anymore (only slightly less than 1080) and want to build my next rig. Trying to determine what the best path is. Thanks in advance!
millsys
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
January 06, 2018, 01:26:27 PM
 #2290

Hi,
complete beginner here. Could anyone direct me to a tutorial how to use this miner? I edited the .bat file accordingly, ran the benchmark without errors...it was still running after like 2-3 hours (atm using 4*1070 ti), is this normal? Does the benchmark run indefinitely or? Also how do I actually start mining? In the bin folder there are 6 different miners (Alexis 78, Alexis 78 cuda 9, CCminer Klaust, DTSM, Tpruvodcuda9 and Tpruvodx64), which one should I start if I want to mine in MPH with multi algo profit switching?

Sorry for noob questions, I am a bit overwhelmed by this...I found only 1 tutorial on youtube but it hasnt been much of a help (the guy doesnt show how to actually mine).

Thanks in advance

Its mining during benchmark, just switching every 120 seconds
1) Make sure video cards are set in batch, so if you have 6 nvidia cards you need the GPU values to have 0 1 2 3 4 5 and 0,1,2,3,4,5
2) AHashPool will give you more profit than Zpool and other pools (lower fees, higher results)
3) Make sure wallet set in batch file, then go to ahashpool and click wallet and enter to see miner is working (can be 15-60min delay for updates, this isn't realtime)
4) Change interval to 900 after benchmarks are complete (kill process, edit batch, run again)

You are now 'mining' as you watch the main screen and the 'miner' screen popup.  Look at Miner screen to see if its hashing.  Search wallet at pool to see if it shows your miner.

FARM #1 : 60 GPUs spread across 6 rigs (1080ti/1080/1070ti/1070)
FARM #2 : 72 GPUs spread across 12 rigs (1070ti x 6)
FARM #3 : 16 GPUs spread across 4 rigs (1080ti x 4)
AntMiner S9 13.5TH / AntMiner L3+ x 2
Boffinboy24
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
January 06, 2018, 01:33:03 PM
 #2291

Hi Nemo, isn’t there a possibility / plan to have a backup or failover pool if main pool is down? This would be great
sundownz
Hero Member
*****
Offline Offline

Activity: 714
Merit: 512


View Profile WWW
January 06, 2018, 01:38:23 PM
 #2292

testing Palgins new HSR miner for neoscrypt i have it downloading and Benchmarking but running into a issue with it not closing after completing benchmarks  

you can test for yourself here: https://github.com/nemosminer/NemosMiner-v2.3/issues/130

Best Regards
Nemo

Awesome.  Grin

I am testing now on my home office PC... just got back in from Mexico =)

KlaustT 8.18 --> 1.43 MH/S
Palgin 1.0.1 --> 1.75 MH/S

GTX 1080Ti with very mild OC -- (+100 core / +200 mem) in my home office PC.

Very nice!

But yes... it seems to keep on running. So far it has failed to close after several cycles.



I am not a Powershell coder... but it seems to be calling for a .txt file that doesn't exist ?
I've never coded powershell, after some researchs I found a fix, looks ugly but works, replace the codes in Wrapper.ps1:
Code:
   $PowerShell.Streams.Verbose.ReadAll() | ForEach-Object {
        $Line = $_

        if ($Line -like "*total speed:*" -or $Line -like "*accepted:*") {
            $Words = $Line -split " "
            $HashRate = [Decimal]$Words[$Words.IndexOf(($Words -like "*/s" | Select-Object -Last 1)) - 1]

            switch ($Words[$Words.IndexOf(($Words -like "*/s" | Select-Object -Last 1))]) {
                "kh/s" {$HashRate *= [Math]::Pow(1000, 1)}
                "mh/s" {$HashRate *= [Math]::Pow(1000, 2)}
                "gh/s" {$HashRate *= [Math]::Pow(1000, 3)}
                "th/s" {$HashRate *= [Math]::Pow(1000, 4)}
                "ph/s" {$HashRate *= [Math]::Pow(1000, 5)}
            }

            $HashRate | Set-Content ".\Wrapper_$Id.txt"
        } elseif ($Line -like "*overall speed is*") {
            $Words = $Line -split " "
            $HashRate = [Decimal]($Words -like "*H/s*" -replace ',', '' -replace "[^0-9.]",'' | Select-Object -Last 1)

            switch ($Words -like "*H/s*" -replace "[0-9.,]",'' | Select-Object -Last 1) {
                "KH/s" {$HashRate *= [Math]::Pow(1000, 1)}
                "mH/s" {$HashRate *= [Math]::Pow(1000, 2)}
                "MH/s" {$HashRate *= [Math]::Pow(1000, 2)}
            }

            $HashRate | Set-Content ".\Wrapper_$Id.txt"
        }

        $Line
    }
@minerx117 would have a elegant solution.
Happy mining!

That DID work. I tried it on mine =)

For security, your account has been locked. Email acctcomp15@theymos.e4ward.com
Nana99
Newbie
*
Offline Offline

Activity: 126
Merit: 0


View Profile
January 06, 2018, 02:09:06 PM
 #2293

How much can 1070 can earn for a day in the past few days?
legendary13
Newbie
*
Offline Offline

Activity: 29
Merit: 0


View Profile
January 06, 2018, 03:18:36 PM
 #2294

Hi Nemo it seems to me that time of ran miners wrong?
and hsr palgin miner returns wrong result for neoscrypt  writes 909,72 MH/s real  9.09 MH/s
Chaob
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
January 06, 2018, 03:53:37 PM
 #2295

How much can 1070 can earn for a day in the past few days?

My friend has a single 1070 on ahashpool, I just looked at his chart and in the last 24 hours he made .0003 BTC or $4.95 at the current value.
BitBustah
Hero Member
*****
Offline Offline

Activity: 1218
Merit: 534



View Profile
January 06, 2018, 03:59:00 PM
 #2296

+- 21 euro last 24 hours at Ahash with my 1x 1080 Ti and 2 x 1080   Cheesy
jebidia
Jr. Member
*
Offline Offline

Activity: 161
Merit: 1


View Profile
January 06, 2018, 04:07:31 PM
 #2297

Which version are you running BitBustah?  And which algos are you running at ahash?  I Was getting a ton of errors with nist5 over there last night so i tried skein on hashrefinery and only saw about $8 per 1080ti.  Back on ahash x17, skein, and tribus.  I like tribus because its streaky and gets up to full hash very fast.  Running a 600 interval.
BitBustah
Hero Member
*****
Offline Offline

Activity: 1218
Merit: 534



View Profile
January 06, 2018, 04:13:38 PM
 #2298

Which version are you running BitBustah?  And which algos are you running at ahash?  I Was getting a ton of errors with nist5 over there last night so i tried skein on hashrefinery and only saw about $8 per 1080ti.  Back on ahash x17, skein, and tribus.  I like tribus because its streaky and gets up to full hash very fast.  Running a 600 interval.


NemosMiner-v2.3c-beta, autoswitching on 1800 interval, doing Ahash24hr pool:
phi,lbry,skein,x17,bitcore,Nist5,Lyra2RE2,neoscrypt,blake2s,skunk,groestl


Check out the stats 16:00 -16:00
http://tools.you-stupid-woman.com/hourly_earnings/

Rounded down I would say my Ti is doing 40% of that near 21 euro, my 2 regular 1080s are doing both 30%.
jebidia
Jr. Member
*
Offline Offline

Activity: 161
Merit: 1


View Profile
January 06, 2018, 04:41:07 PM
 #2299

Very interesting...I've read mix reviews about the 24hr setup but have yet to try it.  I'll give it a go.    I'm assuming it would switch much less because there's much less variation over 24hrs vs current...

I had a feeling there was something a little off the other day and then I read of someone saying they thought there was a profit fall off going from 2.2 to 2.3c...so I was thinking about going back, but you seem to be doing well...in the words of Borat;  "Very nice!"

BitBustah
Hero Member
*****
Offline Offline

Activity: 1218
Merit: 534



View Profile
January 06, 2018, 04:59:13 PM
 #2300

from 2.2 to 2.3c...so I was thinking about going back, but you seem to be doing well...in the words of Borat;  "Very nice!"

Jak se máš? Cheesy

My earnings were down too the last weeks.. Now they are OK I guess. Smiley
Pages: « 1 ... 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 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 ... 228 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!