Bitcoin Forum
June 23, 2024, 11:53:40 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 ... 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 [221] 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 ... 294 »
  Print  
Author Topic: EWBF's CUDA Zcash miner  (Read 2164087 times)
S_Natural
Member
**
Offline Offline

Activity: 154
Merit: 11


View Profile
August 29, 2017, 02:16:21 PM
 #4401

i have a mixed AMD(2) and NVIDIA (7)  rig, it seems that no miner will work with both AMD and NVDIA ?

do i need to run one miner for NVDIA and one for AMD ?

You need run 2 bat file. 1 for Claymore and 1 for EWBF's. Work like a charm Smiley
PS: remember let AMD card is a primary card. If not you will have temp error.

SergGT001
Newbie
*
Offline Offline

Activity: 29
Merit: 0


View Profile
August 29, 2017, 02:39:11 PM
Last edit: August 29, 2017, 03:04:09 PM by SergGT001
 #4402

Try:
Code:
sudo chmod +x  /etc/rc.local
then reboot.

I checked it's executable.

http://i95.fastpic.ru/big/2017/0829/a7/7ac5ff01c2b231b8c63cb1c51833b3a7.jpg

The problem was in the hostname. I did blind sleep 20 in rc.local before the command to run the miner and it all worked.
joshuajones02
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
August 29, 2017, 03:39:18 PM
 #4403

If you're wanting to run them at 70% TDP those look like good Sols, how come your temperature is so high at that power? No good ventilation or is it really hot where they are stored

MSI 1080ti gaming X
here are my stats




What do you think guys
Should I tweak it more?

| World Fintech Startups | Microsoft Azure Partner | $1,5 M Raised During pre-ICO |
     BANKEX - Proof-of-Asset Protocol     
| WHITE PAPER | BLOGSLACKTELEGRAMBITCOINTALKGITHUBTWITTERYOUTUBEFACEBOOK |☰
S_Natural
Member
**
Offline Offline

Activity: 154
Merit: 11


View Profile
August 29, 2017, 03:52:04 PM
 #4404

Guys please, could you tell me in details how to set the temperature limit in EWBF miner? 
Can't find it anywhere  Huh And would like to lower it to let's say 65C

The easy way to do it is using MSI Afterburn. You can set your limit temp you want. If you set temp limit is 65, your GPUs will throttle when they hit 65C.

johny78
Newbie
*
Offline Offline

Activity: 37
Merit: 0


View Profile
August 29, 2017, 04:03:51 PM
 #4405

If you're wanting to run them at 70% TDP those look like good Sols, how come your temperature is so high at that power? No good ventilation or is it really hot where they are stored

MSI 1080ti gaming X
here are my stats

https://image.prntscr.com/image/DHA8_uMXS5S0IIh1OKpUKg.png
https://image.prntscr.com/image/Vle8o7b7SJK6OVpTXgl8Og.png

What do you think guys
Should I tweak it more?

ambient temp is around 20-22C

my msi gaming x 6x480rx undervolted/underclocked eth rig runs much cooler ~60C, and its in the same place, auto fans also (they even stop spinning when <60C)
1080ti is little overclocked and power limited to 70%, fans are auto in afterburner running at ~30% maybe thats why ?
scryptr
Legendary
*
Offline Offline

Activity: 1796
Merit: 1028



View Profile WWW
August 29, 2017, 04:35:52 PM
Last edit: August 29, 2017, 09:17:55 PM by scryptr
 #4406

Guys please, could you tell me in details how to set the temperature limit in EWBF miner?  
Can't find it anywhere  Huh And would like to lower it to let's say 65C

The easy way to do it is using MSI Afterburn. You can set your limit temp you want. If you set temp limit is 65, your GPUs will throttle when they hit 65C.

SET TEMPERATURE LIMIT WITH A CONFIGURATION FILE--

Launch your miner with "./miner -c miner.cfg" in Linux or "miner.exe -c miner.cfg" in Windows.  There should be a sample "miner.cfg" in the same directory where you extracted the EWBF executable, in Linux, or Windows.

Below is an example for mining on NiceHash.  Substitute other pools as you please.

