mendoza1468
Newbie
Offline
Activity: 54
Merit: 0
|
 |
April 28, 2015, 02:10:25 AM Last edit: April 28, 2015, 02:28:05 AM by mendoza1468 |
|
I have a question, if sometimes on yaamp the connection is lost and isn't restarting, i would like to add another pool. How can i do this. (with last ccminer1.5.47) Am i the only one who lost connection on yaamp? For now i use : ccminer.exe -R 5 -T 5 -q -a quark -o stratum+tcp://yaamp.com:4033 -u 5LA1mw7JZKKVf3LK9KLAJSzQZzNwU9Z3Rp -p d=0.002
Can someone explain me what i should add to insert another pool after this one? (round robin, failover or someting else)
P.S sometime if i closed ccminer and restart it im able to log again and mine ...
Thanks for the help
|
|
|
|
flipclip
Member

Offline
Activity: 111
Merit: 10
|
 |
April 28, 2015, 02:19:45 AM |
|
If flipclip would share his script, perhaps it would be more simple to adapt.
--scryptr
Unfortunately I don't believe my spaghetti code will be simple for anyone to adapt (I'm not a programmer, and I took the idea on as a lark to try out bash). Let me see if I can clean it up a little so someone else could get it running.
|
|
|
|
chrysophylax
Legendary
Offline
Activity: 3122
Merit: 1093
--- ChainWorks Industries ---
|
 |
April 28, 2015, 02:24:29 AM |
|
If flipclip would share his script, perhaps it would be more simple to adapt.
--scryptr
Unfortunately I don't believe my spaghetti code will be simple for anyone to adapt (I'm not a programmer, and I took the idea on as a lark to try out bash). Let me see if I can clean it up a little so someone else could get it running. that would be awesome ... as im less of a programmer than most ... but i know enough to get me into LOADS of trouble ...  ... #crysx
|
|
|
|
chrysophylax
Legendary
Offline
Activity: 3122
Merit: 1093
--- ChainWorks Industries ---
|
 |
April 28, 2015, 02:27:58 AM |
|
I have a question, if sometimes on yaamp the connection is lost and isn't restarting, i would like to add another pool how can i do it. (with last ccminer1.5.47) Am i the only one who lost connection on yaamp? for now i use : ccminer.exe -R 5 -T 5 -q -a quark -o stratum+tcp://yaamp.com:4033 -u 5LA1mw7JZKKVf3LK9KLAJSzQZzNwU9Z3Rp -p d=0.002 Can someone explain me what i should add to insert another pool after this one? (round robin, failover or someting else)
P.S sometime if i closed ccminer and restart it im able to log again and mine ...
Thanks for the help
ccminer itself doesnt have this facility mate ... unlike sgminer which has that feature built in ... but we are talking two different miners here ... in the current discussion about scripts and such with flipclip and scryptr - that is pretty much what is on par with what you are asking ... a way of making ccminer continue mining - albiet different algos and such - but to continue mining in the event of a crash or a timed close then reopen of ccminer ... there is no real easy way at the moment but it will eventually happen i believe ... #crysx
|
|
|
|
scryptr
Legendary
Offline
Activity: 1798
Merit: 1028
|
 |
April 28, 2015, 04:10:55 AM |
|
I have a question, if sometimes on yaamp the connection is lost and isn't restarting, i would like to add another pool. How can i do this. (with last ccminer1.5.47) Am i the only one who lost connection on yaamp? For now i use : ccminer.exe -R 5 -T 5 -q -a quark -o stratum+tcp://yaamp.com:4033 -u 5LA1mw7JZKKVf3LK9KLAJSzQZzNwU9Z3Rp -p d=0.002
Can someone explain me what i should add to insert another pool after this one? (round robin, failover or someting else)
P.S sometime if i closed ccminer and restart it im able to log again and mine ...
Thanks for the help
LOOPER-- This is how: :loop ccminer.exe -r 1 -R 5 -a quark -o stratum+tcp://us-west01.miningrigrentals.com:3333 -u me -p x -d 0,1,2 taskkill -t -f /im ccminer* timeout -t 1 ccminer.exe -r 1 -R 5 -a quark -o stratum+tcp://us-central01.miningrigrentals.com:3333 -u me -p x -d 0,1,2 taskkill -t -f /im ccminer* timeout -t 1 goto loop This is a slight revision of Bathrobehero's script. Use the "-R" switch, and the "-r" switch. The script above puts in a 5 second delay (-R 5) before switching to the lower pool in the batch file, and to try to reconnect once (-r 1). Yaamp uses it to switch between algos. As used above, it switches between pools. Yamp.com has an example script linked on the homepage for algo switching. If you execute the command "ccminer --help >> help.txt" in a windows command box, you will get a text file explaining all the ccminer commands. --scryptr
|
|
|
|
sp_ (OP)
Legendary
Offline
Activity: 2926
Merit: 1087
Team Black developer
|
 |
