Author

Topic: [Cast XMR] high speed XMR/CryptoNight miner for RX Vega GPUs (2 KHash/s) - page 102. (Read 206409 times)

newbie
Activity: 4
Merit: 0
Hi,
I have a strange problem. Im getting really good perf. But sometime it just stop mining nothing appear in the console until i hit a enter or any key and it start back. Last time i notice it he wasnt sending hashes for like 8 minutes.
Any idea what could cause that?

Mining with 3 rx 580 8gb + 4gb ram.

Hi I had a same issue! I made a script for autohotkey to send every minute S key to miner's window and fixed it, but it's very inconvenient!! I am no alone I think developer should make an update.
member
Activity: 357
Merit: 26
if you want to restart miner x time due hash drop here is simple script .
my miner restart every 30 min
Ps don't close script terminal.
creat bat file and put this.
Edit set commandline and set u config

Code:
@echo off

echo -------------------------------------------------------------------
echo Restart Cast miner every 30 min
echo -------------------------------------------------------------------
echo:

set executable=cast_xmr-vega.exe
set commandline= -S youpoolhere -u youwallet here and others cmd from you bat file. %* --fastjobswitch --forcecompute
set runforseconds=1800
set restartinseconds=2
set /a counter=0
timeout 2
:start
start "cast_xmr-vega" %executable% %commandline%
echo:
echo The software will run for %runforseconds% seconds
timeout %runforseconds%
taskkill /f /im %executable%
echo:
echo Restarting the software in %restartinseconds% seconds (%counter%)
timeout %restartinseconds%
set /a counter+=1
echo:
echo:
goto start

Thanks!! That is awesome stuff. Ever since I plugged 6 Vega either the drivers or the program are less stable and have to restart things over with a bat file, which I use, but it is manual and different than this one. How could your bat file be done to have onedrivetool and devcon.exe settings included too?  Lips sealed

I really want to switch the drivers to the new Adrenalin ones... but it seems like the hash rate is quite slower for Vega 56

here is script to restart video cards , start overdrive and start mining.
juts copy,creat new bat file and edit.
SET MinerOpts -S xmr-eu.dwarfpool.com:9100 -u .... etc
SET VidTool1= OverdriveNTool.exe -r0 -p0Vega56 -r0 -p1Vega56 ... etc
set runforseconds=1800 secs to restart , 30 min default.

sorry but bitcointalk does not let me post the complete script in the code Huh Huh Huh Huh

Credits @TheJerichoJones


http://fgteambr.esy.es/start.txt

Dumb question: I'm already using the excellent @TheJerichoJones script to restart video cards , start overdrive and start mining.

Works brilliantly, just currently needs restarting every hour or so. Would this bat be tweakable to run JJ's script, rather than the miner? (EDIT: using the script from your link seems to work! Testing now - Thanks!)
member
Activity: 75
Merit: 10
But sometime it just stop mining nothing appear in the console until i hit a enter or any key and it start back.
This typically occurs when you have your Windows Command Prompt windows enabled for 'Quick Edit', and you click the mouse inside the window to focus; but this tells the Command Prompt window that you want to quick copy content.

To fix: While the miner is running, click the Command Prompt icon, go to Properties, and unselect Quick Edit. Then go back to that menu, select Defaults, and uncheck it there so future windows apply this setting.
newbie
Activity: 1
Merit: 0
Hi,
I have a strange problem. Im getting really good perf. But sometime it just stop mining nothing appear in the console until i hit a enter or any key and it start back. Last time i notice it he wasnt sending hashes for like 8 minutes.
Any idea what could cause that?

Mining with 3 rx 580 8gb + 4gb ram.
newbie
Activity: 14
Merit: 0
Does --forcecompute option works with Adrenaline drivers and Vegas?
newbie
Activity: 2
Merit: 0
Does this work with the new AMD Adrenalin driver?
Regarding that there should be a compute option in that driver.
Is the speed with that driver the same with the blockchain driver?
Would be interesting who are gaming and mining on the same pc.
newbie
Activity: 4
Merit: 0
Hello! I use 0.8 version cast-xmr miner with 5* his rx580 4gb (hynix+elpida) on windows 10. It shows 850 h/s per each, thats very good. But there is an issue with my system, sometimes (10 minutes from run or more) it stops show hashrates until i hit S button. When i hit S button it rapidly scroll and continue work, but all shares from that time are rejected by pool as obsolete.

I made a crutch: wrote autohotkey script which sends "S" key to miner's window every 60 seconds, but it's very inconvenient, i cannot make it to autostartup etc....

Could you make an update with new parameter to show statistics ("s" key pressed) every period of time?
In a command prompt window, if you click with your mouse anywhere within it, while window is in focus, the output will stop auto-scrolling. Your cursor should also change to white rectangle like this:
https://ibb.co/hiQEpm

