Bitcoin Forum
May 24, 2024, 02:59:53 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 [7]
121  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's Dual Ethereum AMD+NVIDIA GPU Miner v7.0 (Windows/Linux) on: September 21, 2016, 03:08:51 AM
@claymore
GTX 1060 3GB

how much Mh/s you have with this gpu ?
122  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's Dual Ethereum AMD+NVIDIA GPU Miner v7.0 (Windows/Linux) on: September 21, 2016, 12:27:52 AM
scrypt for check the profitability :

Quote
# cat switch.php
<?php
$l = 0;
$n = 0;
while (1){
        $coins = file_get_contents('https://www.whattomine.com/coins.json');
        $json = json_decode($coins, true);
        $etc = $json['coins']['EthereumClassic']['profitability'];
        $eth = $json['coins']['Ethereum']['profitability'];
        $dcr = $json['coins']['Decred']['profitability'];
        $sia = $json['coins']['Sia']['profitability'];
        $lbc = $json['coins']['LBRY']['profitability'];
        $etc_lag = $json['coins']['EthereumClassic']['lagging'];
        $eth_lag = $json['coins']['Ethereum']['lagging'];
        $dcr_lag = $json['coins']['Decred']['lagging'];
        $sia_lag = $json['coins']['Sia']['lagging'];
        $lbc_lag = $json['coins']['LBRY']['lagging'];
        if ($etc_lag) {
                $etc = 0;
        }
        if($eth_lag) {
                $eth = 0;
        }
        if ($dcr_lag) {
                $dcr = 0;
        }
        if($sia_lag) {
                $sia = 0;
        }
        if($lbc_lag) {
                $lbc = 0;
        }
        echo date('Y-m-d H:i:s')."\n";
        if ($etc > $eth) {
                echo "ETC : ".$etc." > ETH ".$eth."\n";
                if ($dcr > $sia and $dcr > $lbc) {
                        $n = "ETC-DCR";
                        echo "DCR : ".$dcr." > SIA ".$sia."\n";
                        echo "DCR : ".$dcr." > LBC ".$lbc."\n";
                        if ($n !== $l) {
                                copy("etc-dcr.txt", "config.txt");
                                echo "Switched to ETC-DCR\n";
                        }
                } else if ( $sia > $dcr and $sia > $lbc ) {
                        $n = "ETC-SIA";
                        echo "SIA : ".$sia." > DCR ".$dcr."\n";
                        echo "SIA : ".$sia." > LBC ".$lbc."\n";
                        if ($n !== $l) {
                                copy("etc-sia.txt", "config.txt");
                                echo "Switched to ETC-SIA\n";
                        }
                } else if ( $lbc > $dcr and $lbc > $sia ) {
                        $n = "ETC-LBC";
                        echo "LBC : ".$lbc." > DCR ".$dcr."\n";
                        echo "LBC : ".$lbc." > SIA ".$sia."\n";
                        if ($n !== $l) {
                                copy("etc-lbc.txt", "config.txt");
                                echo "Switched to ETC-LBC\n";
                        }
                } else {
                        echo "DCR : ".$dcr." = SIA : ".$sia." = LBC : ".$lbc."\n";
                }
        } else if ($eth > $etc) {
                echo "ETH : ".$eth." > ETC ".$etc."\n";
                if ($dcr > $sia and $dcr > $lbc) {
                        $n = "ETH-DCR";
                        echo "DCR : ".$dcr." > SIA ".$sia."\n";
                        echo "DCR : ".$dcr." > LBC ".$lbc."\n";
                        if ($n !== $l) {
                                copy("eth-dcr.txt", "config.txt");
                                echo "Switched to ETH-DCR\n";
                        }
                } else if ( $sia > $dcr and $sia > $lbc) {
                        $n = "ETH-SIA";
                        echo "SIA : ".$sia." > DCR ".$dcr."\n";
                        echo "SIA : ".$sia." > LBC ".$lbc."\n";
                        if ($n !== $l) {
                                copy("eth-sia.txt", "config.txt");
                                echo "Switched to ETH-SIA\n";
                        }
                } else if ( $lbc > $dcr and $lbc > $sia ) {
                        $n = "ETH-LBC";
                        echo "LBC : ".$lbc." > DCR ".$dcr."\n";
                        echo "LBC : ".$lbc." > SIA ".$sia."\n";
                        if ($n !== $l) {
                                copy("eth-lbc.txt", "config.txt");
                                echo "Switched to ETH-LBC\n";
                        }
                } else {
                        echo "Conf : ".$l."\n";
                        echo "DCR : ".$dcr." - SIA : ".$sia." - LBC : ".$lbc."\n";
                }
        } else {
                echo "ETH : ".$eth." = ETC ".$etc."\n";
                if ($dcr > $sia and $dcr > $lbc) {
                        $n = "ETH-DCR";
                        echo "DCR : ".$dcr." > SIA ".$sia."\n";
                        echo "DCR : ".$dcr." > LBC ".$lbc."\n";
                        if ($n !== $l) {
                                copy("eth-dcr.txt", "config.txt");
                                echo "Switched to ETH-DCR\n";
                        }
                } else if ( $sia > $dcr and $sia > $lbc ) {
                        $n = "ETH-SIA";
                        echo "SIA : ".$sia." > DCR ".$dcr."\n";
                        echo "SIA : ".$sia." > LBC ".$lbc."\n";
                        if ($n !== $l) {
                                copy("eth-sia.txt", "config.txt");
                                echo "Switched to ETH-SIA\n";
                        }
                } else if ( $lbc > $dcr and $lbc > $sia ) {
                        $n = "ETH-LBC";
                        echo "LBC : ".$lbc." > DCR ".$dcr."\n";
                        echo "LBC : ".$lbc." > SIA ".$sia."\n";
                        if ($n !== $l) {
                                copy("eth-lbc.txt", "config.txt");
                                echo "Switched to ETH-LBC\n";
                        }
                } else {
                        echo "Conf : ".$l."\n";
                        echo "SIA : ".$sia." - DCR : ".$dcr." - LBC : ".$lbc."\n";
                }
        }
        if ($n === $l) {
                echo "Not switched\n";
        }
        echo "\n";
        $l = $n;
        sleep(300);
}
?>