April 28, 2015, 04:28:47 AM |
|
COMMIT 749-- I just cloned git and compiled build 749. The 2x970 FTW+ rig is now mining Quark at 30.6Mh/s, an improvement of 1.5Mh/s for the rig. Each card is now hashing at more than 15Mh/s.
... my 5x 750ti + 1x 280x rig went from 41.5 MHASH to 44.5MHASH  (standard clocks, no overclock) 520 watt in the wall. Msi gaming z97 motherboard/ celeron cpu/ Release 47 used 510 watt, Commit 749 is a good one, the gain is even bether on the 980, but it uses more power. My 5 750ti+980 reports +1MHASH (45.5MHASH) and use 5 watt more 510 -> 515
|
|
|
|
chrysophylax
Legendary
Offline
Activity: 3122
Merit: 1093
--- ChainWorks Industries ---
|
 |
April 28, 2015, 04:32:41 AM |
|
I have a question, if sometimes on yaamp the connection is lost and isn't restarting, i would like to add another pool. How can i do this. (with last ccminer1.5.47) Am i the only one who lost connection on yaamp? For now i use : ccminer.exe -R 5 -T 5 -q -a quark -o stratum+tcp://yaamp.com:4033 -u 5LA1mw7JZKKVf3LK9KLAJSzQZzNwU9Z3Rp -p d=0.002
Can someone explain me what i should add to insert another pool after this one? (round robin, failover or someting else)
P.S sometime if i closed ccminer and restart it im able to log again and mine ...
Thanks for the help
LOOPER-- This is how: :loop ccminer.exe -r 1 -R 5 -a quark -o stratum+tcp://us-west01.miningrigrentals.com:3333 -u me -p x -d 0,1,2 taskkill -t -f /im ccminer* timeout -t 1 ccminer.exe -r 1 -R 5 -a quark -o stratum+tcp://us-central01.miningrigrentals.com:3333 -u me -p x -d 0,1,2 taskkill -t -f /im ccminer* timeout -t 1 goto loop This is a slight revision of Bathrobehero's script. Use the "-R" switch, and the "-r" switch. The script above puts in a 5 second delay (-R 5) before switching to the lower pool in the batch file, and to try to reconnect once (-r 1). Yaamp uses it to switch between algos. As used above, it switches between pools. Yamp.com has an example script linked on the homepage for algo switching. If you execute the command "ccminer --help >> help.txt" in a windows command box, you will get a text file explaining all the ccminer commands. --scryptr nice - windows batch in dos ... been way too long for me ... #crysx
|
|
|
|
Star65
Member

Offline
Activity: 109
Merit: 13
|
 |