If this is the case, then you should just press Enter (or whichever button actually) which will enable the auto-scrolling of the output once again.

If this solves your issue, then simply take care to always press Enter in the end if you are doing something in your miner's window (e.g. manually scrolling, selecting some text or whatever).

It's not my case: i leave cursor in normal form, miner works and shows hashrate with scroll. When I return after some time, cursor is normal, scroolling freezes. I hit S - miner backs to mining, but all shares are rejected. I think "S" procedure re-initilialize something which cause miner to freeze in my case.
newbie
Activity: 58
Merit: 0
Ok, planning to support multiple GPU per instance. Personally found that running on instance per GPU very stable and more flexible, but there seem some reports that it does influence the other GPUs. Should be no big deal to implement.
Which kind of API would you suggest? Is there an standard?
Hello! I use 0.8 version cast-xmr miner with 5* his rx580 4gb (hynix+elpida) on windows 10. It shows 850 h/s per each, thats very good. But there is an issue with my system, sometimes (10 minutes from run or more) it stops show hashrates until i hit S button. When i hit S button it rapidly scroll and continue work, but all shares from that time are rejected by pool as obsolete.

I made a crutch: wrote autohotkey script which sends "S" key to miner's window every 60 seconds, but it's very inconvenient, i cannot make it to autostartup etc....

Could you make an update with new parameter to show statistics ("s" key pressed) every period of time?



In a command prompt window, if you click with your mouse anywhere within it, while window is in focus, the output will stop auto-scrolling. Your cursor should also change to white rectangle like this:
https://ibb.co/hiQEpm

If this is the case, then you should just press Enter (or whichever button actually) which will enable the auto-scrolling of the output once again.

If this solves your issue, then simply take care to always press Enter in the end if you are doing something in your miner's window (e.g. manually scrolling, selecting some text or whatever).
newbie
Activity: 4
Merit: 0
Ok, planning to support multiple GPU per instance. Personally found that running on instance per GPU very stable and more flexible, but there seem some reports that it does influence the other GPUs. Should be no big deal to implement.
Which kind of API would you suggest? Is there an standard?
Hello! I use 0.8 version cast-xmr miner with 5* his rx580 4gb (hynix+elpida) on windows 10. It shows 850 h/s per each, thats very good. But there is an issue with my system, sometimes (10 minutes from run or more) it stops show hashrates until i hit S button. When i hit S button it rapidly scroll and continue work, but all shares from that time are rejected by pool as obsolete.

I made a crutch: wrote autohotkey script which sends "S" key to miner's window every 60 seconds, but it's very inconvenient, i cannot make it to autostartup etc....

Could you make an update with new parameter to show statistics ("s" key pressed) every period of time?

STT
legendary
Activity: 4102
Merit: 1454
How do Ardenalin drivers work if you use them on a setup that has rx570 rx 580 and Vega included?

Any expirience with that?
Dont update past the blockchain drivers which is 17.11.1    Only they give priority to compute functions and the others are for gaming, if the latest release somehow can switch between gaming and compute priority then great but Ive not seen this so far.
Here is AMD people interviewed on a video reviewing most of the Adrenalin features, they are all about UI pretty much for mainstream use: https://www.youtube.com/watch?v=WjNPNMUeBY8&t=1497s

I've tried with memory clock near 1200mhz and it doesnt make up for the blockchain drivers advantage, but others might have made better progress.  Its only about 7.7% difference at best
newbie
Activity: 96
Merit: 0
thanks for your miner software !
perf with rx580: 950h/s
with what parameters?
newbie
Activity: 25
Merit: 0
thanks for your miner software !
perf with rx580: 950h/s
newbie
Activity: 96
Merit: 0
Miner -  Cast_XMR is only suitable for Vega or for other Reds too?
newbie
Activity: 3
Merit: 0
I get errors with 6 RX 580 GPUs
Seems to work fine for 4 GPUs

cl_mem_object_allocation_failure

You ran out of memory. increase the size of virtual memory in Windows. you can see how in the guide below. For instance, say you have 6 Vega GPUs, they have 8 GB of mem each, so you multiply 8x6 equals 48. So you set virtual memory in Windows to 48000MB.

http://vega.miningguides.com/

Thanks, that fixed the issue
newbie
Activity: 126
Merit: 0
I get errors with 6 RX 580 GPUs
Seems to work fine for 4 GPUs

cl_mem_object_allocation_failure

You ran out of memory. increase the size of virtual memory in Windows. you can see how in the guide below. For instance, say you have 6 Vega GPUs, they have 8 GB of mem each, so you multiply 8x6 equals 48. So you set virtual memory in Windows to 48000MB.