for launch :
Quote
php switch.php

the result :
Quote
2016-09-20 21:40:14
ETH : 100 > ETC 96
LBC : 53 > DCR 49
LBC : 53 > SIA 51
Switched to ETH-LBC

2016-09-20 21:41:15
ETH : 100 > ETC 96
LBC : 53 > DCR 49
LBC : 53 > SIA 51
Not switched

2016-09-20 21:42:15
ETH : 100 > ETC 96
LBC : 53 > DCR 49
LBC : 53 > SIA 51
Not switched

2016-09-20 21:43:16
ETH : 100 > ETC 95
SIA : 50 > DCR 49
SIA : 50 > LBC 48
Switched to ETH-SIA

2016-09-20 21:44:16
ETH : 100 > ETC 95
SIA : 50 > DCR 49
SIA : 50 > LBC 48
Not switched

2016-09-20 21:45:17
ETH : 100 > ETC 95
SIA : 50 > DCR 49
SIA : 50 > LBC 48
Not switched

2016-09-20 21:46:17
ETH : 100 > ETC 96
SIA : 50 > DCR 49
SIA : 50 > LBC 43
Not switched

2016-09-20 21:47:18
ETH : 100 > ETC 95
SIA : 50 > DCR 49
SIA : 50 > LBC 42
Not switched

2016-09-20 21:48:18
ETH : 100 > ETC 95
SIA : 50 > DCR 49
SIA : 50 > LBC 42
Not switched

2016-09-20 21:49:19
ETH : 100 > ETC 95
SIA : 50 > DCR 49
SIA : 50 > LBC 42
Not switched

2016-09-20 21:50:19
ETH : 100 > ETC 95
SIA : 50 > DCR 49
SIA : 50 > LBC 42
Not switched

2016-09-20 21:51:19
ETH : 100 > ETC 95
SIA : 50 > DCR 49
SIA : 50 > LBC 42
Not switched

2016-09-20 21:52:20
ETH : 100 > ETC 95
SIA : 50 > DCR 49
SIA : 50 > LBC 39
Not switched

this scrypt is inspired by :
http://adrian.ihacks.ro/ethos-autoswitch-coin/

my scrypt change auto the conf file, but it don't restart claymore. it's just for i can see and make a decision.
so we must create 6 files conf :
eth-dcr.txt eth-sia.txt eth-lbc.txt etc-dcr.txt etc-sia.txt etc-lbc.txt
with all your information wallet, url of pool you use, worker, etc..

and it have some bug :p
Quote
2016-09-21 00:37:39
ETH : 100 > ETC 94
Conf : ETH-LBC
DCR : 48 - SIA : 48 - LBC : 42
Not switched
123  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's Dual Ethereum AMD+NVIDIA GPU Miner v7.0 (Windows/Linux) on: September 21, 2016, 12:15:05 AM
i have a problem
claymore 7.0 wont run when i put 4x rx480
with error
segmentation fault ./ethdcrminer64



ethos update to latest vrsion
claymore using latest version 7.0
four rx480 already detect after switch to amdgpu (ethos)
but claymore wont run

start.bash config startup only

./ethdcrminer64

i have the same problem, but i can run claymore with two way Smiley
start claymore on local, not using putty
start claymore on a screen :

Quote
# cat claymore.sh
#!/bin/sh

#export GPU_FORCE_64BIT_PTR=0
export GPU_MAX_HEAP_SIZE=100
export GPU_USE_SYNC_OBJECTS=1
export GPU_MAX_ALLOC_PERCENT=100
export GPU_SINGLE_ALLOC_PERCENT=100

./ethdcrminer64

Quote
# cat scr.sh
#!/bin/sh

screen -dmS clm ./claymore.sh

now for start :
# ./scr.sh && sleep 2 && screen -r clm

124  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's Dual Ethereum AMD+NVIDIA GPU Miner v7.0 (Windows/Linux) on: September 16, 2016, 11:56:28 AM
hi,

i have a little problem.
i have a rig with 6 gpu, 2 nitro r9 fury and 4 rx470.
my rig run under ethos last version. my psu is lepa 1700m platinium.

i use claymore but my rig crash when i start claymore with 6 gpu, but no problem when i use 5 gpu under claymore and 1 under ethos in same time.
the rig crash then it load the last dag. i have enabled the log, i show nothing. i must stop log and system log for production for save ssd space but i show nothing when it's enabled.
i have try "-gser 2" with 6 gpu, it crash.

what do you think ?

my config.txt :
Quote
11:49  ethos@<rig>  /home/ethos/clm # cat config.txt
-epool eu1-etc.ethermine.org:4444
-ewal <etcwallet>.<rig>
-epsw x
-etha 2
-dpool stratum+tcp://dcr.coinmine.pl:2222
-dwal <login>.<rig>
-dpsw x
-esm 0
-mode 0
-tt -95
-dcri 45
-dbg -1
-tstop 80
-di 01245
-gser 2

Pages: « 1 2 3 4 5 6 [7]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!