April 28, 2015, 12:11:12 PM Last edit: April 28, 2015, 05:29:26 PM by Star65 |
|
Nice hashrate on quark & skein btw! Nice work sp_! My hashrate on quark: 2x750ti=3x280x!!! 100W=450W?!  Cпacибo! I will mine for you! I have 2x750ti atm, but there is a slot for another one (in the daughter comp's). 
|
|
|
|
BitcoinRichman
|
 |
April 28, 2015, 12:23:09 PM |
|
w  W how many $$ must i burn to get that speed
|
|
|
|
bathrobehero
Legendary
Offline
Activity: 2002
Merit: 1051
ICO? Not even once.
|
 |
April 28, 2015, 12:23:48 PM |
|
TASKKILL--
I inserted your taskkill lines of code between every launch line in the Windows batch file for Yaamp. I still get Windows error reports, not every time, but enough to render the batch file useless for a long-running script. Maybe I haven't completely shutdown the error reports in my system. I haven't compiled ccminer with your suggested correction. I need to set up a Windows build toolchain...
--scryptr
So it sometimes crashes for you. In that case I doubt the code change will help you. The batch file doesn't call ctrl+c on its own. ERROR REPORTING-- I redid my Error Reporting configuration in Win 7 x64. I selected "ccminer.exe" as a program to specifically be ignored. I saved this as an administrator. I still get "ccminer.exe has stopped working" between every few algo changes in the Yaamp batch file. If there is another way to shut the error reporting off, I haven't found it yet. --scryptr If I remember correctly I used a reg key like this (Option two): http://www.sevenforums.com/tutorials/194181-windows-error-reporting-disable-windows.html
|
Not your keys, not your coins!
|
|
|
chrysophylax
Legendary
Offline
Activity: 3122
Merit: 1093
--- ChainWorks Industries ---
|
 |
April 28, 2015, 12:30:22 PM |
|
Nice hashrate on quark & skein btw! Nice work sp_! My hashrate on quark: 2x750ti=3x280x!!! 100W=450W?!  Cпacибo! I will mine for you! I have 2x750ti atm, but there is slot for another one (in the daughter comp's).  we have a proposal ... we have setup a donation system FOR sp which we are currently testing and mining via yaamp as i write this ... this has NOT been discussed with sp - nor authorized by sp ... in fact - he knows nothing about it as yet - as we have just finished the setup a few minutes ago ... currently the test is specifically on x11 - but other algos will follow to sp's btc address ... this can be seen via yaamp currently which will show that it has just started a few minutes ago ... http://yaamp.com/?address=1CTiNJyoUmbdMRACtteRWXhGqtSETYd6Vd ... it is the test system we have running with 2 x gigabyte 750ti oc lp cards running fedora 19 x64 and sp's latest ccminer v47 ( with intensity -i 20.6 as its the highest these cards will do ) ... as this is the usual way we donate - we thought possibly we might not be the only ones that would want to do it this way ... if you are interested in donating via mining and it is agreeable that a mining system for donation for sp be setup - we shall supply the details of the server and setup of the mining system and you too can join in ... also - if this is a 'good' way of donating - and everyone can pitch in a small amount of hashpower ( no matter how small ) we will keep this system running for donations AND setup various other ones in different algorithms ... all of which can be publicly checked and seen on yaamp via sp's btc address ... this is obviously based on a trust system - as donations are the lifeblood of the development process ... please let us know your thoughts ... #crysx
|
|
|
|
Epsylon3
Legendary
Offline
Activity: 1484
Merit: 1122
ccminer/cpuminer developer
|
 |
April 28, 2015, 03:21:47 PM |
|
small contribution--
I sent you, KlausT, and tpruvot each a bit. I have to mow the lawn, I will get back to "git and compile" this evening. I am still running the release build of v46 on all my rigs. The release behaved well, the charts on the pool were trending up.
Please don't lower my rates... --scryptr
Thanks for the 10 mBTC (first gift from the forum since... a long time) For Cuda 7.0, its not compatible yet, but i submitted a bug report to nvidia which fixed the problem in their dev version. I didnt get details about the fix... but should be in next CUDA release, maybe 7.1, 7.5, 8 (no idea)
|
|
|
|
scryptr
Legendary
Offline
Activity: 1798
Merit: 1028
|
 |
April 28, 2015, 04:18:17 PM |
|
small contribution--
I sent you, KlausT, and tpruvot each a bit. I have to mow the lawn, I will get back to "git and compile" this evening. I am still running the release build of v46 on all my rigs. The release behaved well, the charts on the pool were trending up.
Please don't lower my rates... --scryptr
Thanks for the 10 mBTC (first gift from the forum since... a long time) For Cuda 7.0, its not compatible yet, but i submitted a bug report to nvidia which fixed the problem in their dev version. I didnt get details about the fix... but should be in next CUDA release, maybe 7.1, 7.5, 8 (no idea) CUDA 7.x-- I downloaded and installed CUDA 6.5 on one of my rigs running nVidia driver v349.16. The Cuda toolkit install reverted some of the driver components to v343. The system compiles and runs, but my driver is reported as v343 now. --scryptr
|
|
|
|
DougB62
|
 |
April 28, 2015, 04:37:01 PM |
|
small contribution--
I sent you, KlausT, and tpruvot each a bit. I have to mow the lawn, I will get back to "git and compile" this evening. I am still running the release build of v46 on all my rigs. The release behaved well, the charts on the pool were trending up.
Please don't lower my rates... --scryptr
Thanks for the 10 mBTC (first gift from the forum since... a long time) For Cuda 7.0, its not compatible yet, but i submitted a bug report to nvidia which fixed the problem in their dev version. I didnt get details about the fix... but should be in next CUDA release, maybe 7.1, 7.5, 8 (no idea) CUDA 7.x-- I downloaded and installed CUDA 6.5 on one of my rigs running nVidia driver v349.16. The Cuda toolkit install reverted some of the driver components to v343. The system compiles and runs, but my driver is reported as v343 now. --scryptr Yeah - Unfortunately, it doesn't allow you to keep your current driver set. 
|
|
|
|
flipclip
Member

Offline
Activity: 111
Merit: 10
|
 |
April 28, 2015, 05:13:58 PM |
|
small contribution--
I sent you, KlausT, and tpruvot each a bit. I have to mow the lawn, I will get back to "git and compile" this evening. I am still running the release build of v46 on all my rigs. The release behaved well, the charts on the pool were trending up.
Please don't lower my rates... --scryptr
Thanks for the 10 mBTC (first gift from the forum since... a long time) For Cuda 7.0, its not compatible yet, but i submitted a bug report to nvidia which fixed the problem in their dev version. I didnt get details about the fix... but should be in next CUDA release, maybe 7.1, 7.5, 8 (no idea) CUDA 7.x-- I downloaded and installed CUDA 6.5 on one of my rigs running nVidia driver v349.16. The Cuda toolkit install reverted some of the driver components to v343. The system compiles and runs, but my driver is reported as v343 now. --scryptr Scryptr I can't remember if you are on linux but: if you use the "run" installer (from the download page: https://developer.nvidia.com/cuda-toolkit-65) and not the rpm/deb, you are given the option not to install the driver associated with that version of the toolkit, so you can keep your more recent driver. (at least in Ubuntu, though I assume other distros are equivalent.)
|
|
|
|
5w00p
|
 |
April 28, 2015, 05:15:04 PM |
|
small contribution--
I sent you, KlausT, and tpruvot each a bit. I have to mow the lawn, I will get back to "git and compile" this evening. I am still running the release build of v46 on all my rigs. The release behaved well, the charts on the pool were trending up.
Please don't lower my rates... --scryptr
Thanks for the 10 mBTC (first gift from the forum since... a long time) For Cuda 7.0, its not compatible yet, but i submitted a bug report to nvidia which fixed the problem in their dev version. I didnt get details about the fix... but should be in next CUDA release, maybe 7.1, 7.5, 8 (no idea) CUDA 7.x-- I downloaded and installed CUDA 6.5 on one of my rigs running nVidia driver v349.16. The Cuda toolkit install reverted some of the driver components to v343. The system compiles and runs, but my driver is reported as v343 now. --scryptr Yeah - Unfortunately, it doesn't allow you to keep your current driver set.  Actually, the Windows CUDA 6.5 Toolkit does allow you to keep your current driver set, if you just uncheck the options after having chosen a Custom Install.   It worked for me.
|
|
|
|
DougB62
|
 |
April 28, 2015, 05:19:10 PM |
|
Actually, the Windows CUDA 6.5 Toolkit does allow you to keep your current driver set, if you just uncheck the options after having chosen a Custom Install.   It worked for me. I did that when installing 6.5, and it installed an earlier driver anyway. No big deal really, just had to re-install the latest drivers. Weird.
|
|
|
|
Star65
Member

Offline
Activity: 109
Merit: 13
|
 |
April 28, 2015, 05:59:25 PM |
|
Nice hashrate on quark & skein btw! Nice work sp_! My hashrate on quark: 2x750ti=3x280x!!! 100W=450W?!  Cпacибo! I will mine for you! I have 2x750ti atm, but there is a slot for another one (in the daughter comp's).  we have a proposal ... we have setup a donation system FOR sp which we are currently testing and mining via yaamp as i write this ... this has NOT been discussed with sp - nor authorized by sp ... in fact - he knows nothing about it as yet - as we have just finished the setup a few minutes ago ... currently the test is specifically on x11 - but other algos will follow to sp's btc address ... this can be seen via yaamp currently which will show that it has just started a few minutes ago ... http://yaamp.com/?address=1CTiNJyoUmbdMRACtteRWXhGqtSETYd6Vd ... it is the test system we have running with 2 x gigabyte 750ti oc lp cards running fedora 19 x64 and sp's latest ccminer v47 ( with intensity -i 20.6 as its the highest these cards will do ) ... as this is the usual way we donate - we thought possibly we might not be the only ones that would want to do it this way ... if you are interested in donating via mining and it is agreeable that a mining system for donation for sp be setup - we shall supply the details of the server and setup of the mining system and you too can join in ... also - if this is a 'good' way of donating - and everyone can pitch in a small amount of hashpower ( no matter how small ) we will keep this system running for donations AND setup various other ones in different algorithms ... all of which can be publicly checked and seen on yaamp via sp's btc address ... this is obviously based on a trust system - as donations are the lifeblood of the development process ... please let us know your thoughts ... #crysx Hey mate! This is my way! LOL OK! I'm all for this proposal! Another thing: SP_ needs to prepare some bat-files (SP_x11.bat, SP_quark.bat, etc) and put them in each his releases. For example SP_x11.bat: ccminer.exe -a x11 -o stratum+tcp://yaamp.com:3533 -u 1CTiNJyoUmbdMRACtteRWXhGqtSETYd6Vd -p d=0.002 I think that's a very good method, we can behave the same way with the other developers (Wolf0, Tpruvot...).
|
|
|
|
scryptr
Legendary
Offline
Activity: 1798
Merit: 1028
|
 |
April 28, 2015, 06:59:46 PM Last edit: April 28, 2015, 08:18:40 PM by scryptr |
|
small contribution--
I sent you, KlausT, and tpruvot each a bit. I have to mow the lawn, I will get back to "git and compile" this evening. I am still running the release build of v46 on all my rigs. The release behaved well, the charts on the pool were trending up.
Please don't lower my rates... --scryptr
Thanks for the 10 mBTC (first gift from the forum since... a long time) For Cuda 7.0, its not compatible yet, but i submitted a bug report to nvidia which fixed the problem in their dev version. I didnt get details about the fix... but should be in next CUDA release, maybe 7.1, 7.5, 8 (no idea) CUDA 7.x-- I downloaded and installed CUDA 6.5 on one of my rigs running nVidia driver v349.16. The Cuda toolkit install reverted some of the driver components to v343. The system compiles and runs, but my driver is reported as v343 now. --scryptr Scryptr I can't remember if you are on linux but: if you use the "run" installer (from the download page: https://developer.nvidia.com/cuda-toolkit-65) and not the rpm/deb, you are given the option not to install the driver associated with that version of the toolkit, so you can keep your more recent driver. (at least in Ubuntu, though I assume other distros are equivalent.) LINUX RIG-- This was a linux rig. I installed the xorg/edgers ppa and used apt-get to install the drivers. Then I used dpkg to install the toolkit, and lost the drivers. I just used apt-get to re-install nvidia-349, and lost the toolkit.  The rig needs to be reloaded...oh, well. I am hoping toolkit v7.0 will allow the latest drivers. EDIT: According to the manual, "Getting started with CUDA", you do not need to purge drivers when using "dpkg" with the Cuda 6.5 *.deb file. I went to the downloaded toolkit *.deb file and re-installed with little fuss. My current driver is 343.19, and I am mining again. --scryptr
|
|
|
|
hashbrown9000
|
 |
April 28, 2015, 10:20:03 PM |
|
Scryptr I can't remember if you are on linux but: if you use the "run" installer (from the download page: https://developer.nvidia.com/cuda-toolkit-65) and not the rpm/deb, you are given the option not to install the driver associated with that version of the toolkit, so you can keep your more recent driver. (at least in Ubuntu, though I assume other distros are equivalent.) I'm running on linux ubuntu 14.04 and successfully installed cuda 6.5. I tried installing my own 346.59 nvidia drivers, but cuda forces me to use their built-in 340 drivers. If I try moving to 346 drivers, the cuda installer cannot find a current nvidia driver. LINUX RIG--
This was a linux rig. I installed the xorg/edgers ppa and used apt-get to install the drivers. Then I used dpkg to install the toolkit, and lost the drivers. I just used apt-get to re-install nvidia-349, and lost the toolkit. Smiley The rig needs to be reloaded...oh, well. I am hoping toolkit v7.0 will allow the latest drivers.
EDIT: According to the manual, "Getting started with CUDA", you do not need to purge drivers when using "dpkg" with the Cuda 6.5 *.deb file. I went to the downloaded toolkit *.deb file and re-installed with little fuss. My current driver is 343.19, and I am mining again.
--scryptr I tried installing from the .deb file as well, but the install errors out with "repository not found" .... or something like it. I had to use the .run files and combine instructions from 6 or 7 different online guides to finally get cuda to install.
|
Pinkcoin: ETH: VTC: BTC:
|
|
|
|