<=====Example Configuration=====>

# Common parameters
# All the parameters here are similar to the command line arguments

[common]
cuda_devices 0  <--- I only have 1 GPU
intensity    64    <---this is the standard, and the highest, intensity setting
templimit    87  <--- here is where the temperature limit is set
pec          1       <--- "1" means "true", or "on".  This gives the "Power Efficiency Chart" in the console
boff         0
eexit        0        <--- If you have an unstable rig, set this to "3" for auto-restart.  Read about it.
tempunits    c     <--- Centigrade, or Fahrenheit
log          1         <--- true or false, keep a log
logfile      miner.log <--- name of log file
api          127.0.0.1:42000 <--- url for web access

# The miner start work from this server
# When the server is fail, the miner will try to reconnect 3 times
# After three unsuccessful attempts, the miner will switch to the next server
# You can add up to 8 servers

# main server
[server]
server equihash.usa.nicehash.com
port   3357
user   <bitcoin address>.worker1
pass   x

# additional server 1
[server]
server equihash.eu.nicehash.com
port   3357
user   <bitcoin address>.worker1

<=====Example Configuration=====>

Copy the body of the "miner.cfg" file and edit it to your choice of pools and addresses.  If you set different temp limits in "miner.cfg" and in AfterBurner, or PrecisionX, or  whatever commercial control program you may like, you may have problems.  I use just "miner.cfg", it works fine.  If the temperature is reached, the miner restarts.  If you set your commercial control program to a lower temperature than configured as above, it will throttle your hash rate to keep the temperature at limit.  This may be what you want, it is up to you.

Don't include the cut lines "<===stuff===>".       --scryptr

TIPS:  BTC - 1Fs4uZ6a9ABYBTaHGUfqcwCQmeBRxkKRQT    DASH - XrK81tW31SLsVvZ2WX9VhTjpT6GXJPLdbQ
          SCRYPTR'S NOTEBOOK: https://bitcointalk.org/index.php?topic=5035515.msg46035530#msg46035530
          GITHUB: "github.com/scryptr"  MERIT is appreciated, also.  Thanks!
Lilu_Dallas
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
August 30, 2017, 04:44:11 AM
 #4407

when I try downloading it windows defender blocks and deletes it, classifying it as "Trojan: Win32/Skeeyah.A! Bit"
seems to be a much more specific a Trojan alert than minergate threw up, is this file safe?
joshuajones02
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
August 30, 2017, 05:14:31 AM
 #4408

If you're wanting to run them at 70% TDP those look like good Sols, how come your temperature is so high at that power? No good ventilation or is it really hot where they are stored

MSI 1080ti gaming X
here are my stats




What do you think guys
Should I tweak it more?

ambient temp is around 20-22C

my msi gaming x 6x480rx undervolted/underclocked eth rig runs much cooler ~60C, and its in the same place, auto fans also (they even stop spinning when <60C)
1080ti is little overclocked and power limited to 70%, fans are auto in afterburner running at ~30% maybe thats why ?

Wow I'm sorry, totally blinded myself of the fan speeds lol. Those stats look great compared to my rig of 1080 ti's

| World Fintech Startups | Microsoft Azure Partner | $1,5 M Raised During pre-ICO |
     BANKEX - Proof-of-Asset Protocol     
| WHITE PAPER | BLOGSLACKTELEGRAMBITCOINTALKGITHUBTWITTERYOUTUBEFACEBOOK |☰
JohnDoe3490
Full Member
***
Offline Offline

Activity: 378
Merit: 102


View Profile
August 30, 2017, 06:00:35 AM
 #4409

For Zcash, it is more important to have a higher clock core than memory speed?
gs777
Member
**
Offline Offline

Activity: 118
Merit: 10


View Profile
August 30, 2017, 07:33:27 AM
Last edit: August 30, 2017, 08:59:44 AM by gs777
 #4410

Hi all,

I'm getting lots of rejected share on a particular gpu out of 7 gpu.
Is that normal?

edit: im using gtx1070

Do i have to do some settings with the intensity of the gpu? What is the usual setting to be set for intensity?