http://vega.miningguides.com/

that sounds strange. Once the drivers are installed /blockchain, I mean/ all the Vegas are enabled and detected by default.

http://vega.miningguides.com/

I'd follow the guide above to uninstall the drivers cleanly and it takes a couple of minutes with DDU Uninstaller. I've experienced issues like risers giving me a hard time, but once the gpus were detected during the drivers installation they were never disabled or undetected by the OS.

It doesn't take much and might be worth it. If you have an SSD restarting and so on isn-t an issue.

When I first installed the blockchain drivers, 4 cards were present. So it worked on all.

The next reboot, I have 3 cards detected by Windows. I change nothing and reboot again, 4 cards appear and I can mine.

It is random between 2 and 4 cards detected by windows each boot. I am not complaining because I can quickly restart until it has found four cards, but in terms of automated recovery from a shutdown, it is hard to get right Smiley
I think it would be worth it to uninstall the drivers with DDU Uninstaller and see if Windows detect them all again.

Btw, based on the bat by FgTeamBr I managed to not only restart the miner but also devcon and overdrivenTool settings. Some random hash rate drops or strange behaviour from the gpu1 were driving me nuts
newbie
Activity: 3
Merit: 0
I get errors with 6 RX 580 GPUs
Seems to work fine for 4 GPUs

cl_mem_object_allocation_failure
full member
Activity: 325
Merit: 110
that sounds strange. Once the drivers are installed /blockchain, I mean/ all the Vegas are enabled and detected by default.

http://vega.miningguides.com/

I'd follow the guide above to uninstall the drivers cleanly and it takes a couple of minutes with DDU Uninstaller. I've experienced issues like risers giving me a hard time, but once the gpus were detected during the drivers installation they were never disabled or undetected by the OS.

It doesn't take much and might be worth it. If you have an SSD restarting and so on isn-t an issue.

When I first installed the blockchain drivers, 4 cards were present. So it worked on all.

The next reboot, I have 3 cards detected by Windows. I change nothing and reboot again, 4 cards appear and I can mine.

It is random between 2 and 4 cards detected by windows each boot. I am not complaining because I can quickly restart until it has found four cards, but in terms of automated recovery from a shutdown, it is hard to get right Smiley
newbie
Activity: 126
Merit: 0
Is anyone using JJ's batch file to automate disable/enable (powershell), apply overdrive and commence mining?

I have a problem where windows will sometimes boot with 2 vega showing, sometimes with 3 and sometimes with 4.
I want to modify JJ's batch file (which automatically runs) to check how many Vega are detected, and reboot if not 4.
that sounds strange. Once the drivers are installed /blockchain, I mean/ all the Vegas are enabled and detected by default.

http://vega.miningguides.com/

I'd follow the guide above to uninstall the drivers cleanly and it takes a couple of minutes with DDU Uninstaller. I've experienced issues like risers giving me a hard time, but once the gpus were detected during the drivers installation they were never disabled or undetected by the OS.

It doesn't take much and might be worth it. If you have an SSD restarting and so on isn-t an issue.
newbie
Activity: 126
Merit: 0
if you want to restart miner x time due hash drop here is simple script .
my miner restart every 30 min
Ps don't close script terminal.
creat bat file and put this.
Edit set commandline and set u config

Code:
@echo off

echo -------------------------------------------------------------------
echo Restart Cast miner every 30 min
echo -------------------------------------------------------------------
echo:

set executable=cast_xmr-vega.exe
set commandline= -S youpoolhere -u youwallet here and others cmd from you bat file. %* --fastjobswitch --forcecompute
set runforseconds=1800
set restartinseconds=2
set /a counter=0
timeout 2
:start
start "cast_xmr-vega" %executable% %commandline%
echo:
echo The software will run for %runforseconds% seconds
timeout %runforseconds%
taskkill /f /im %executable%
echo:
echo Restarting the software in %restartinseconds% seconds (%counter%)
timeout %restartinseconds%
set /a counter+=1
echo:
echo:
goto start

Thanks!! That is awesome stuff. Ever since I plugged 6 Vega either the drivers or the program are less stable and have to restart things over with a bat file, which I use, but it is manual and different than this one. How could your bat file be done to have onedrivetool and devcon.exe settings included too?  Lips sealed

I really want to switch the drivers to the new Adrenalin ones... but it seems like the hash rate is quite slower for Vega 56
hero member
Activity: 848
Merit: 500
Tested Your miner on RX 4 and 8 GB cards. 8GB cards running fine and goes over 1000H/s. However 4GB cards working something like 860h/s while in sgminer works 920-980H/s
Jump to: