Bitcoin Forum
May 11, 2024, 06:43:22 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 [344] 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 ... 1412 »
  Print  
Author Topic: Claymore's Dual Ethereum AMD+NVIDIA GPU Miner v15.0 (Windows/Linux)  (Read 6589785 times)
Xardas2014
Hero Member
*****
Offline Offline

Activity: 635
Merit: 500


View Profile
November 02, 2016, 01:47:48 AM
 #6861

Today I tried existing miners, I don't like their stability and speed.
Ok, I will release first version of my ZCash miner very soon. AMD only.

Great news!! Equihash + AMD currently equals bug city. And the primary coin is worth more than 1 btc, close to 2.

Agreed, to keep the miners running I had to use a script loop to relaunch them every 10 minutes Cheesy
At least the restart is pretty fast.

care to share your script  please Smiley
https://drive.google.com/file/d/0B3wMsc4FJjHyYjdjLVB4YnNIR2M/view
1715409802
Hero Member
*
Offline Offline

Posts: 1715409802

View Profile Personal Message (Offline)

Ignore
1715409802
Reply with quote  #2

1715409802
Report to moderator
1715409802
Hero Member
*
Offline Offline

Posts: 1715409802

View Profile Personal Message (Offline)

Ignore
1715409802
Reply with quote  #2

1715409802
Report to moderator
1715409802
Hero Member
*
Offline Offline

Posts: 1715409802

View Profile Personal Message (Offline)

Ignore
1715409802
Reply with quote  #2

1715409802
Report to moderator
Remember that Bitcoin is still beta software. Don't put all of your money into BTC!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715409802
Hero Member
*
Offline Offline

Posts: 1715409802

View Profile Personal Message (Offline)

Ignore
1715409802
Reply with quote  #2

1715409802
Report to moderator
1715409802
Hero Member
*
Offline Offline

Posts: 1715409802

View Profile Personal Message (Offline)

Ignore
1715409802
Reply with quote  #2

1715409802
Report to moderator
1715409802
Hero Member
*
Offline Offline

Posts: 1715409802

View Profile Personal Message (Offline)

Ignore
1715409802
Reply with quote  #2

1715409802
Report to moderator
Xardas2014
Hero Member
*****
Offline Offline

Activity: 635
Merit: 500


View Profile
November 02, 2016, 02:00:57 AM
 #6862

The genoil.exe is a different size from what Genoil released. I highly suggest you replace the one in the download with the original version straight from Genoil's github: https://github.com/Genoil/ZECMiner/blob/master/releases/genoil-zec-miner-0.5.zip
gollygosh
Full Member
***
Offline Offline

Activity: 160
Merit: 100



View Profile
November 02, 2016, 02:38:35 AM
Last edit: November 02, 2016, 02:50:24 AM by gollygosh
 #6863

Hi xardos any chance you can give us a little more info on how to configure and run this script, I used powershell to run it and changed the Arguments = to my address etc, but when I try running it, all I get is a dos box with some red writing in it flash up, then it quits pretty quickly (couple of seconds) back to the desktop, like nothing happened.

Not very familiar with powershell scripts, so any help is appreciated, I am running the Genoil miner from a desktop folder, under Windows 7 ultimate 64bit. Below is my config:-

do {
    Write-Host "Setting up process" -ForegroundColor Green
    [int]$global:count = 0
    [int]$global:countstr = 0
    [bool]$global:restart = $false
    $pinfo = New-Object System.Diagnostics.ProcessStartInfo
    $pinfo.FileName = "genoil.exe"
    $pinfo.Arguments = "-c zec-eu.suprnova.cc:2142 -u hal1000.hal1 -p 1 -g 0 1 -k zec zec"
    $pinfo.UseShellExecute = $false
    $pinfo.CreateNoWindow = $false
    $pinfo.RedirectStandardOutput = $true
    $pinfo.RedirectStandardError = $false
    $process = New-Object System.Diagnostics.Process
    $process.StartInfo = $pinfo
 
    $OutEvent = Register-ObjectEvent -InputObject $process -EventName OutputDataReceived -Action {
   $global:countstr = 0;
        $stdout = $Event.SourceEventArgs.Data
        Write-Host $stdout
   if ($stdout.Contains(": 0.0S/s"))
        {
            Write-Host "--WARNING. PROCESS WILL BE RESTARTED SOON-- Count error:" $global:count -ForegroundColor Yellow
            $global:count += 1;
        }
        if ($stdout.Contains(": job not found"))
        {
            Write-Host "--WARNING. PROCESS WILL BE RESTARTED SOON-- Count error:" $global:count -ForegroundColor Yellow
            $global:count += 1;
        }
 
        if($global:count -gt 5)
        {
            Write-Host "--KILLING PROCESS AND RESTARTING--" -ForegroundColor Red
            $global:restart = $true
            $global:count = 0
            Stop-Process -processname genoil
        }
    }
    $process.Start()
    $process.BeginOutputReadLine()
    Write-Host "Process started" -ForegroundColor Green
    while (!$process.HasExited)
    {
        
   $global:countstr += 1;
   if ($global:countstr -gt 15)
   {
      $global:restart = $true
           $global:count = 0
                Stop-Process -processname genoil
      break;
   }
   Start-Sleep -Seconds 1
    }
}
while($global:restart)
$OutEvent.Name |
    ForEach-Object {Unregister-Event -SourceIdentifier $_}
Write-Host "Process finished"


Thank you

mirny
Legendary
*
Offline Offline

Activity: 1108
Merit: 1005



View Profile
November 02, 2016, 02:43:39 AM
 #6864

Firstly I'm going to release fast ZEC miner, not dual.
Please don't spam my PM, I don't send/sell pre-release version. As soon as it is ready, I'll make it public.
It's a lot of work to create a good miner, I think I will release first version in 2-3 days.

Nice too see you around again and thx for the updates looking forward to your zcash miner.  your 100H/s target is insane to work on but no doubt am sure a master like you will get this or exceed or come close to it.

Given how under utilised the GPU and FB/Memory Controller usage is on RX480/290x even when getting 35~45 sol/s I think 100 sol/s per card will definitely be attainable.

You're right, but you can enjoy low consumption at least for a few days Smiley

This is my signature...
Xardas2014
Hero Member
*****
Offline Offline

Activity: 635
Merit: 500


View Profile
November 02, 2016, 02:55:38 AM
 #6865

Hi xardos any chance you can give us a little more info on how to configure and run this script, I used powershell to run it and changed the Arguments = to my address etc, but when I try running it, all I get is a dos box with some red writing in it flash up, then it quits pretty quickly (couple of seconds) back to the desktop, like nothing happened.

Not very familiar with powershell scripts, so any help is appreciated.

Thank you
First just click on the powershell script(monitor_restart.ps1) and edit in your pool/username info and save it. Then type powershell in your search box in windows, right click powershell and run as admin. As it says in the readme: Start > Search ... type - "PowerShell" and Run as administrator. Copy this: Set-ExecutionPolicy RemoteSigned   then control+v to paste it into the powershell window, then select A by hitting a on your keyboard.

This whole thing is set to be run from C:\ZECminer, but you can edit the Start.cmd file to point to wherever you have the files located. Boy that sounds tough. Short version, wherever you have ZECminer folder, go inside and right click the start.cmd file and replace the line cd C:\ZECMiner with where you folder is actually located. Mine for example is cd C:\Users\Me\Downloads\Zcash\ZECMiner

Then to start your miner simply click the start.cmd file.
Meech
Hero Member
*****
Offline Offline

Activity: 924
Merit: 1000



View Profile
November 02, 2016, 03:30:57 AM
 #6866

100 sol's on a 390 holy b-jesus! Claymore, so glad to see you doing this.  You helped change the game for Ethereum mining now let's see what's capable for Zcash.  You again hopefully can set the bar.  As far as the other mining software and dev's you can't complain.  Most work well enough but this news makes their miners look like a cut/paste-youtube-lesson on c++. This coin isn't all hype it by far has years of research and development and a strong Dev team behind it.  Haven't been excited like this since late 2013.  Best wishes Claymore and thanks for the community support.
gollygosh
Full Member
***
Offline Offline

Activity: 160
Merit: 100



View Profile
November 02, 2016, 03:47:32 AM
Last edit: November 02, 2016, 03:57:50 AM by gollygosh
 #6867

Thanks xardas - got it going with your help Smiley

molitar
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
November 02, 2016, 05:13:21 AM
 #6868

Firstly I'm going to release fast ZEC miner, not dual.
Please don't spam my PM, I don't send/sell pre-release version. As soon as it is ready, I'll make it public.
It's a lot of work to create a good miner, I think I will release first version in 2-3 days.

Any guesstimate on what we hopefully see from an RX 480?
sorry2xs
Legendary
*
Offline Offline

Activity: 924
Merit: 1000


Dark Passenger Bitcoin miner 2013,Bitcoin node


View Profile
November 02, 2016, 06:11:21 AM
 #6869

my two rx 480 are reporting 24 MH/s each Cool

Please tip the Node 1MPWKB23NsZsXHANnFwVAWT86mL24fqAjF; KO4UX
THAT NO GOOD DO GOODER BAT!!!
Biterion
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
November 02, 2016, 06:57:40 AM
Last edit: November 02, 2016, 07:08:25 AM by Biterion
 #6870

Today I tried existing miners, I don't like their stability and speed.
Ok, I will release first version of my ZCash miner very soon. AMD only.

Great news!! Equihash + AMD currently equals bug city. And the primary coin is worth more than 1 btc, close to 2.

Agreed, to keep the miners running I had to use a script loop to relaunch them every 10 minutes Cheesy
At least the restart is pretty fast.

care to share your script  please Smiley
https://drive.google.com/file/d/0B3wMsc4FJjyYjdjLVB4YnNIR2M/view


very nice & helpfull script to make my miner more have stabillity
but, sometimes i have dialog box says "genoil.exe has stopped working"..
if i closed that box, than miner run again..

https://s12.postimg.org/90v0cd6p9/GENOIL_STOP.png

and maybe can you make auto loading for this script:
example:
cd C:\WINDOWS\system32\WindowsPowerShell\v1.0
call powershell.exe
type Set-ExecutionPolicy RemoteSigned
type Y
close

thanks and very apreciated for you  Wink
Xardas2014
Hero Member
*****
Offline Offline

Activity: 635
Merit: 500


View Profile
November 02, 2016, 07:19:41 AM
 #6871

Today I tried existing miners, I don't like their stability and speed.
Ok, I will release first version of my ZCash miner very soon. AMD only.

Great news!! Equihash + AMD currently equals bug city. And the primary coin is worth more than 1 btc, close to 2.

Agreed, to keep the miners running I had to use a script loop to relaunch them every 10 minutes Cheesy
At least the restart is pretty fast.

care to share your script  please Smiley
https://drive.google.com/file/d/0B3wMsc4FJjyYjdjLVB4YnNIR2M/view


very nice & helpfull script to make my miner more have stabillity
but, sometimes i have dialog box says "genoil.exe has stopped working"..
if i closed that box, than miner run again..



and maybe can you make auto loading for this script:
example:
cd C:\WINDOWS\system32\WindowsPowerShell\v1.0
call powershell.exe
type Set-ExecutionPolicy RemoteSigned
type Y
close

thanks and very apreciated for you  Wink

Go to Start>search(or use windows key+r), type in gpedit.msc to open the group policy editor. Then click Admin templates>Windows Components>Windows error reporting. In the right hand side double click "Prevent display of the user...." to open it, then enable
giagge
Legendary
*
Offline Offline

Activity: 1134
Merit: 1001


View Profile
November 02, 2016, 07:38:59 AM
 #6872

Hi! Smiley

For mining zcash and lbry togheter , work on v7.3 in windows x64 ?

I want mining on suprnova , lbry and zcash .

How should I create the .bat ?

I have for now 2x nvidia gtx 1070 on windows 10 x64 .

Thanks Smiley Smiley .
tylerdurden366d6
Newbie
*
Offline Offline

Activity: 17
Merit: 0


View Profile
November 02, 2016, 07:42:46 AM
 #6873

Big ups claymore !

Dev fee is a good idea

between these two what would you recommend?

Sapphire NITRO Radeon R9 FURY Graphics Card - 4 GB HBM - 4096-bit - 1050 MHz

or

Sapphire Radeon R9 390 NITRO Tri-X Graphics Card - 8 GB

or

Sapphire NITRO+ RX480 8GB AMD Graphics Card 1306MHz
Biterion
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
November 02, 2016, 07:57:28 AM
 #6874

Today I tried existing miners, I don't like their stability and speed.
Ok, I will release first version of my ZCash miner very soon. AMD only.

Great news!! Equihash + AMD currently equals bug city. And the primary coin is worth more than 1 btc, close to 2.

Agreed, to keep the miners running I had to use a script loop to relaunch them every 10 minutes Cheesy
At least the restart is pretty fast.

care to share your script  please Smiley
https://drive.google.com/file/d/0B3wMsc4FJjyYjdjLVB4YnNIR2M/view




very nice & helpfull script to make my miner more have stabillity
but, sometimes i have dialog box says "genoil.exe has stopped working"..
if i closed that box, than miner run again..

https://s12.postimg.org/90v0cd6p9/GENOIL_STOP.png

and maybe can you make auto loading for this script:
example:
cd C:\WINDOWS\system32\WindowsPowerShell\v1.0
call powershell.exe
type Set-ExecutionPolicy RemoteSigned
type Y
close

thanks and very apreciated for you  Wink

Go to Start>search(or use windows key+r), type in gpedit.msc to open the group policy editor. Then click Admin templates>Windows Components>Windows error reporting. In the right hand side double click "Prevent display of the user...." to open it, then enable

ok, i have do your suggestion.

now i saw error at my other rig..
here the picture:
https://s21.postimg.org/one013qtz/error_PWS2.jpg
https://s17.postimg.org/w0u4ghf9r/error_PWS.jpg

how to fix it, please ?
thank you
CoRpO
Full Member
***
Offline Offline

Activity: 185
Merit: 100


View Profile
November 02, 2016, 08:02:30 AM
 #6875

ok, i have do your suggestion.

now i saw error at my other rig..
here the picture:

how to fix it, please ?
thank you
Do this thread look like a Genoil's Zcash miner support thread ??!
jh4ns
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
November 02, 2016, 08:18:36 AM
 #6876

Today I tried existing miners, I don't like their stability and speed.
Ok, I will release first version of my ZCash miner very soon. AMD only.

Great news!! Equihash + AMD currently equals bug city. And the primary coin is worth more than 1 btc, close to 2.

Agreed, to keep the miners running I had to use a script loop to relaunch them every 10 minutes Cheesy
At least the restart is pretty fast.

care to share your script  please Smiley
https://drive.google.com/file/d/0B3wMsc4FJjyYjdjLVB4YnNIR2M/view


very nice & helpfull script to make my miner more have stabillity
but, sometimes i have dialog box says "genoil.exe has stopped working"..
if i closed that box, than miner run again..

https://s12.postimg.org/90v0cd6p9/GENOIL_STOP.png

and maybe can you make auto loading for this script:
example:
cd C:\WINDOWS\system32\WindowsPowerShell\v1.0
call powershell.exe
type Set-ExecutionPolicy RemoteSigned
type Y
close

thanks and very apreciated for you  Wink

Go to Start>search(or use windows key+r), type in gpedit.msc to open the group policy editor. Then click Admin templates>Windows Components>Windows error reporting. In the right hand side double click "Prevent display of the user...." to open it, then enable

@Xardas2014 By the way do we need to restart the miner every 10 to 15 min to lower the difficulty and make finding share faster?
Hotmetal
Sr. Member
****
Offline Offline

Activity: 378
Merit: 250


View Profile
November 02, 2016, 08:18:44 AM
 #6877

Firstly I'm going to release fast ZEC miner, not dual.
Please don't spam my PM, I don't send/sell pre-release version. As soon as it is ready, I'll make it public.
It's a lot of work to create a good miner, I think I will release first version in 2-3 days.

Any guesstimate on what we hopefully see from an RX 480?

ZEC I'm doing 42 sols/s per RX480 so my 5 RX480's are doing ~210 sols/s
citronick
Legendary
*
Offline Offline

Activity: 1834
Merit: 1080


---- winter*juvia -----


View Profile
November 02, 2016, 08:21:31 AM
 #6878

Firstly I'm going to release fast ZEC miner, not dual.
Please don't spam my PM, I don't send/sell pre-release version. As soon as it is ready, I'll make it public.
It's a lot of work to create a good miner, I think I will release first version in 2-3 days.

Any guesstimate on what we hopefully see from an RX 480?

ZEC I'm doing 42 sols/s per RX480 so my 5 RX480's are doing ~210 sols/s

Hotmetal - what miner are you using and what settings? Thanks

If I provided you good and useful info or just a smile to your day, consider sending me merit points to further validate this Bitcointalk account ~ useful for future account recovery...
Hotmetal
Sr. Member
****
Offline Offline

Activity: 378
Merit: 250


View Profile
November 02, 2016, 08:26:06 AM
 #6879

Hotmetal - what miner are you using and what settings? Thanks

Genoil and using -k zec zec zec
(that will use close to 6 GB of ram on your GPU)
Walrusbonzo
Hero Member
*****
Offline Offline

Activity: 682
Merit: 500


View Profile
November 02, 2016, 08:30:55 AM
 #6880

Hotmetal - what miner are you using and what settings? Thanks

Genoil and using -k zec zec zec
(that will use close to 6 GB of ram on your GPU)

Having an i5 or faster and 8GB+ of RAM also seems to help.

I can get over 40sol/s on my RX480 in my i7 with 16gb machine. But in my dual core Pentium G3220 with 4GB RAM I only get about 30sol/s per card.

I've also noticed a performance boost by having the card in a 16x PCIe slot instead of 1x PCIe.  I would imagine PCIe generation differences also making a difference.
Pages: « 1 ... 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 [344] 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 ... 1412 »
  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!