Is it a power sharing issue? the GPU doesn't have enough power?

Please help.

thankyou!

I used to have similar problem but after I reduced mc for about 10% it was fixed
my GTX1070 - pl130 cc150 mc350 temp limit 70C
gs777
Member
**
Offline Offline

Activity: 118
Merit: 10


View Profile
August 30, 2017, 07:35:07 AM
 #4411

Version 0.3.4b.

EWBF's Zcash cuda miner.
Expected speeds 500 sols/s gtx 1080, 444 sols/s gtx1070. 300 gtx1060 6G. Stock settings.
Writen for pascal gpus but works on cards with at least 1Gb memory, and Compute Capability 2 and higher.
Miner contain dev fee 2%.
Sorry for my bad english  Sad

Version 0.3.4b
A slightly improved speed of about 2%
Added option --intensity, sets maximum intensity.
Added support for configuration files.
Added option --config, sets the name of the config file.
Added support for failover servers, through config files.
Added new values to the api method getstat.
Added http api you can use http://127.0.0.1:42000/getstat address to get statistics.
Added simple web page with statistics, simply open the api address in the web browser. (Experemental)
Fixed couple of bugs.

Version 0.3.3b
Added option --pec power efficiency calculator.
Added option --fee developer fee control.
Use miner --help command for more information.

FAQ:
Q: How to select a GPU that will be used by a miner
A: Use option --cuda_devices 0 1 2 digits is id of the devices which will be used.

Q: How intensity works?
A: The miner uses adaptive intensity and tries to use the maximum intensity value, with the help of the --intensity option you can set a limit on the maximum intensity, this will slightly reduce gpu usage and performance. Allowed values 1 - 64. You can set different values for each cards --intensity 64 64 64 64

Q: How to use config?
A: You can run the miner like all previous versions with command line arguments, in this case the config file will be ignored. If you sets the --config argument, the specified config file will be used, all other command line arguments will be ignored. If you run a miner without command line arguments, the miner will try to use the default config file miner.cfg.

Q: How to use failover servers
A: This feature works only with config files, see config examples, supplied with the miner.

Windows x64
https://mega.nz/#F!usQh2bTa!3qp_PaiO-dw3F0mpvLXynA
https://drive.google.com/open?id=0B9EPp8NdigFianNlcUh0YWFhOVE

Linux x64
https://mega.nz/#F!aop0BLaR!qQUGG6C2ZhE2zAC0XAlMSw
https://drive.google.com/open?id=0B9EPp8NdigFibDl2MmdXaTFjWDQ

Thanks man
your miner is the best for ZEC!
andreiv26
Newbie
*
Offline Offline

Activity: 59
Merit: 0


View Profile
August 30, 2017, 07:40:43 AM
 #4412

What's the fastest miner for a 1080ti? for xmr
S_Natural
Member
**
Offline Offline

Activity: 154
Merit: 11


View Profile
August 30, 2017, 07:41:21 AM
 #4413

when I try downloading it windows defender blocks and deletes it, classifying it as "Trojan: Win32/Skeeyah.A! Bit"
seems to be a much more specific a Trojan alert than minergate threw up, is this file safe?

It's safe. Most of miner are detected as a virus/ trojan.
And we use EWBF's for long time, it's fine man Smiley

CryptoWatcher420
Sr. Member
****
Offline Offline

Activity: 462
Merit: 258

Small Time Miner, Rig Builder, Crypto Trader


View Profile
August 30, 2017, 07:41:48 AM
 #4414

Version 0.3.4b.

EWBF's Zcash cuda miner.
Expected speeds 500 sols/s gtx 1080, 444 sols/s gtx1070. 300 gtx1060 6G. Stock settings.
Writen for pascal gpus but works on cards with at least 1Gb memory, and Compute Capability 2 and higher.
Miner contain dev fee 2%.
Sorry for my bad english  Sad

Version 0.3.4b
A slightly improved speed of about 2%
Added option --intensity, sets maximum intensity.
Added support for configuration files.
Added option --config, sets the name of the config file.
Added support for failover servers, through config files.
Added new values to the api method getstat.
Added http api you can use http://127.0.0.1:42000/getstat address to get statistics.
Added simple web page with statistics, simply open the api address in the web browser. (Experemental)
Fixed couple of bugs.

Version 0.3.3b
Added option --pec power efficiency calculator.
Added option --fee developer fee control.
Use miner --help command for more information.

FAQ:
Q: How to select a GPU that will be used by a miner
A: Use option --cuda_devices 0 1 2 digits is id of the devices which will be used.

Q: How intensity works?
A: The miner uses adaptive intensity and tries to use the maximum intensity value, with the help of the --intensity option you can set a limit on the maximum intensity, this will slightly reduce gpu usage and performance. Allowed values 1 - 64. You can set different values for each cards --intensity 64 64 64 64

Q: How to use config?
A: You can run the miner like all previous versions with command line arguments, in this case the config file will be ignored. If you sets the --config argument, the specified config file will be used, all other command line arguments will be ignored. If you run a miner without command line arguments, the miner will try to use the default config file miner.cfg.

Q: How to use failover servers
A: This feature works only with config files, see config examples, supplied with the miner.

Windows x64
https://mega.nz/#F!usQh2bTa!3qp_PaiO-dw3F0mpvLXynA
https://drive.google.com/open?id=0B9EPp8NdigFianNlcUh0YWFhOVE

Linux x64
https://mega.nz/#F!aop0BLaR!qQUGG6C2ZhE2zAC0XAlMSw
https://drive.google.com/open?id=0B9EPp8NdigFibDl2MmdXaTFjWDQ

Thanks man
your miner is the best for ZEC!

it might be the fastest for NVidia and zcash, but it isn't the best. if it were the best it would be more complete by a dev whom actually gives a shit about his miner, ewbf has made this as a cash grab otherwise he would be actively working on it and it would have gotten updates by now, not to mention the slew of complaints to ewbf that have gone un-responded.

6pin to EPS 12v 4+4pin w/pigtail & 2.5mm barrel plug for Pico Psu for SERVER PSU ONLY GPU MINING RIGS! | Donations: BTC-  | Join Me on Discord! https://discord.gg/VDwWFcK
gs777
Member
**
Offline Offline

Activity: 118
Merit: 10


View Profile
August 30, 2017, 07:57:30 AM
Last edit: August 30, 2017, 07:59:57 PM by gs777
 #4415

Version 0.3.4b.

EWBF's Zcash cuda miner.
Expected speeds 500 sols/s gtx 1080, 444 sols/s gtx1070. 300 gtx1060 6G. Stock settings.
Writen for pascal gpus but works on cards with at least 1Gb memory, and Compute Capability 2 and higher.
Miner contain dev fee 2%.
Sorry for my bad english  Sad

Version 0.3.4b
A slightly improved speed of about 2%
Added option --intensity, sets maximum intensity.
Added support for configuration files.
Added option --config, sets the name of the config file.
Added support for failover servers, through config files.
Added new values to the api method getstat.
Added http api you can use http://127.0.0.1:42000/getstat address to get statistics.
Added simple web page with statistics, simply open the api address in the web browser. (Experemental)
Fixed couple of bugs.

Version 0.3.3b
Added option --pec power efficiency calculator.
Added option --fee developer fee control.
Use miner --help command for more information.

FAQ:
Q: How to select a GPU that will be used by a miner
A: Use option --cuda_devices 0 1 2 digits is id of the devices which will be used.

Q: How intensity works?
A: The miner uses adaptive intensity and tries to use the maximum intensity value, with the help of the --intensity option you can set a limit on the maximum intensity, this will slightly reduce gpu usage and performance. Allowed values 1 - 64. You can set different values for each cards --intensity 64 64 64 64

Q: How to use config?
A: You can run the miner like all previous versions with command line arguments, in this case the config file will be ignored. If you sets the --config argument, the specified config file will be used, all other command line arguments will be ignored. If you run a miner without command line arguments, the miner will try to use the default config file miner.cfg.

Q: How to use failover servers
A: This feature works only with config files, see config examples, supplied with the miner.

Windows x64
https://mega.nz/#F!usQh2bTa!3qp_PaiO-dw3F0mpvLXynA
https://drive.google.com/open?id=0B9EPp8NdigFianNlcUh0YWFhOVE

Linux x64
https://mega.nz/#F!aop0BLaR!qQUGG6C2ZhE2zAC0XAlMSw
https://drive.google.com/open?id=0B9EPp8NdigFibDl2MmdXaTFjWDQ

Thanks man
your miner is the best for ZEC!

it might be the fastest for NVidia and zcash, but it isn't the best. if it were the best it would be more complete by a dev whom actually gives a shit about his miner, ewbf has made this as a cash grab otherwise he would be actively working on it and it would have gotten updates by now, not to mention the slew of complaints to ewbf that have gone un-responded.

Definitely would be nice if EWBF could be working on his miner
but we can't change situation

Can't say anything about AMD cards
I'm using gtx1070 and 1080 for ZEC mining
and to my account it is still the best solution...
mythrill
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 30, 2017, 10:20:10 AM
Last edit: September 01, 2017, 11:59:52 AM by mythrill
 #4416

POST REMOVED
shibob
Full Member
***
Offline Offline

Activity: 672
Merit: 154


Blockchain Evangelist.


View Profile WWW
August 30, 2017, 12:37:30 PM
 #4417

yeh - the optimizations are the best, but I experienced some interference - as no one has replied I can't confirm if it's something local, the pool, the devs 2% servers, or something else - there was a period where the pool was receiving no hashes, but the miner kept receiving work and hashing away, when checking the network connections only 1 ip address was connected... not the pool ip address.

when I reported it, I thought I should load up and check again, and when it did load there were 2 Ip addresses, but I didn't want to run it for long as it did go wrong for me and I had not changed my local IP yet - This morning I remembered about the -nofee option, so I will do some more tests on the next session...

EWBF miner is good, but I wonder devfee is really 2%? I do want to donate him 2% for good mining tool, but I see too many devfee acepted share appear, almost every round.
sublimus
Full Member
***
Offline Offline

Activity: 240
Merit: 100


View Profile
August 30, 2017, 01:44:13 PM
 #4418

when I try downloading it windows defender blocks and deletes it, classifying it as "Trojan: Win32/Skeeyah.A! Bit"
seems to be a much more specific a Trojan alert than minergate threw up, is this file safe?

It's safe. Most of miner are detected as a virus/ trojan.
And we use EWBF's for long time, it's fine man Smiley

go to Windows Defender  settings and add an exception.

juville
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
August 30, 2017, 02:14:00 PM
 #4419

Hi all,

I'm getting lots of rejected share on a particular gpu out of 7 gpu.
Is that normal?

edit: im using gtx1070

Do i have to do some settings with the intensity of the gpu? What is the usual setting to be set for intensity?

Is it a power sharing issue? the GPU doesn't have enough power?

Please help.

thankyou!

I used to have similar problem but after I reduced mc for about 10% it was fixed
my GTX1070 - pl130 cc150 mc350 temp limit 70C

Hi! thanks for your information!

Can i know your sols per gpu?

right now my settings are

pl - 68 cc175 mc 750 temp limit 80

Is my mc too high?
juville
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
August 30, 2017, 03:04:19 PM
 #4420

Hi all,

I'm getting lots of rejected share on a particular gpu out of 7 gpu.
Is that normal?

edit: im using gtx1070

Do i have to do some settings with the intensity of the gpu? What is the usual setting to be set for intensity?

Is it a power sharing issue? the GPU doesn't have enough power?

Please help.

thankyou!

I used to have similar problem but after I reduced mc for about 10% it was fixed
my GTX1070 - pl130 cc150 mc350 temp limit 70C

Hi! thanks for your information!

Can i know your sols per gpu?

right now my settings are

pl - 68 cc175 mc 750 temp limit 80

Is my mc too high?


Hi gs777,

Thanks for your help!

i think i manage to minimized the rejected shares by increasing my cc!

Thanks again!
Pages: « 1 ... 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 [221] 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 ... 294 »
  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!