Bitcoin Forum
May 11, 2024, 02:01:18 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [All]
  Print  
Author Topic: WildRig: new miner for Wild Keccak algo  (Read 36158 times)
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 03, 2018, 08:04:24 AM
Last edit: May 14, 2020, 06:09:06 PM by andrucrypt
Merited by suchmoon (7), CjMapope (3)
 #1

WildRig 0.10.5 beta

multi-algo version is here

Download for Windows(all versions can be found here)
dependencies: Visual C++ Redistributable 2015 x64
note: don't forget to use 398+ drivers for NVIDIA

Download for Linux(no api version)
dependencies: libcurl, libuv1, libmicrohttpd10
note: compiled under Ubuntu 16.04 LTS, so if you get problem with libmicrohttpd10, use "no api" version
note: don't forget to use 398+ drivers for NVIDIA

Download for HiveOS(custom miner integration)
dependencies: libcurl, libuv1, libmicrohttpd10
note: use wildrig as a name for miner while installation

Download HiveOS custom package from HiveOS dev's

mirror on github

Discord: https://discord.gg/RkywAu5

advantages over minerd and ccminer:
- faster for 4%-10% on AMD in comparison with minerd using boosted kernel
- more solved shares than ccminer can do
- fast scratchpad update(less hashrate drop when new addendum blocks received and pushed to vram)
- auto re-downloading scratchpad if failed(known problem with ccminer), also patching the local file every 10Kb of new data(each ~1hour)
- asynchronous share send to avoid wasting GPU resources when internet connection is slow
- no limit for amount of GPU's as in original minerd
- watchdog(see description for --watchdog parameter)
- new interface
- API to check miner stats via web

known issues:
- watchdog can hang miner while trying to terminate the process(depends on how badly drivers are hanged, happens only for AMD as I know), so use it carefully. Later I will extend some parameters to call custom bat-file with rebooting the system or restart the driver if needed
- getting n/a for one or few cards at start(no "scratchpad updated" messages for them). Can happen on rigs with a lot of GPU's(e.g. 12). Use parameter --safe-scratchpad-update in this case
- statistics doesn't work in HiveOS GUI(working on that)

kernels:
AMD cards can use different kernels via --opencl-kernel parameter. Also you can set different kernel for each card, just use comma separation. Some cards can hang on boosted kernel, so probably better to set default one instead of lowering clocks.
- 0 is default one
- 1 can increase hashrate a bit on some cards like RX550
- 2 should be used with old hardware like Radeon HD 7xxx
- 3 boosted kernel
- 4 boosted kernel with the same changes as in kernel 1

note for AMD Vega's
for mining Boolberry better to set --opencl-launch to 128x32 or 256x32 and get significant hashrate increase

note for RX 570/580
for mining Boolberry better to set --opencl-launch to 240x32 and get additional ~20kH/s

Testing and reporting issues are welcome! Smiley

coins:
- Boolberry
- Purk

dev-fee:
currently 2% only, fully compensates on NVIDIA's because of improvements and for AMD's because of better hashrate.

TODO:
- make avg. effort calculation based on some amount of shares, instead of all shares
- implement some experiment parameter --cheat-effort, when miner will try to get new job when effort is not acceptable
- implement CPU mining(?)
- implement executing custom command when watchdog catch the gpu hang
- ADL/NVML for monitoring videocards health
- open source some day once all things will be done good Smiley

Example of command-line start for AMD videocards(with loop if miner crash):
Code: (bat)
@echo off

:loop
wildrig.exe --opencl-launch=256x0 --send-stale --url=bbr.luckypool.io:5577 --user=WALLET --pass=IFNEEDED --scratchpad-file=scratchpad.bin --scratchpad-url=http://eu-bbr.luckypool.io/scratchpad.bin
if ERRORLEVEL 1000 goto custom
timeout /t 5
goto loop

:custom
echo Custom command here
timeout /t 5
goto loop

Same example for NVIDIA using CUDA:
Code: (bat)
@echo off

:loop
wildrig.exe --cuda-launch=1024x256 --send-stale --url=bbr.luckypool.io:5577 --user=WALLET --pass=IFNEEDED --scratchpad-file=scratchpad.bin --scratchpad-url=http://eu-bbr.luckypool.io/scratchpad.bin
if ERRORLEVEL 1000 goto custom
timeout /t 5
goto loop

:custom
echo Custom command here
timeout /t 5
goto loop

Linux bash-scripts included into archive.

what is avg. effort:
every videocard do some amount of hashes per iteration, and there should be done around diff(set by pool) hashes before miner will find a share. This will be 100% effort. If videocards do less hashes and find a share - effort will be below 100%, more - it will be above 100%. But because of random nature, effort is always differ. A lot of things have influence on effort, but if you get high values(after at least ~30 minutes statistic from start or dev-fee mining finished) take a look on:
- how good variable diff on pool. Giving you high difficulty jobs, which are not suitable for your hashpower can lead to higher effort
- high intensity, more than needed for best hashrate, can lead to higher effort in cases when miner got a new job, but videocard is still hashing and don't know about it. That last hashes will be wasted, also you can get stale share

optimal intensity:
try to set intesity as low as possible, but not lower than point where hashrate goes down a lot

optimal strategy:
if you use static diff, probably --strategy set to 1 will be better in this case. At least it's true for my rigs with static diff set to hashrate_of_rig * 10(e.g. 4820kH/s rig uses diff 48000000).

Changelog:
Code:
0.10.5:
- fixed submit method, now nonce again 64 bit value

0.10.4:
- added new optimized kernels which can improve hashrate for 4-10% on AMD cards
- fixed AMD videocard numeration(was broken in 0.10.3)
- added possibility to set different kernel for each videocard(use parameter --opencl-kernels)
- added parameter --safe-scratchpad-update for rigs with huge amount of gpu's or just not stable motherboards
- [HiveOS]reverted CUDA to 9.0 for compatibility with older drivers

0.10.3
- added workaround for bad risers(to disable it use parameter --good-riser), this should fix problem with n/a hashrate for some gpu's
- CUDA 9.2 used now for Windows build to, so probably newer drivers will be needed
- fixed incorrect choosing of devices when not all of them are specified using --opencl-devices/--cuda-devices
- some minor changes to kernels, should use less registers now
- correct deinitialization of CUDA on exit

0.10.2
- one more fix to crazy effort values after donation mining
- fixed low difficulty shares for old hardware with default kernel
- added new slightly modified kernel(use parameter --opencl-kernel 1), it can give 1%-2% on some cards(like RX550) and up to 30% on old Radeons(7870 now shows ~580kH/s instead of ~440)

0.10.1
- no more final CPU-stage for share calculation, now solved shares should be send faster
- now --send-stale works even with changed scratchpad and pools can accept such shares
- less locks on scratchpad patch/update to make it work faster

0.10.0
- improved precision for share validation, now more shares should be solved again
- now miner can be started without specifying all devices(and --opencl-platform for AMD), but don't forget to specify opencl-launch or cuda-launch
- disabled OpenCL mode for NVIDIA

0.9.25
- reworked share validation, now calculation are the same as on pool side
- after donation mining miner will reconnect to pool now
- implemented --send-stale parameter to send stale shares when new job arrived without scratchpad update
- removed restart miner when watchdog enabled and miner found not valid share on CPU(in 0.9.24 it was a mistake...)
- extended info for invalid share

0.9.24
- fixed rare case when one of 2+ shares solved at once(that green "yay!" messages) can be ignored
- now miner shows difficulty sent from pool, instead of calculation based on target value
- reverted back validation of share(hash will be checked for "<= target", instead of "< target")

0.9.23
- fixed crazy avg. effort after donation mining
- fixed "Duplicate share" sending in rare cases(was possible on fast rigs, when new job is not arriving too long)
- fixed crash when --opencl-devices was set not like 0,1,2,3 and so on

0.9.22
- fixed job timeout problem, now miner make a correct request for new job

0.9.21
- fixed one more ignoring of odd data from pool(found with official Purk pool)

0.9.20
- implemented CUDA calculations for NVIDIA cards
- improved scratchpad fails handling
- instead of luck miner will calculate avg. effort
- now miner will send getjob to pool before disconnect on "job-timeout" event
- now scratchpad will be re-downloaded if it 1 day old
- disabled watchdog by default

0.9.19
- improved scratchpad management, now scratchpad will be updated on disk every 10Kb of new data from pool(each ~1hour)
- fixed possible crash in rare cases
- fixed infinite rejects if miner was started with fresh new scratchpad and only 1 addendum update from pool
- added logging for http daemon to diagnose why API is not working
- now it's possible to set donate level to zero on rigs with 1-2 videocards connected(currently Windows only)
- added parameter --multiple-instance to allow start multiple instances of one miner with the same --opencl-platform

0.9.18
- fixed --no-watchdog parameter, now it should work
- set timeout for watchdog to 30 seconds now
- now if downloading speed of scratchpad is 512 bytes for more than 30 seconds, miner will restart downloading it

0.9.17
- moved scratchpad update into a better place, this should decrease amount of "Low difficulty" shares before "new job"
- added general uptime value to API

0.9.16
- code much more safe now
- fixed problem with watchdog not working(there was a bug with reading parameter no-watchdog)

0.9.15
- improved watchdog, now it works separately and won't decrease hashrate for AMD's when use low intensity values
- improved scratchpad fail handling, now miner will try to reset it to state saved on disk and login again, only then redownload it if fail again
- added experimental parameter --opencl-force1x to support old hardware like Readon HD 7xxx

0.9.14
- fixed small memory leak
- implemented watchdog, now miner will exit with code 1000 if gpu hangs in OpenCL kernel for more than 5 sec.(can be disabled with parameter --no-watchdog)

0.9.13
- reworked strategy a bit, now nvidias should support 0 and 1 too. Changed default strategy to that used in other miners, should be better with vardiff
- fixed processing error "invalid miner height, re-download scratchpad", now miner definitely will redownload it

0.9.12
- fixed "Duplicate share" error after donation mining finished, same was possible to reproduce with pause/resume commands

0.9.11
- new parameter --print-level
- more accurate luck calculation
- dynamic size for scratchpad buffer(no need in recompilation in future, less RAM used for PURK coin to mine :))

0.9.10
- now videocards sorted by BusID
- added luck calculation(need testing)
- fixed crash when logging and --print-full is used
- few more checks for scratchpad fails(also in some cases miner will reconnect if it failed and only then redownload it if this not solve the problem, need testing)

0.9.9:
- fixed JSON decode failed
- more checks for scratchpad failure

0.9.8:
- added validation scratchpad at start and redownloading it if needed
- now should work on old cards too
- added --job-timeout parameter, now miner will disconnect if there is no new job for some time and videocards found all shares(could help for "beast" rigs on Vega)
- a bit more safe code

0.9.7:
- fixed an issue when miner can't redownload scratchpad because of some accident on pool side and going into infinite loop

0.9.6:
- improved logic, now videocard will continue hash even if it waits for new job, just to avoid situation with lowering clocks. Will make something like powersave option later
- added parameter --max-rejects
1715436078
Hero Member
*
Offline Offline

Posts: 1715436078

View Profile Personal Message (Offline)

Ignore
1715436078
Reply with quote  #2

1715436078
Report to moderator
1715436078
Hero Member
*
Offline Offline

Posts: 1715436078

View Profile Personal Message (Offline)

Ignore
1715436078
Reply with quote  #2

1715436078
Report to moderator
Each block is stacked on top of the previous one. Adding another block to the top makes all lower blocks more difficult to remove: there is more "weight" above each block. A transaction in a block 6 blocks deep (6 confirmations) will be very difficult to remove.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
roma__11
Newbie
*
Offline Offline

Activity: 115
Merit: 0


View Profile
July 03, 2018, 09:17:14 AM
Last edit: July 03, 2018, 12:02:33 PM by roma__11
 #2

oпиши threads c нecкoлькими пpoцaми в oднy cтpoчкy, вcк пo paзнoмy пoнимaют...
кинь пpиглaшeниe в диcкopд.....
И oпиcaлoвo измeнeний зa вce вepcии, чтo пoчeм кoгдa (нe плoxo вce вepcии вылoжить, дляoтpaжeния динaмики)
И пpимepный xeшpeйт пo ocнoвным кapтaм, oн кaк-бы пpивлeчeт людeй тoчнo........
skygonga
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile
July 03, 2018, 09:18:38 AM
 #3

good Try 0.9.6 now

Still can't run, my different parameters "threads": null
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 03, 2018, 09:28:02 AM
 #4

oпиши threads c нecкoлькими пpoцaми в oднy cтpoчкy, вcк пo paзнoмy пoнимaют...
кинь пpиглaшeниe в диcкopд.....
И oпиcaлoвo измeнeний зa вce вepcии, чтo пoчeм кoгдa (нe плoxo вce вepcии вылoжить, дляoтpaжeния динaмики)
И пpимepный xeшpeйт пo ocнoвным кapтaм, oн кaк-бы пpивлeчeт людeй тoчнo........
Heмнoгo pacшиpил oпиcaниe и дoбaвил cpaзy пpимep для двyx видeoкapт. B диcкopдe нe знaю кyдa пpиглaшeния кидaть Smiley A динaмикy c вepcиями дa, вoзмoжнo пoзжe opгaнизyю.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 03, 2018, 09:29:41 AM
 #5

good Try 0.9.6 now

Still can't run, my different parameters "threads": null
Please attach your config.json file(or it's data inside, and write it into code tag to avoid huge post) and what happens in console when you start miner.
What about "threads": null - miner won't work on CPU, you need configure it for videocards Smiley Or it was working and autoconfiguring in previous version?
zjy
Newbie
*
Offline Offline

Activity: 66
Merit: 0


View Profile
July 03, 2018, 11:35:39 PM
 #6

good Try 0.9.6 now

Still can't run, my different parameters "threads": null
Please attach your config.json file(or it's data inside, and write it into code tag to avoid huge post) and what happens in console when you start miner.
What about "threads": null - miner won't work on CPU, you need configure it for videocards Smiley Or it was working and autoconfiguring in previous version?

can i download it at mega , can't down from google
Anthony42
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
July 04, 2018, 04:48:29 AM
 #7

any benchmarks?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 04, 2018, 05:11:08 AM
 #8

Uploaded wildrig to mega, hope it will be available now to all Smiley Also, please see known issue section. I was reported about one problem with scratchpad, hope to get time and fix it today.

ps: changed pm parameters )
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 04, 2018, 05:13:59 AM
 #9

any benchmarks?
This miner will do almost the same hashrate on miner side as old ones. Difference - more accepted shares on pool, which is more important. NVIDIA cards struggling because of this issue, sometimes it goes up to 30% loss of hashrate on pool.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 04, 2018, 06:08:35 AM
 #10

Finally was able to download it, I'm going to test this new version tomorrow, I'll keep mining with 0.9.4 on the night
And my hashrate vs minerd:

Amd RX Vega 56

Gpu clock -20%
Mem clock 945MHz
Power Limit -20%
BlockChain Driver

Minerd default intensity: 5600KH/s

WildRig default intensity/workload: 6040KH/s
WildRig 1912 intensity/ 256 workload: 6140KH/s

Interesting Smiley This is mining PURK? Anyway, was not expect this difference. Also intensity of minerd and wildrig is the same by default(minerd uses formula 2^intensity, wildrig - 1024 * intensity). What about intensity 1912 - I think it too high, videocard will be loaded a lot of time per iteration, so don't forget to use high static diff or good pool with good difficulty adjustment.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 04, 2018, 07:27:19 AM
 #11

IMPORTANT UPDATE in version 0.9.7: fixed an issue when miner can't redownload scratchpad because of some accident on pool side and going into infinite loop.
zjy
Newbie
*
Offline Offline

Activity: 66
Merit: 0


View Profile
July 04, 2018, 07:57:16 AM
Last edit: July 04, 2018, 08:07:52 AM by zjy
 #12

Finally was able to download it, I'm going to test this new version tomorrow, I'll keep mining with 0.9.4 on the night
And my hashrate vs minerd:

Amd RX Vega 56

Gpu clock -20%
Mem clock 945MHz
Power Limit -20%
BlockChain Driver

Minerd default intensity: 5600KH/s

WildRig default intensity/workload: 6040KH/s
WildRig 1912 intensity/ 256 workload: 6140KH/s

Interesting Smiley This is mining PURK? Anyway, was not expect this difference. Also intensity of minerd and wildrig is the same by default(minerd uses formula 2^intensity, wildrig - 1024 * intensity). What about intensity 1912 - I think it too high, videocard will be loaded a lot of time per iteration, so don't forget to use high static diff or good pool with good difficulty adjustment.

how about 1060 3G intensity workload ?  default is 1333K
Gpu clock + 100
Mem clock + 300
Power Limit 70W

same hash ccminer

ccminer 8000kh for 6 card rig
wildrig  8000kh too 。。。
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 04, 2018, 08:40:14 AM
 #13

ccminer 8000kh for 6 card rig
wildrig  8000kh too 。。。
now compare hashrate on pool Smiley With wildrig statistics graph should be better for average hashrate than in ccminer.
zjy
Newbie
*
Offline Offline

Activity: 66
Merit: 0


View Profile
July 04, 2018, 09:16:59 AM
 #14

ccminer 8000kh for 6 card rig
wildrig  8000kh too 。。。
now compare hashrate on pool Smiley With wildrig statistics graph should be better for average hashrate than in ccminer.

how can do loop in ubuntu? Aborted (core dumped)...
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 04, 2018, 09:45:07 AM
 #15

ccminer 8000kh for 6 card rig
wildrig  8000kh too 。。。
now compare hashrate on pool Smiley With wildrig statistics graph should be better for average hashrate than in ccminer.

how can do loop in ubuntu? Aborted (core dumped)...
See first post, I have updated instructions there. Also can you provide last lines of console output before dump?
zjy
Newbie
*
Offline Offline

Activity: 66
Merit: 0


View Profile
July 04, 2018, 09:51:39 AM
 #16

ccminer 8000kh for 6 card rig
wildrig  8000kh too 。。。
now compare hashrate on pool Smiley With wildrig statistics graph should be better for average hashrate than in ccminer.

how can do loop in ubuntu? Aborted (core dumped)...
See first post, I have updated instructions there. Also can you provide last lines of console output before dump?

[17:47:55] GPU #4: scratchpad patched 42566552
[17:47:55] GPU #4: scratchpad patched 42566552
Aborted (core dumped)
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 04, 2018, 10:15:49 AM
 #17

[17:47:55] GPU #4: scratchpad patched 42566552
[17:47:55] GPU #4: scratchpad patched 42566552
Aborted (core dumped)
Is it reproducible every time? If so, provide please a bit more logs(and use tag code to make post smaller please). Seems like memory error happen while loading new data into VRAM.
Anthony42
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
July 04, 2018, 11:22:43 AM
 #18

ubuntu 16.04

rx vega 56

my hashrate 2200kh/s... what am I doing wrong?(
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 04, 2018, 11:26:48 AM
 #19

ubuntu 16.04

rx vega 56

my hashrate 2200kh/s... what am I doing wrong?(

Probably mining BBR instead of PURK, and have not well overclocked Vega Smiley
Anthony42
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
July 04, 2018, 11:51:20 AM
 #20

https://my-files.ru/0aj9ra

still 2200 kh / s  Sad
mokrejbandita
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
July 04, 2018, 12:10:32 PM
 #21

Hello got problem with my 4x vega 56 rig, every time i log off with teamviewer, 2 of them crash and doin 0 h/s. Miner keeps mining with those other 2.
Have no problem with 4 more rigs rx 570, 480, 580. Tried to lower clocks, intensity but not working. Any idea?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 04, 2018, 12:16:01 PM
 #22



still 2200 kh / s  Sad
Man, you are mining PURK using scratchpad from BBR Smiley Change scratchpad-url parameter to this one(from your pool): http://cnpool.vicp.io/scratchpad.bin
And remove previous scratchpad.bin in your wildrig folder.
skygonga
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile
July 04, 2018, 02:13:42 PM
 #23

Finally was able to download it, I'm going to test this new version tomorrow, I'll keep mining with 0.9.4 on the night
And my hashrate vs minerd:

Amd RX Vega 56

Gpu clock -20%
Mem clock 945MHz
Power Limit -20%
BlockChain Driver

Minerd default intensity: 5600KH/s

WildRig default intensity/workload: 6040KH/s
WildRig 1912 intensity/ 256 workload: 6140KH/s

How many pieces are you RX Vega 56?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 04, 2018, 07:25:48 PM
 #24

yeah, this is mining PURK, it changes mining BBC? and about intensity and workforce, I just tried different values and up till now this was the value that gave the best performance so far. And 1912 is the value I used on CryptoNight V7 mining, so I'm used to it Tongue, the current diff I use is Starting Difficulty: 50000000 and then it goes to 80000000 stable...
Intensity here and for CyptoNight is absolutely different values Smiley Vegas should work fine with intensity 1024. Main idea of intensity - set it small as possible, before it starts drop hashrate in miner. Because higher intensity - longer videocard works and don't know about new job. About BBR, yes, there hashrate is much lower because of bigger scratchpad.

ps: working on new build here, with option for job timeout(miner will reconnect if it don't receive new job from pool for some amount of time and videocards already solved all shares).
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 04, 2018, 09:35:09 PM
 #25

Xopoшaя paбoтa! Tecтиpyю мaйнep. AMД - cкopocти пpимepнo тe жe, чтo и нa cтapoм. Hвидия - oтличнo. Cкopocти тe жe, нo HAMHOГO peджeктoв мeньшe. Taк жe ecли пoднять интeнcивнoтcь дo 1024 cкopocть pacтeт пpимepнo нa 3%, нo вcкope cкopocть пaдaeт дo 0 (NVIDIA). Пpи интeнcивнocти 256 paбoтaeт cтaбильнo.
Пpoбoвaл мeнять вopкзaйc - эффeктa нeт. 32/64/256... Aвтop, paccкaжи плиз пoдpoбнee. Из пpeдыдyщeгo пocтa я пoнял, чтo нyжнo дoбитьcя минимaльнoй интeнcивнocти, пpи кoтopoй xeшpeйт нe пaдaeт? A чтo c вopкзaйc?

Haибoлee oптимaльныe нacтpoйки для 1060: PL 50, CC -400, Mem = MAX.
1060 3гб/6gb пpи 50/-400/+850 = 1400+
Для 1070 - пoвepлимит зaвиcит oт мoeли. Кapтa мoщнee, пoэтoмy PL = 50-55. CC = -400+150 (oт мoдeли). Mem = MAX.
1070 8Гб пpи PL 52/+150/+850 = 1920.
Anthony42
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
July 05, 2018, 01:43:39 AM
 #26

what about the temperature algorithm? cold as a cryptonight?
Anthony42
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
July 05, 2018, 03:15:22 AM
 #27

my hash rate on the coin PURK rx570 - 2020kh/s, is this normal?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 05, 2018, 05:26:45 AM
 #28

Ok, thanks, and could you please explain me the "worksize" and what changes the strategy 1?
worksize is parameter I left for plating with some OpenCL kernel execution parameters, but seems yeah, it can't improve hashrate on any card, only decrease at small values %) So probably will remove it in future. About strategy - separate topic for discussion, will describe it after implementation variant 2(don't know when yet, busy with other things Smiley).

what about the temperature algorithm? cold as a cryptonight?
On Vega's you will get very high HBM memory temperature, so be careful with that.

Xopoшaя paбoтa! Tecтиpyю мaйнep. AMД - cкopocти пpимepнo тe жe, чтo и нa cтapoм. Hвидия - oтличнo. Cкopocти тe жe, нo HAMHOГO peджeктoв мeньшe. Taк жe ecли пoднять интeнcивнoтcь дo 1024 cкopocть pacтeт пpимepнo нa 3%, нo вcкope cкopocть пaдaeт дo 0 (NVIDIA). Пpи интeнcивнocти 256 paбoтaeт cтaбильнo.
Пpoбoвaл мeнять вopкзaйc - эффeктa нeт. 32/64/256... Aвтop, paccкaжи плиз пoдpoбнee. Из пpeдыдyщeгo пocтa я пoнял, чтo нyжнo дoбитьcя минимaльнoй интeнcивнocти, пpи кoтopoй xeшpeйт нe пaдaeт? A чтo c вopкзaйc?

Haибoлee oптимaльныe нacтpoйки для 1060: PL 50, CC -400, Mem = MAX.
1060 3гб/6gb пpи 50/-400/+850 = 1400+
Для 1070 - пoвepлимит зaвиcит oт мoeли. Кapтa мoщнee, пoэтoмy PL = 50-55. CC = -400+150 (oт мoдeли). Mem = MAX.
1070 8Гб пpи PL 52/+150/+850 = 1920.
Cпacибo зa инфo! Кacaтeльнo вopкcaйз, кaк yжe oтвeтил вышe, ocтaвлял eгo для вoзмoжнoй тoнкoй нacтpoйки выпoлнeния кoдa OpenCL, нo пoгoды кaк oкaзaлocь, oнo нe дeлaeт нa paзныx кapтax, мoжнo тoлькo yмeньшить cкopocть Smiley Taк чтo cкopee вceгo yбepy c глaз дoлoй.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 05, 2018, 07:26:18 AM
 #29

Released 0.9.8 beta:
- added validation scratchpad at start and redownloading it if needed
- now should work on old cards too
- added job-timeout parameter, now miner will disconnect if there is no new job for some time and videocards found all shares(could help for "beast" rigs on Vega)
- a bit more safe code
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 05, 2018, 10:38:58 AM
 #30

A ecть ли вoзмoжнocть дoбaвить инфopмaтивнocти - кaк нa XMPИГHвидия?
Taм пиpиoдичecки мaйнep вывoдит cвoдкy пo кapтaм
GPU0 - CC/MC/пoтpeбляeмaя Moщнocть/тeмпapaтypa/% oбopoтoв кyлepa

andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 05, 2018, 10:57:01 AM
 #31

A ecть ли вoзмoжнocть дoбaвить инфopмaтивнocти - кaк нa XMPИГHвидия?
Taм пиpиoдичecки мaйнep вывoдит cвoдкy пo кapтaм
GPU0 - CC/MC/пoтpeбляeмaя Moщнocть/тeмпapaтypa/% oбopoтoв кyлepa
Этo в cпиcкe TODO, в плaнax пpикpyтить ADL/NVML для этиx цeлeй, нo пoкa нaдo бaзoвыe вeщи дoвecти дo yмa и oтлaдить Smiley
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 05, 2018, 02:31:42 PM
 #32

Чтo ж, бyдeм ждaть ). Meня вoлнyeт вoпpoc. A пoчeмy Beгa нa пypкe и бoбpax имeeт тaкoй paзный xeшpeйт. Taк cильнo cкpeтчпaд фaйл влияeт?
dwarf0
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
July 05, 2018, 02:51:26 PM
Last edit: July 05, 2018, 05:35:07 PM by dwarf0
 #33

andrucrypt
Maйнep чepeз пpoкcи нe paбoтaeт? Haдo бы пpикpyтить. Cтapый yмeeт.
И вaтчдoг нaдo вcтpoeнный, кaк в клeймope
abudfv2008
Full Member
***
Offline Offline

Activity: 728
Merit: 106


View Profile
July 05, 2018, 06:26:32 PM
 #34

Xopoшaя paбoтa! Tecтиpyю мaйнep. AMД - cкopocти пpимepнo тe жe, чтo и нa cтapoм. Hвидия - oтличнo. Cкopocти тe жe, нo HAMHOГO peджeктoв мeньшe. Taк жe ecли пoднять интeнcивнoтcь дo 1024 cкopocть pacтeт пpимepнo нa 3%, нo вcкope cкopocть пaдaeт дo 0 (NVIDIA). Пpи интeнcивнocти 256 paбoтaeт cтaбильнo.
Пpoбoвaл мeнять вopкзaйc - эффeктa нeт. 32/64/256... Aвтop, paccкaжи плиз пoдpoбнee. Из пpeдыдyщeгo пocтa я пoнял, чтo нyжнo дoбитьcя минимaльнoй интeнcивнocти, пpи кoтopoй xeшpeйт нe пaдaeт? A чтo c вopкзaйc?

Haибoлee oптимaльныe нacтpoйки для 1060: PL 50, CC -400, Mem = MAX.
1060 3гб/6gb пpи 50/-400/+850 = 1400+
Для 1070 - пoвepлимит зaвиcит oт мoeли. Кapтa мoщнee, пoэтoмy PL = 50-55. CC = -400+150 (oт мoдeли). Mem = MAX.
1070 8Гб пpи PL 52/+150/+850 = 1920.
It's strange but GTX970 runs faster than 1060 = 1730+.
But 1080Ti is real upset - only ~2300
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 05, 2018, 06:35:18 PM
 #35

But 1080Ti is real upset - only ~2300
Luke, use ETHlargement Smiley It should do ~3.0-3.1MH/s
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 05, 2018, 09:14:45 PM
 #36

Released 0.9.9 beta:
- fixed JSON decode failed
- more checks for scratchpad failure
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 05, 2018, 09:16:08 PM
 #37

andrucrypt
Maйнep чepeз пpoкcи нe paбoтaeт? Haдo бы пpикpyтить. Cтapый yмeeт.
И вaтчдoг нaдo вcтpoeнный, кaк в клeймope
Дa, вcё нaдo, coглaceн... нo нe cpaзy, для нaчaлa нaдo бы бaзoвыe вeщи дo yмa дoвecти, и пo пpoизвoдитeльнocти вcё вoзмoжнoe выжaть Smiley
cirlama
Jr. Member
*
Offline Offline

Activity: 156
Merit: 1


View Profile
July 05, 2018, 09:21:49 PM
 #38

But 1080Ti is real upset - only ~2300
Luke, use ETHlargement Smiley It should do ~3.0-3.1MH/s

1080 ti does 3600-3700 @+400 mem +80 core 50% power with pill
(the same hashrate than cpuminer-multi-opencl... less 2% fee)
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 05, 2018, 09:39:35 PM
 #39

1080 ti does 3600-3700 @+400 mem +80 core 50% power with pill
(the same hashrate than cpuminer-multi-opencl... less 2% fee)
What about poolside hashrate when you use a rig with 1080Ti's? With one card minerd/ccminer will be fine.
cirlama
Jr. Member
*
Offline Offline

Activity: 156
Merit: 1


View Profile
July 06, 2018, 06:22:35 AM
 #40

1080 ti does 3600-3700 @+400 mem +80 core 50% power with pill
(the same hashrate than cpuminer-multi-opencl... less 2% fee)
What about poolside hashrate when you use a rig with 1080Ti's? With one card minerd/ccminer will be fine.

I have one PC x 1080 ti, 1 PC x 1070, 1 PC x (rx480+rx580), no rig to test, sorry...
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 06, 2018, 06:33:40 AM
 #41

I have one PC x 1080 ti, 1 PC x 1070, 1 PC x (rx480+rx580), no rig to test, sorry...
Anyway, thanks for response, because of it I clarified a bit statement for hashrate Smiley
nordmann666
Member
**
Offline Offline

Activity: 361
Merit: 16


View Profile
July 07, 2018, 03:33:15 PM
 #42

tried intensity 256, 1024 with no changes in hasrate

2x vega56

2,2KH´s

whats wrong?

wildrig.exe --opencl-platform=0 --opencl-devices=0,1 --opencl-launch=0x256 --url=bbr.miningclub.info:7777 --user=xxxxxxxxxxxxxxxxxxxxxxxxxx --pass=x --scratchpad-file=D:\wildrig\scratchpad.bin --scratchpad-url=http://bbr.miningclub.info/scratchpad.bin
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 07, 2018, 03:52:09 PM
 #43

tried intensity 256, 1024 with no changes in hasrate

2x vega56

2,2KH´s

whats wrong?

wildrig.exe --opencl-platform=0 --opencl-devices=0,1 --opencl-launch=0x256 --url=bbr.miningclub.info:7777 --user=xxxxxxxxxxxxxxxxxxxxxxxxxx --pass=x --scratchpad-file=D:\wildrig\scratchpad.bin --scratchpad-url=http://bbr.miningclub.info/scratchpad.bin
If you expect 5.5+ MH/s per Vega56 when mining Boolberry, I will disappoint you - because of bigger scratchpad size than in Purk, hashrate here is much less. Otherwise - you use --opencl-launch wrong, try --opencl-launch=256x0 or --opencl-launch=1024x0. First parameter there is intensity, second one - worksize(better to set it by default to zero).
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
July 07, 2018, 09:34:47 PM
 #44

is there any information about power ?

cryptonight or wild keccak has the lower power usage ?

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
minerjed
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
July 07, 2018, 09:49:01 PM
 #45

tried intensity 256, 1024 with no changes in hasrate

2x vega56

2,2KH´s

whats wrong?

wildrig.exe --opencl-platform=0 --opencl-devices=0,1 --opencl-launch=0x256 --url=bbr.miningclub.info:7777 --user=xxxxxxxxxxxxxxxxxxxxxxxxxx --pass=x --scratchpad-file=D:\wildrig\scratchpad.bin --scratchpad-url=http://bbr.miningclub.info/scratchpad.bin

first, you're mining bbr, so you aren't going to get a big hashrate bcause the scratchpad size, but try using
Code:
--opencl-launch=1912x256
and use a -20% power limit, -25% cpu clock an put memory clock at 945MHz, and see if the hashrate goes any better


could you mine BBR with your current settings and post hash rate , im testing with vega FE's but curious on the  56's hashrate on BBR
thanks
minerjed
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
July 08, 2018, 12:14:30 AM
 #46

ok  will do
minerjed
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
July 08, 2018, 02:58:10 AM
 #47

tried intensity 256, 1024 with no changes in hasrate

2x vega56

2,2KH´s

whats wrong?

wildrig.exe --opencl-platform=0 --opencl-devices=0,1 --opencl-launch=0x256 --url=bbr.miningclub.info:7777 --user=xxxxxxxxxxxxxxxxxxxxxxxxxx --pass=x --scratchpad-file=D:\wildrig\scratchpad.bin --scratchpad-url=http://bbr.miningclub.info/scratchpad.bin

first, you're mining bbr, so you aren't going to get a big hashrate bcause the scratchpad size, but try using
Code:
--opencl-launch=1912x256
and use a -20% power limit, -25% cpu clock an put memory clock at 945MHz, and see if the hashrate goes any better


could you mine BBR with your current settings and post hash rate , im testing with vega FE's but curious on the  56's hashrate on BBR
thanks

2350Kh/s 1 x MSI Vega 56 Retail (Founder Ed)

shoot me an email i cant send any more pm's today lol got a couple things for you to try
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 08, 2018, 07:31:34 AM
 #48


I just got this error, first time getting it  Huh don't know if it's a bug from the miner or something that can happen sometimes Tongue
this is poolside problem with scratchpad %) In new build miner will try reconnect first and only then redownload scratchpad if it's still a problem.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 08, 2018, 10:36:48 AM
Last edit: July 08, 2018, 11:39:30 AM by andrucrypt
 #49

Released 0.9.10 beta:
- now videocards sorted by BusID
- added luck calculation(need testing, experimental feature)
- fixed crash when logging and --print-full is used
- few more checks for scratchpad fails(also in some cases miner will reconnect if it failed and only then redownload it if this not solve the problem, need testing)
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 08, 2018, 05:28:26 PM
Last edit: July 08, 2018, 05:46:17 PM by andrucrypt
 #50

Downloaded, 1rst, what you added is not luck, but effort, luck never is more than 99.9% and can be negative Wink
2nd, I noticed a hash drop on the first seconds with this version...
Checked again. No, this is not an effort Smiley Effort higher than 100% means you need to do a lot of hashes to find a share, but if manually increase this number in miner - I get value way below 100%, so this is more like "efficiency", but I like "luck" more Smiley Will normalize this value to be more like "luck", when 0% is just normal, above zero - you are lucky and below zero - you are not.

ps: about hashrate drop - how big it is? It can jump a bit for fast cards. Also Purk scratchpad is growing and hasharte will drop more and more, and Vega's advantage will disappear.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 08, 2018, 06:26:34 PM
 #51

well, modified a little the intensity and workload and it works again at 6100 KH/s, but it had dropped to 5600 KH/s  Embarrassed
Hmm, strange, no one else get so high hashdrop. Will PM you later with some reverted changes of kernel to see is this a reason.

the meaning of effort is (hashes for this share) / (hashes expected for this share) * 100
My formula is a bit different, same as in minerd, and if we talk about 1 share it looks like: ( 1 share ) / ( ( hashes for this 1 share ) / ( hashes expected for this 1 share ) ) * 100 Smiley I read some articles, and there we can see luck value equal to 100% "in perfect world" ) So will leave everything as is. Just need to improve calculation when dev-fee is finished. Or maybe will replace it with effort as more understandable parameter. Anyway, thanks for some food for thoughts Smiley
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 09, 2018, 07:39:03 PM
 #52

Released 0.9.11 beta
- new parameter --print-level
- more accurate luck calculation
- dynamic size for scratchpad buffer(no need in recompilation in future, less RAM used for PURK coin to mine Smiley)
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 09, 2018, 07:45:17 PM
 #53

lol, luck = 100% would be getting a share without doing any hashes, so it's impossible Tongue
nah, I don't agree Smiley

Today after donation mining I got some shares rejected because "Duplicate Share":
 Huh
This one is bad, will check my code for thread safeness more. How long it was, till new job or just his three shares?
5BTC
Copper Member
Newbie
*
Offline Offline

Activity: 48
Merit: 0


View Profile
July 10, 2018, 03:06:11 AM
 #54

Anyone get this running on multi Vega rigs? Trying with ROCM on Ubuntu and fails anytime I enable more than 1 Vega
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 10, 2018, 05:16:07 AM
 #55

Anyone get this running on multi Vega rigs? Trying with ROCM on Ubuntu and fails anytime I enable more than 1 Vega
Driver crash or miner crash(at what point?)? Or just an error(which one?)?
Callanta787
Member
**
Offline Offline

Activity: 546
Merit: 21


View Profile WWW
July 10, 2018, 06:41:00 AM
 #56

Anyway to make this work on old GPUs?

andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 10, 2018, 07:06:35 AM
 #57

Anyway to make this work on old GPUs?
Which one? GTX750Ti's works fine. On Radeon 7870 I solved the problem, but need time to add something like kernel option and test everything again.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 10, 2018, 09:18:27 AM
Last edit: July 10, 2018, 10:14:26 AM by andrucrypt
 #58

I got those 3 duplied ones, and then more than 1 minute without shares, so I just restarted the app
I got the same problem, but as soon as it got max-rejects of duplicated shares it automatically reconnected and everything went fine. Anyway, I found a real reason of that problem, will release new version soon with fix for that.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 10, 2018, 11:18:28 AM
 #59

Released 0.9.12 beta with IMPORTANT UPDATE
- fixed "Duplicate share" error after donation mining finished, same was possible to reproduce with pause/resume commands
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 11, 2018, 08:23:56 AM
 #60

Released 0.9.13 beta
- reworked strategy a bit, now nvidias should support 0 and 1 too. Changed default strategy to that used in other miners, should be better with vardiff
- fixed processing error "invalid miner height, re-download scratchpad", now miner definitely will redownload it
dwarf0
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
July 12, 2018, 07:55:08 AM
 #61

GTX750Ti's works fine.
[/quote]

What is its hashrate? is it equal to poolside hashrate indication?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 12, 2018, 09:33:19 AM
Last edit: July 12, 2018, 10:46:48 AM by andrucrypt
 #62

Released 0.9.14 beta
- fixed small memory leak
- implemented watchdog, now miner will exit with code 1000 if gpu hangs in OpenCL kernel for more than 5 sec.(can be disabled with parameter --no-watchdog)

IMPORTANT: please redownload the build, if you downloaded it before this text appeared here.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 12, 2018, 09:42:10 AM
 #63

GTX750Ti's works fine.

What is its hashrate? is it equal to poolside hashrate indication?
Depends on card overclocking. My 1Gb versions do 750kH/s, some Chinese MSI 2Gb fakes - 800-900 kH/s. Poolside jumps around that values, yes. ccminer was a disaster for me, and the only solution to avoid a lot of "Low difficulty" shares was using 5M static diff for them, but even so hashrate was lower. Currently I'm running wildrig on them using static diff and strategy set to 1(seems to be the best option, but needs testing for luck value in different cases).
dwarf0
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
July 12, 2018, 12:48:53 PM
Last edit: July 12, 2018, 01:17:42 PM by dwarf0
 #64

andrucrypt
Thank you for you work and looking forward for proxy implementation !

And one more thing. Can you add up an option that enable or disable the videocard count check during mining initialization?
 Old miner begins to mine regardless of the number of cards. Yours stops if the actual number is lower than config setting. So let us combine it.

And one more annoying thing Smiley
Sometimes GPU hangs along with the miner and miner process can not be terminated unless the rig rebooted. Could you do something to such a case? Advanced watchdog with reboot.bat executing may be? But it would be much better to prevent miner process hangs at all.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 12, 2018, 01:13:20 PM
 #65

andrucrypt
Thank you for you work and looking forward for proxy implementation !

And one more thing. Can you add up an option that enable or disable the videocard count check during mining initialization?
 Old miner begins to mine regardless of the number of cards. Yours stops if the actual number is lower than config setting. So let us combine it.
Oh, sorry, forgot about a moment with proxy %) This needs some investigation, unfortunately I'm not familiar with this. Can you explain a bit more?(maybe PM me to explain better in russian Smiley). What about configuration, I will check what can I do here.
dwarf0
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
July 12, 2018, 01:54:24 PM
 #66

pacпиcaл вce в личкy
willycut
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
July 13, 2018, 11:21:52 AM
 #67

Why my luck is always 0%? last beta .14

rx 480 cards
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 13, 2018, 11:27:46 AM
Last edit: July 13, 2018, 11:50:47 AM by andrucrypt
 #68

Why my luck is always 0%? last beta .14

rx 480 cards
Is this happening only with 0.9.14 version? If so, can you please run it with --no-watchdog parameter? But luck equal to zero... seems like all shares are rejected, or something is too wrong with calculations %)
willycut
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
July 13, 2018, 02:14:31 PM
 #69

Why my luck is always 0%? last beta .14

rx 480 cards
Is this happening only with 0.9.14 version? If so, can you please run it with --no-watchdog parameter? But luck equal to zero... seems like all shares are rejected, or something is too wrong with calculations %)

Ops, i found why my luck was 0%, i forgot in the .bat file to delete -l scratchpad.bin parameters left over by copy and paste, now all is ok but what it did do? shares where accepted...

http://i66.tinypic.com/23u75oi.png

andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 13, 2018, 02:15:05 PM
 #70

Released 0.9.15 beta(sorry, only Windows build right now)
- improved watchdog, now it works separately and won't decrease hashrate for AMD's when use low intensity values
- improved scratchpad fail handling, now miner will try to reset it to state saved on disk and login again, only then redownload it if fail again
- added experimental parameter --opencl-force1x to support old hardware like Readon HD 7xxx
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 13, 2018, 02:18:33 PM
Last edit: July 13, 2018, 02:41:14 PM by andrucrypt
 #71

Why my luck is always 0%? last beta .14

rx 480 cards
Is this happening only with 0.9.14 version? If so, can you please run it with --no-watchdog parameter? But luck equal to zero... seems like all shares are rejected, or something is too wrong with calculations %)

Ops, i found why my luck was 0%, i forgot in the .bat file to delete -l scratchpad.bin parameters left over by copy and paste, now all is ok but what it did do? shares where accepted...



Oh, now I know where is a problem... will fix that in the next build Smiley You get 0 because of bug in code when --no-color used(manually set or automatically because of logging to file). What about luck, there is description of it in first post.
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 13, 2018, 08:30:05 PM
 #72

GTX750Ti's works fine.

What is its hashrate? is it equal to poolside hashrate indication?
Depends on card overclocking. My 1Gb versions do 750kH/s, some Chinese MSI 2Gb fakes - 800-900 kH/s. Poolside jumps around that values, yes. ccminer was a disaster for me, and the only solution to avoid a lot of "Low difficulty" shares was using 5M static diff for them, but even so hashrate was lower. Currently I'm running wildrig on them using static diff and strategy set to 1(seems to be the best option, but needs testing for luck value in different cases).
Your doing good ... my 2Gb 750ti's are doing the same as yours.  Smiley

I can't get the display to show the hashrate of my 2 cards individually.....only total hashrate. Any way to show them individually?

And how do I set the intensity lower for one card and leave the other cards intensity high? So I can use my computer.  Thx  Smiley

Code:
wildrig.exe --opencl-platform=0   --opencl-devices=0,1 --opencl-launch=60x256 --url=usbbr.mining.blue:8888 --

user=my addy --pass=x --scratchpad-file=C:\Users\tbear\AppData\Local\.cache\boolberry\scratchpad.bin --scratchpad-

url=http://mining.blue/scratchpad.bin

[16:33:03] GPU #0 [BusID: #5] GeForce GTX 750 Ti intensity: 60 (256/1024), cu: 5
[16:33:03] GPU #1 [BusID: #6] GeForce GTX 750 Ti intensity: 60 (256/1024), cu: 5

[16:31:29] accepted(90/0) diff 11.16M luck 100.72% (37 ms)
[16:31:33] speed 10s/60s/15m 1598.6 1598.9 n/a kH/s max: 1601.1 kH/s

 
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 14, 2018, 08:10:56 AM
 #73

Released 0.9.15 beta(sorry, only Windows build right now)
- improved watchdog, now it works separately and won't decrease hashrate for AMD's when use low intensity values
- improved scratchpad fail handling, now miner will try to reset it to state saved on disk and login again, only then redownload it if fail again
- added experimental parameter --opencl-force1x to support old hardware like Readon HD 7xxx

Sometimes the miner closes itself when I want to run it, sometimes says this:



and sometimes works Tongue
Yes, I made a bug there... please downgrade at least to 0.9.14, and probably use --no-watchdog. I will build new version today with fixes. Also for future - use start.bat provided, it will rerun miner every time it closes(with watchdog it will close itself for restart if gpu hangs).
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 14, 2018, 08:13:45 AM
Last edit: July 14, 2018, 01:43:24 PM by andrucrypt
 #74

GTX750Ti's works fine.

What is its hashrate? is it equal to poolside hashrate indication?
Depends on card overclocking. My 1Gb versions do 750kH/s, some Chinese MSI 2Gb fakes - 800-900 kH/s. Poolside jumps around that values, yes. ccminer was a disaster for me, and the only solution to avoid a lot of "Low difficulty" shares was using 5M static diff for them, but even so hashrate was lower. Currently I'm running wildrig on them using static diff and strategy set to 1(seems to be the best option, but needs testing for luck value in different cases).
Your doing good ... my 2Gb 750ti's are doing the same as yours.  Smiley

I can't get the display to show the hashrate of my 2 cards individually.....only total hashrate. Any way to show them individually?

And how do I set the intensity lower for one card and leave the other cards intensity high? So I can use my computer.  Thx  Smiley

Code:
wildrig.exe --opencl-platform=0   --opencl-devices=0,1 --opencl-launch=60x256 --url=usbbr.mining.blue:8888 --

user=my addy --pass=x --scratchpad-file=C:\Users\tbear\AppData\Local\.cache\boolberry\scratchpad.bin --scratchpad-

url=http://mining.blue/scratchpad.bin

[16:33:03] GPU #0 [BusID: #5] GeForce GTX 750 Ti intensity: 60 (256/1024), cu: 5
[16:33:03] GPU #1 [BusID: #6] GeForce GTX 750 Ti intensity: 60 (256/1024), cu: 5

[16:31:29] accepted(90/0) diff 11.16M luck 100.72% (37 ms)
[16:31:33] speed 10s/60s/15m 1598.6 1598.9 n/a kH/s max: 1601.1 kH/s
Hi, seems you are trying to use same configuration as for ccminer, and it works Smiley Anyway, you can set different options via comma separation, like --opencl-launch=60x256,30x256. What about hashrate - use option --print-full or press 'h' while miner works, it will print hasharte for all cards.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 14, 2018, 04:08:15 PM
 #75

IMPORTANT: finally released version 0.9.16 with critical fixes to 0.9.15 build. Please update. Now watchdog definitely should work. Also fixed low hashrate for nvidia's in some cases at start.
duyquang06
Newbie
*
Offline Offline

Activity: 154
Merit: 0


View Profile
July 14, 2018, 04:21:21 PM
 #76

wow, u update so fast
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 14, 2018, 04:23:56 PM
 #77

GTX750Ti's works fine.

What is its hashrate? is it equal to poolside hashrate indication?
Depends on card overclocking. My 1Gb versions do 750kH/s, some Chinese MSI 2Gb fakes - 800-900 kH/s. Poolside jumps around that values, yes. ccminer was a disaster for me, and the only solution to avoid a lot of "Low difficulty" shares was using 5M static diff for them, but even so hashrate was lower. Currently I'm running wildrig on them using static diff and strategy set to 1(seems to be the best option, but needs testing for luck value in different cases).
Your doing good ... my 2Gb 750ti's are doing the same as yours.  Smiley

I can't get the display to show the hashrate of my 2 cards individually.....only total hashrate. Any way to show them individually?

And how do I set the intensity lower for one card and leave the other cards intensity high? So I can use my computer.  Thx  Smiley

Code:
wildrig.exe --opencl-platform=0   --opencl-devices=0,1 --opencl-launch=60x256 --url=usbbr.mining.blue:8888 --

user=my addy --pass=x --scratchpad-file=C:\Users\tbear\AppData\Local\.cache\boolberry\scratchpad.bin --scratchpad-

url=http://mining.blue/scratchpad.bin

[16:33:03] GPU #0 [BusID: #5] GeForce GTX 750 Ti intensity: 60 (256/1024), cu: 5
[16:33:03] GPU #1 [BusID: #6] GeForce GTX 750 Ti intensity: 60 (256/1024), cu: 5

[16:31:29] accepted(90/0) diff 11.16M luck 100.72% (37 ms)
[16:31:33] speed 10s/60s/15m 1598.6 1598.9 n/a kH/s max: 1601.1 kH/s
Hi, seems you are trying to use same configuration as for ccminer, and it works Smiley Anyway, you can set different options via comma separation, like --opencl-launch=60x256,30x256. What about hashrate - use option --print-full or press 'h' while miner works, it will print hasharte for all cards.
Thx andrucrypt.... working great now. Smiley    Is --opencl-force1x command for amd only?  Just curious.

HonestAbeX1
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
July 14, 2018, 05:28:20 PM
 #78

I was previously running 0.9.7 and getting rejected shares in the 3%-4% range which is not out of line.  However, now running both 0.9.7 and 0.9.14 the rejected shares have sky rocketed to the 10% to 10.5% range.  Just wondering what has recently happened? Occurs now on both my AMD 560/580 rigs.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 14, 2018, 06:21:22 PM
 #79

I was previously running 0.9.7 and getting rejected shares in the 3%-4% range which is not out of line.  However, now running both 0.9.7 and 0.9.14 the rejected shares have sky rocketed to the 10% to 10.5% range.  Just wondering what has recently happened? Occurs now on both my AMD 560/580 rigs.
Man, this is too high values. Even 3%-4% not good. Can you update to newer version? 0.9.16 should reduce a bit. Also, what intensity do you use?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 14, 2018, 06:22:58 PM
 #80

Is --opencl-force1x command for amd only?  Just curious.
Yeah, don't know why, but on Radeon HD 7xxx series(probably 6xxx and 5xxx too) it needs some different kernel and OpenCL 1.x
HonestAbeX1
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
July 14, 2018, 10:54:36 PM
 #81

I was previously running 0.9.7 and getting rejected shares in the 3%-4% range which is not out of line.  However, now running both 0.9.7 and 0.9.14 the rejected shares have sky rocketed to the 10% to 10.5% range.  Just wondering what has recently happened? Occurs now on both my AMD 560/580 rigs.
Man, this is too high values. Even 3%-4% not good. Can you update to newer version? 0.9.16 should reduce a bit. Also, what intensity do you use?

Okay, I recheck and on my 3-560/1-580 rig it was 11.5% rejected shares running 0.9.7 and on the 1-560/5-580 rig it was 1.3% rejection running 0.9.14.

I just load and running 0.9.16 and so far after submitting 500 shares the 3-560/1-580 rig now has 1% rejected shares and the other rig down to just 0.5% rejected shares.  So looking good.

I run the 560s at 256 and 580s at 512 intensity respectively.

The other odd quirk is I tested port 7777 on the slower 5 Mh/s rig (3-560/1-580) and it cannot hash at all with 0.9.16 ... only works on port 5555 on Purk pool.
HonestAbeX1
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
July 15, 2018, 04:00:56 AM
 #82

I was previously running 0.9.7 and getting rejected shares in the 3%-4% range which is not out of line.  However, now running both 0.9.7 and 0.9.14 the rejected shares have sky rocketed to the 10% to 10.5% range.  Just wondering what has recently happened? Occurs now on both my AMD 560/580 rigs.
Man, this is too high values. Even 3%-4% not good. Can you update to newer version? 0.9.16 should reduce a bit. Also, what intensity do you use?

Okay, I recheck and on my 3-560/1-580 rig it was 11.5% rejected shares running 0.9.7 and on the 1-560/5-580 rig it was 1.3% rejection running 0.9.14.

I just load and running 0.9.16 and so far after submitting 500 shares the 3-560/1-580 rig now has 1% rejected shares and the other rig down to just 0.5% rejected shares.  So looking good.

I run the 560s at 256 and 580s at 512 intensity respectively.

The other odd quirk is I tested port 7777 on the slower 5 Mh/s rig (3-560/1-580) and it cannot hash at all with 0.9.16 ... only works on port 5555 on Purk pool.

Okay, after some further testing some weird stuff occurs.

One rig (3-560/1-580) hashes away just fine for nearly 1,000 submitted shares after 3.5 hours at just 1% rejection rate and around that time suddenly the rejection rate sky rockets with lots of "low difficulty shares" rejected and also "stale shares ... ignore it" that take the rejection rate above 10%.  I basically just close and restart the miner and it likely will be fine again for the initial few hours.

On my other rig (1-560/5-580) it is working a bit better at also roughly 1% rejection rate, but then encountered inability to find mining pools and some disconnects/reconnects including a 3 minute span that resulted in over 30 rejected shares consecutively that caused the miner to restart.

Cannot figure out how to paste a picture so here is some text on the errors:

rejected(2449/22) diff 50.53M "Duplicate share"
waiting for a new job more than 60 seconds, disconnect
reconnect in 10 seconds
no active pools, stop mining
use pool pool.purkproject.com:7777
accepted(2456/22) diff 50.53M luck 123.67%
 ....
rejected(2456/23) diff 50.53M "Low difficulty share"

new job from pool.purkproject.com:7777 diff 85.90M
ADDENDUM APPLIED: 104175 --> 104176  7 blocks added
JSON invalid target:
rejected(2456/24) diff 85.90M "Low difficulty share"
rejected(2456/25) diff 85.90M "Low difficulty share"
rejected(2456/26) diff 85.90M "Low difficulty share"
rejected(2456/27) diff 85.90M "Low difficulty share"
rejected(2456/28) diff 85.90M "Low difficulty share"
rejected(2456/29) diff 85.90M "Low difficulty share"
rejected(2456/30) diff 85.90M "Low difficulty share"
rejected(2456/31) diff 85.90M "Low difficulty share"






andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 15, 2018, 06:37:18 AM
 #83

Released 0.9.17 beta
- moved scratchpad update into a better place, this should decrease amount of "Low difficulty" shares before "new job"
- added general uptime value to API
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 15, 2018, 06:43:44 AM
Last edit: July 15, 2018, 06:53:56 AM by andrucrypt
 #84

Okay, after some further testing some weird stuff occurs.

One rig (3-560/1-580) hashes away just fine for nearly 1,000 submitted shares after 3.5 hours at just 1% rejection rate and around that time suddenly the rejection rate sky rockets with lots of "low difficulty shares" rejected and also "stale shares ... ignore it" that take the rejection rate above 10%.  I basically just close and restart the miner and it likely will be fine again for the initial few hours.

On my other rig (1-560/5-580) it is working a bit better at also roughly 1% rejection rate, but then encountered inability to find mining pools and some disconnects/reconnects including a 3 minute span that resulted in over 30 rejected shares consecutively that caused the miner to restart.

Cannot figure out how to paste a picture so here is some text on the errors:

rejected(2449/22) diff 50.53M "Duplicate share"
waiting for a new job more than 60 seconds, disconnect
reconnect in 10 seconds
no active pools, stop mining
use pool pool.purkproject.com:7777
accepted(2456/22) diff 50.53M luck 123.67%
 ....
rejected(2456/23) diff 50.53M "Low difficulty share"

new job from pool.purkproject.com:7777 diff 85.90M
ADDENDUM APPLIED: 104175 --> 104176  7 blocks added
JSON invalid target:
rejected(2456/24) diff 85.90M "Low difficulty share"
rejected(2456/25) diff 85.90M "Low difficulty share"
rejected(2456/26) diff 85.90M "Low difficulty share"
rejected(2456/27) diff 85.90M "Low difficulty share"
rejected(2456/28) diff 85.90M "Low difficulty share"
rejected(2456/29) diff 85.90M "Low difficulty share"
rejected(2456/30) diff 85.90M "Low difficulty share"
rejected(2456/31) diff 85.90M "Low difficulty share"
This one is weird. Seems I need more testing with official Purk pool, and probably do something with gpu mixed rigs. Can you please try new version?
abudfv2008
Full Member
***
Offline Offline

Activity: 728
Merit: 106


View Profile
July 15, 2018, 07:19:11 AM
 #85

I have 2 identical rigs with 1060/6. Run the same bat, but get ~1400h/s per GPU on one of them and only ~1000h/s on another.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 15, 2018, 07:39:32 AM
 #86

I have 2 identical rigs with 1060/6. Run the same bat, but get ~1400h/s per GPU on one of them and only ~1000h/s on another.
Are you sure that overclocking settings are the same and MSI Afterburner(or what do you use) applied them? Also which one manufacturer of memory on cards in GPU-Z, and what bandwidth there, is it equal?
abudfv2008
Full Member
***
Offline Offline

Activity: 728
Merit: 106


View Profile
July 15, 2018, 11:57:08 AM
 #87

I have 2 identical rigs with 1060/6. Run the same bat, but get ~1400h/s per GPU on one of them and only ~1000h/s on another.
Are you sure that overclocking settings are the same and MSI Afterburner(or what do you use) applied them? Also which one manufacturer of memory on cards in GPU-Z, and what bandwidth there, is it equal?
Кoнeчнo yвepeн. Oни вooбщe идeнтичны пoлнocтью, т.e. oдинaкoвo вce жeлeзo, paзгoн. И caми oни кoгдa тo были cклoниpoвaны. И ceйчac oдинaкoвaя вepcия винды, дpoв и т.д. нa дpyгиx мaйнepax oни идeнтичны.
Ho тyт eщe тaкoй мoмeнт y мeня кoнтpoльнaя 970 нa 15 вepcии вooбщe oткaзaлacь paбoтaть. Ha 17 oпять зapaбoтaлa выдaвaя вce тeжe 1720xeшeй. Ho пoкa я пытaлcя зaпycтить 15ю 7aя вepcия нaчaлa выдaвaть 1400. Кpyтил тyдa cюдa нacтpoйки и вдpyг oпять cтaлo 1720. Xoтя пo cyти paзницa в 1024x0 или 60x256 или любaя дpyгaя кoмбинaция влияeт минимaльнo (1680-1720). Bce этo былo бeз пepeзaгpyзoк, т.e. я вooбщe нe пoнял oт чeгo вдpyг cтaлo тaк. Этo пoxoжe нa пaдeниe xeшpeйтa y вeг или cryptodredge этим жe гpeшит нa phi2. Кoгдa 1080ти вдpyг c 7200 cвaливaeтcя нa 6800 a тo и 6200 и лeчитcя тoлькo пepeзaгpyзкoй.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 15, 2018, 12:13:17 PM
 #88

Кoнeчнo yвepeн. Oни вooбщe идeнтичны пoлнocтью, т.e. oдинaкoвo вce жeлeзo, paзгoн. И caми oни кoгдa тo были cклoниpoвaны. И ceйчac oдинaкoвaя вepcия винды, дpoв и т.д. нa дpyгиx мaйнepax oни идeнтичны.
Ho тyт eщe тaкoй мoмeнт y мeня кoнтpoльнaя 970 нa 15 вepcии вooбщe oткaзaлacь paбoтaть. Ha 17 oпять зapaбoтaлa выдaвaя вce тeжe 1720xeшeй. Ho пoкa я пытaлcя зaпycтить 15ю 7aя вepcия нaчaлa выдaвaть 1400. Кpyтил тyдa cюдa нacтpoйки и вдpyг oпять cтaлo 1720. Xoтя пo cyти paзницa в 1024x0 или 60x256 или любaя дpyгaя кoмбинaция влияeт минимaльнo (1680-1720). Bce этo былo бeз пepeзaгpyзoк, т.e. я вooбщe нe пoнял oт чeгo вдpyг cтaлo тaк. Этo пoxoжe нa пaдeниe xeшpeйтa y вeг или cryptodredge этим жe гpeшит нa phi2. Кoгдa 1080ти вдpyг c 7200 cвaливaeтcя нa 6800 a тo и 6200 и лeчитcя тoлькo пepeзaгpyзкoй.
Для 1060 мнoгoвaтo бyдeт 1024 для intensity, нo тo тaкoe. Cтpaннaя cитyaция, ecли дo cиx пop нa 0.9.17 двa oдинaкoвыx pигa выдaют paзный xeшpeйт. C этoй вepcиeй пpoбoвaл? A 15я былa oткpoвeннo кocячнaя, и oбнapyжив пpoблeмы в нeй нe былo вoзмoжнocти иcпpaвить cpaзy или пpeдyпpeдить нapoд, т.к. дoмa cдox aвтoмaт нa cчeтчикe элeктpoпитaния.
abudfv2008
Full Member
***
Offline Offline

Activity: 728
Merit: 106


View Profile
July 15, 2018, 02:07:30 PM
 #89

XЗ чтo зa фигня. Щac глянyл - тa чтo 1400 выдaвaлa cкинyлacь дo 1000. Пepeзaпycк пoмoг. Ho тa чтo 1000 выдaвaлa и никaк нe xoтeлa бoльшe тeпepь 1400 тянeт. Пocтaвил 512 Intensity нa вcякий cлyчaй - мoжeт нe бyдeт cкидывaтьcя. Ho 970-я нa 1024 пaшeт кaк чacы cyткaми
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 15, 2018, 03:52:51 PM
 #90

XЗ чтo зa фигня. Щac глянyл - тa чтo 1400 выдaвaлa cкинyлacь дo 1000. Пepeзaпycк пoмoг. Ho тa чтo 1000 выдaвaлa и никaк нe xoтeлa бoльшe тeпepь 1400 тянeт. Пocтaвил 512 Intensity нa вcякий cлyчaй - мoжeт нe бyдeт cкидывaтьcя. Ho 970-я нa 1024 пaшeт кaк чacы cyткaми
Ecть двa мoмeнтa. Пepвый - ecли дpoвa гдe-тo yмepли и cкинyлиcь, тo мoжeт paзгoн oтвaлилcя, a тeм вpeмeнeм мaйнep пepeзaпycтилcя(из бaтникa, ecли c нeгo зaпycкaл). Дpyгoй - вpeмя oт вpeмeни пpocaдкy пo xeшpeйтy cлoвить мoжнo, нo вcё вoзвpaщaeтcя нa кpyги cвoя пocлe new job. Cвязaнo c тeм, чтo нa нeкoтopoм oтpeзкe джoбы y NVIDIA нaчинaютcя тpaблы c вычиcлeниями и я пepeключaюcь в бoлee бeзoпacный вapиaнт kernel'a, кoтopый пpoдoлжaeт cчитaть вepнo, нo мeдлeннeй(в ccminer в этoм cлyчaи шли oшибки). B бyдyщeм xoчy paзoбpaтьcя дeтaльнeй и иcключить пpocaдкy вoвce.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 15, 2018, 04:36:02 PM
 #91

Added custom package for integration with HiveOS.
abudfv2008
Full Member
***
Offline Offline

Activity: 728
Merit: 106


View Profile
July 15, 2018, 05:11:18 PM
 #92

XЗ чтo зa фигня. Щac глянyл - тa чтo 1400 выдaвaлa cкинyлacь дo 1000. Пepeзaпycк пoмoг. Ho тa чтo 1000 выдaвaлa и никaк нe xoтeлa бoльшe тeпepь 1400 тянeт. Пocтaвил 512 Intensity нa вcякий cлyчaй - мoжeт нe бyдeт cкидывaтьcя. Ho 970-я нa 1024 пaшeт кaк чacы cyткaми
Ecть двa мoмeнтa. Пepвый - ecли дpoвa гдe-тo yмepли и cкинyлиcь, тo мoжeт paзгoн oтвaлилcя, a тeм вpeмeнeм мaйнep пepeзaпycтилcя(из бaтникa, ecли c нeгo зaпycкaл). Дpyгoй - вpeмя oт вpeмeни пpocaдкy пo xeшpeйтy cлoвить мoжнo, нo вcё вoзвpaщaeтcя нa кpyги cвoя пocлe new job. Cвязaнo c тeм, чтo нa нeкoтopoм oтpeзкe джoбы y NVIDIA нaчинaютcя тpaблы c вычиcлeниями и я пepeключaюcь в бoлee бeзoпacный вapиaнт kernel'a, кoтopый пpoдoлжaeт cчитaть вepнo, нo мeдлeннeй(в ccminer в этoм cлyчaи шли oшибки). B бyдyщeм xoчy paзoбpaтьcя дeтaльнeй и иcключить пpocaдкy вoвce.
Cлeт дpoв и paзгoнa нe мoй вapиaнт. У мeня caмoпиcный бaтник pyлит вceм этим пpoцeccoм (вeнтилятopы,PL, цeлeвoй тeмпepaтypoй и т.д. кoтopый пepиoдичecки ycтaнaвливaeт вce кaк нaдo и ecли yпaлo, тo pecтapтит)
Кoгдa xeшpeйт внизy - ничeгo нe cлeтeлo и вce paбoтaeт кaк нaдo. Я дaжe пpoвepил - зaпycтил дpyгoй мaйнep - в нeм вce кaк пoлoжeнo. Зaпycкaю твoй и вce paвнo 1000 вмecтo 1400. Пoмoглa тoлькo пepeзaгpyзкa.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 15, 2018, 05:23:27 PM
 #93

Зaпycкaю твoй и вce paвнo 1000 вмecтo 1400. Пoмoглa тoлькo пepeзaгpyзкa.
Пoкa тaкoй cлyчaй пepвый, бyдy дyмaть чтo мoжнo cдeлaть.
HonestAbeX1
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
July 15, 2018, 06:04:44 PM
 #94

Okay, after some further testing some weird stuff occurs.

One rig (3-560/1-580) hashes away just fine for nearly 1,000 submitted shares after 3.5 hours at just 1% rejection rate and around that time suddenly the rejection rate sky rockets with lots of "low difficulty shares" rejected and also "stale shares ... ignore it" that take the rejection rate above 10%.  I basically just close and restart the miner and it likely will be fine again for the initial few hours.

On my other rig (1-560/5-580) it is working a bit better at also roughly 1% rejection rate, but then encountered inability to find mining pools and some disconnects/reconnects including a 3 minute span that resulted in over 30 rejected shares consecutively that caused the miner to restart.

Cannot figure out how to paste a picture so here is some text on the errors:

rejected(2449/22) diff 50.53M "Duplicate share"
waiting for a new job more than 60 seconds, disconnect
reconnect in 10 seconds
no active pools, stop mining
use pool pool.purkproject.com:7777
accepted(2456/22) diff 50.53M luck 123.67%
 ....
rejected(2456/23) diff 50.53M "Low difficulty share"

new job from pool.purkproject.com:7777 diff 85.90M
ADDENDUM APPLIED: 104175 --> 104176  7 blocks added
JSON invalid target:
rejected(2456/24) diff 85.90M "Low difficulty share"
rejected(2456/25) diff 85.90M "Low difficulty share"
rejected(2456/26) diff 85.90M "Low difficulty share"
rejected(2456/27) diff 85.90M "Low difficulty share"
rejected(2456/28) diff 85.90M "Low difficulty share"
rejected(2456/29) diff 85.90M "Low difficulty share"
rejected(2456/30) diff 85.90M "Low difficulty share"
rejected(2456/31) diff 85.90M "Low difficulty share"
This one is weird. Seems I need more testing with official Purk pool, and probably do something with gpu mixed rigs. Can you please try new version?

I ran the 0.9.17 version overnight and after 10 hours and nearly 5,000 shares accepted, the rig (that previously had the 10%+ rejected shares rate) only had 1.5% rejected shares.  So seems a lot better.  Will continue running it for few days to reassess.  Now I will also run it on the 5-580/1-560 rig and monitor that.  Thanks for all of the updates and keep up the hard work … it is getting there!
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 15, 2018, 08:02:19 PM
 #95

Minor update, 0.9.18 beta
- fixed --no-watchdog parameter, now it should work
- set timeout for watchdog to 30 seconds now
- now if downloading speed of scratchpad is 512 bytes for more than 30 seconds, miner will restart downloading it
locbet
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile WWW
July 16, 2018, 10:11:09 AM
 #96

WildRig 0.9.18 beta

Download for Windows
(dependencies: Visual C++ Redistributable 2015 x64)

Download for Linux
(dependencies: libcurl4, libuv1, libmicrohttpd10)

Custom package for HiveOS
(dependencies: libcurl4, libuv1, libmicrohttpd10)

all version can be found here

difference from minerd and ccminer:
- better hashrate on poolside for NVIDIA cards(because of more accepted shares). AMD can get some improvement too, but less significant, still gathering some statistics
- no 100% load of CPU core per NVIDIA card like in minerd
- fast scratchpad update(less hashrate drop when new addendum blocks received)
- no limit for amount of GPU's as in minerd
- watchdog(see description for --no-watchdog parameter)
- new interface
- API to check miner stats via web

hashrate clarification: as described above, for NVIDIA's there can be good improvement on poolside. But only if you use a rig. One card will be fine with minerd and ccminer(in some cases can be fine even with 2-3). In miner itself most of the time hashrate will be +/- with that you can get with other miners.

known issues:
- all shares are Low difficulty on some old hardware with OpenCL 1.x support(like Radeon HD7xxx, but GeForce 750Ti doing great). Try to use new option --opencl-force1x

Testing and reporting issues are welcome! Smiley

coins:
- Boolberry
- Purk

dev-fee:
currently 2% only, fully compensates on NVIDIA's because of improvements. For AMD cards still gathering some statistics to decide lowering dev-fee for those cards.

TODO:
- miner uptime value in API(in addition to connection uptime)(done, will be in next build)
- improvements for scratchpad management(work in progress)
- HiveOS integration(work in progress, have some troubles with stats...)
- ADL/NVML for monitoring videocards health
- open source some day once all things will be done good Smiley

Example of config.json for two videocards:
Code: (json)
{
    "background": false,
    "colors": true,
    "donate-level": 0,     // default donation level is 2%, you can increase it if you want :D
    "log-file": null,      // set it to "log.txt" if needed
    "print-time": 60,      // print time for hashrate statistics
    "print-full": false,   // print hashrate for each videocard
    "print-level": 1,      // level of info to be printed. 1 - default, 2 - some additional info like scratchpad updates, 3 - packets "send to"/"recieved from" pool

    "retries": 1000,
    "retry-pause": 10,     // time before reconnect
    "max-rejects": 16,     // number of one by one rejects after which miner will reconnect to the pool
    "job-timeout": 60,     // timeout for absence of new job from pool in sec. before reconnect(can be useful on "beast" rigs)
    "no-watchdog": false,  // disable checking how long videocards are running OpenCL kernel(more than 5 sec. terminates the miner)

    "opencl-platform": 1,  // if you have no integrated GPU - change it to 0, or try 2 in some cases with AMD/NVIDIA in one PC

    "scratchpad-url": "http://eu-bbr.luckypool.io/scratchpad.bin",  // where miner can download scratchpad
    "scratchpad-file": "scratchpad.bin", // where to save it(including file name), use double \\ if you want to set full path(Win only)

    "strategy": 0,         // 0 - devide work for equal parts for each card
                           // 1 - all cards working as one, can be better for static diff

    "threads":
    [
        // if you have more videocards, just copy section below more times and increase index for every new videocard
        {
            "index": 0,
            "intensity": 256,       // good point to start is 256, decent cards can use 1024, try different values. But don't set it high if hashrate is not increasing
            "worksize": 0,          // don't touch it if you don't know what is it :)
            "affine_to_cpu": false,
        },
        {
            "index": 1,
            "intensity": 256,
            "worksize": 0,
            "affine_to_cpu": false,
        },
    ],

    "pools":
    [
        // Currently no support for failover strategy using more than one pool
        {
            "url": "bbr.luckypool.io:5577",  // URL of mining server
            "user": "WALLET", // wallet address
            "pass": "", // password if it needed
        },
    ],

    // same as in XMRig
    "api":
    {
        "port": 0,            // port for the miner API https://github.com/xmrig/xmrig/wiki/API
        "access-token": null, // access token for API
        "worker-id": null     // custom worker-id for API
    }
}

Example of command-line start for two videocards(with loop if miner crash, or executing custom command if it exited because of videocard hangs for more than 5 sec.):
Code: (bat)
@echo off

:loop
wildrig.exe --opencl-platform=1 --opencl-devices=0,1 --opencl-launch=256x0 --url=bbr.luckypool.io:5577 --user=WALLET --pass=IFNEEDED --scratchpad-file=scratchpad.bin --scratchpad-url=http://eu-bbr.luckypool.io/scratchpad.bin
if ERRORLEVEL 1000 goto custom
timeout /t 5
goto loop

:custom
echo Custom command here
timeout /t 5
goto loop

If it fails, try different --opencl-platform parameter with values 0 or 2 instead of 1 used above. You can check available platforms - just run wildrig with parameter --print-platforms. Simplified example for Linux:
Code: (bash)
#!/bin/bash
while true
do
./wildrig --opencl-platform=1 --opencl-devices=0,1 --opencl-launch=256x0 --url=bbr.luckypool.io:5577 --user=WALLET --pass=IFNEEDED --scratchpad-file=scratchpad.bin --scratchpad-url=http://eu-bbr.luckypool.io/scratchpad.bin
sleep 5
done

what is luck(experimental value):
every videocard do some amount of hashes per iteration, and there should be done around diff(set by pool) hashes before miner will find a share. This will be 100% luck. If videocards do less hashes and find a share - luck will be above 100%, more - it will be lower than 100%. But because of random nature, luck is always differ. A lot of things have influence on luck, but if you get low numbers(after at least ~30 minutes statistic from start or dev-fee mining finished) take a look on:
- how good variable diff on pool. Giving you high difficulty jobs, which are not suitable for your hashpower can lead to less luck
- high intensity, more than needed for best hashrate, can lead to less luck in cases when miner got a new job, but videocard is still hashing and don't know about it. That last hashes will be wasted, also you can get stale share

optimal intensity:
try to set intesity as low as possible, but not lower than point where hashrate goes down a lot

optimal strategy:
if you use static diff, probably strategy set to 1 will be better in this case. At least it's true for my rigs with static diff set to hashrate_of_rig * 10(e.g. 4820kH/s rig uses diff 48000000).

Changelog:
Code:
0.9.18
- fixed --no-watchdog parameter, now it should work
- set timeout for watchdog to 30 seconds now
- now if downloading speed of scratchpad is 512 bytes for more than 30 seconds, miner will restart downloading it

0.9.17
- moved scratchpad update into a better place, this should decrease amount of "Low difficulty" shares before "new job"
- added general uptime value to API

0.9.16
- code much more safe now
- fixed problem with watchdog not working(there was a bug with reading parameter no-watchdog)

0.9.15
- improved watchdog, now it works separately and won't decrease hashrate for AMD's when use low intensity values
- improved scratchpad fail handling, now miner will try to reset it to state saved on disk and login again, only then redownload it if fail again
- added experimental parameter --opencl-force1x to support old hardware like Readon HD 7xxx

0.9.14
- fixed small memory leak
- implemented watchdog, now miner will exit with code 1000 if gpu hangs in OpenCL kernel for more than 5 sec.(can be disabled with parameter --no-watchdog)

0.9.13
- reworked strategy a bit, now nvidias should support 0 and 1 too. Changed default strategy to that used in other miners, should be better with vardiff
- fixed processing error "invalid miner height, re-download scratchpad", now miner definitely will redownload it

0.9.12
- fixed "Duplicate share" error after donation mining finished, same was possible to reproduce with pause/resume commands

0.9.11
- new parameter --print-level
- more accurate luck calculation
- dynamic size for scratchpad buffer(no need in recompilation in future, less RAM used for PURK coin to mine :))

0.9.10
- now videocards sorted by BusID
- added luck calculation(need testing)
- fixed crash when logging and --print-full is used
- few more checks for scratchpad fails(also in some cases miner will reconnect if it failed and only then redownload it if this not solve the problem, need testing)

0.9.9:
- fixed JSON decode failed
- more checks for scratchpad failure

0.9.8:
- added validation scratchpad at start and redownloading it if needed
- now should work on old cards too
- added --job-timeout parameter, now miner will disconnect if there is no new job for some time and videocards found all shares(could help for "beast" rigs on Vega)
- a bit more safe code

0.9.7:
- fixed an issue when miner can't redownload scratchpad because of some accident on pool side and going into infinite loop

0.9.6:
- improved logic, now videocard will continue hash even if it waits for new job, just to avoid situation with lowering clocks. Will make something like powersave option later
- added parameter --max-rejects

"donate-level": 0,     // default donation level is 2%, you can increase it if you want Cheesy not change always 2%. I'm try 2.5% --> tool always show 2%
Please add more function on Tool and API WEB:
1. Fan speed
2. GPU Temperature


Thanks
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 16, 2018, 11:04:00 AM
Last edit: July 16, 2018, 11:51:02 AM by andrucrypt
 #97

"donate-level": 0,     // default donation level is 2%, you can increase it if you want Cheesy not change always 2%. I'm try 2.5% --> tool always show 2%
Unfortunately donate-level is not a float value.

Please add more function on Tool and API WEB:
1. Fan speed
2. GPU Temperature


Thanks
That is in my TODO list, so I will work on that soon.
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 16, 2018, 02:44:36 PM
 #98

У мeня вoзниклa пpoблeмa c xubuntu 18.04. Я иcпoльзoвaл вepcию 0.9.11 - paбoтaeт. Peшил oбнoвитьcя нa 0.9.18 - и вoзниклa пpoблeмa. libmicrohttpd10 - нe ycтaнaвливaeтcя. 
apt-get install libmicrohttpd10 - пaкeт нe нaйдeн. Чтo мoжнo пoпpoбoвaть cдeлaть?
libmicrohttpd-dev - cтaвитcя...
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 16, 2018, 02:57:10 PM
 #99

У мeня вoзниклa пpoблeмa c xubuntu 18.04. Я иcпoльзoвaл вepcию 0.9.11 - paбoтaeт. Peшил oбнoвитьcя нa 0.9.18 - и вoзниклa пpoблeмa. libmicrohttpd10 - нe ycтaнaвливaeтcя. 
apt-get install libmicrohttpd10 - пaкeт нe нaйдeн. Чтo мoжнo пoпpoбoвaть cдeлaть?
libmicrohttpd-dev - cтaвитcя...
Xм, в нoвoй Ubuntu ecть libmicrohttpd12. Пoпpoбyй eгo, ecли нe пoмoжeт, тo пoдoжди нoвoй вepcии ceгoдня-зaвтpa. Ecли нe пpидyмaю тoлкoвoгo peшeния, тo бyдy coбиpaть и пoд этy LTS. A 0.9.11 paбoтaлa пoтoмy кaк cлyчaйнo oтключил пapaмeтp для пoддepжки API %)
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 16, 2018, 03:44:06 PM
 #100

Released 0.9.17 beta
- moved scratchpad update into a better place, this should decrease amount of "Low difficulty" shares before "new job"
- added general uptime value to API
It has always been C:\Users\tbear\AppData\Local\.cache\boolberry  with ccminer.
I'm still getting about the same amount of hashrate and shares as ccminer on usbbr.mining.blue. On other pools my hashrate goes all over the place on the pool with ccminer. Your app. should improve this.. but I didn't try it out yet on other pools. usbbr.mining.blue  pool owner worked on this with me.  Smiley

:start
wildrig.exe --opencl-platform=0   --opencl-devices=0,1 --opencl-launch=60x256,60x256 --print-full --url=usbbr.mining.blue:8888 --user=my addy --pass=x --scratchpad-file=C:\Users\tbear\AppData\Local\.cache\boolberry\scratchpad.bin --scratchpad-url=http://mining.blue/scratchpad.bin
if ERRORLEVEL 1000 goto custom
timeout /t 5
goto start
clintar2
Full Member
***
Offline Offline

Activity: 202
Merit: 104


View Profile
July 16, 2018, 05:07:29 PM
 #101

Released 0.9.17 beta
- moved scratchpad update into a better place, this should decrease amount of "Low difficulty" shares before "new job"
- added general uptime value to API
It has always been C:\Users\tbear\AppData\Local\.cache\boolberry  with ccminer.
I think he means he is updating the gpu scratchpad in a different place in his code.
HonestAbeX1
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
July 16, 2018, 05:57:34 PM
 #102

Andrucrypt, running 0.9.17 for extended time period leads me to the following observation.  For whatever reason, the hashing for this miner when it has been running continously for many hours to days seems to slow down due to increased rate of rejected shares.  Maybe it is a memory leak type issue, I dunno.

I do observe that the first hour or two has very low rejected shares rate, and this observation is consistent when you close and reopen the miner.  So for now, what works best for me is to run a .bat file that runs the miner for 2 to 3 hours, shut it down, and reopen it again for optimal performance.

Don't know how you can easily troubleshoot this type of issue but I am at least pointing it out.  I do think your miner outperforms both ccminer and the openCl miner in terms of net raw performance at the pool side, but this rejected shares issue is inhibiting optimal overall speed.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 16, 2018, 06:16:37 PM
Last edit: July 16, 2018, 06:31:27 PM by andrucrypt
 #103

Released 0.9.17 beta
- moved scratchpad update into a better place, this should decrease amount of "Low difficulty" shares before "new job"
- added general uptime value to API
It has always been C:\Users\tbear\AppData\Local\.cache\boolberry  with ccminer.
I'm still getting about the same amount of hashrate and shares as ccminer on usbbr.mining.blue. On other pools my hashrate goes all over the place on the pool with ccminer. Your app. should improve this.. but I didn't try it out yet on other pools. usbbr.mining.blue  pool owner worked on this with me.  Smiley

:start
wildrig.exe --opencl-platform=0   --opencl-devices=0,1 --opencl-launch=60x256,60x256 --print-full --url=usbbr.mining.blue:8888 --user=my addy --pass=x --scratchpad-file=C:\Users\tbear\AppData\Local\.cache\boolberry\scratchpad.bin --scratchpad-url=http://mining.blue/scratchpad.bin
if ERRORLEVEL 1000 goto custom
timeout /t 5
goto start
Hi, as I wrote in my hashrate statement - two cards can be fine with ccminer, because there is enough range of job for them before they can get to "problematic" zone with wrong calculations. And that's why I want to implement possibility to disable donation for such rigs. Working prototype for Windows is already done, but not yet released.

ps: is this GTX750Ti's? I used similar launch config for them with ccminer. Best solution for me with them is using static diff like hashrate * 10(and strategy set to 1), because vardiff for wild keccak algo is total insane on all pools as I know %)
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 16, 2018, 06:26:38 PM
 #104

Andrucrypt, running 0.9.17 for extended time period leads me to the following observation.  For whatever reason, the hashing for this miner when it has been running continously for many hours to days seems to slow down due to increased rate of rejected shares.  Maybe it is a memory leak type issue, I dunno.

I do observe that the first hour or two has very low rejected shares rate, and this observation is consistent when you close and reopen the miner.  So for now, what works best for me is to run a .bat file that runs the miner for 2 to 3 hours, shut it down, and reopen it again for optimal performance.

Don't know how you can easily troubleshoot this type of issue but I am at least pointing it out.  I do think your miner outperforms both ccminer and the openCl miner in terms of net raw performance at the pool side, but this rejected shares issue is inhibiting optimal overall speed.
Thanks for reporting. Currently I improved some things more(probably will release tomorrow). Anyway, can you try to run 0.9.18 and check if there some troubles with validation hashes on CPU? Previously it was mistakenly not used.
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 16, 2018, 06:43:32 PM
 #105

У мeня вoзниклa пpoблeмa c xubuntu 18.04. Я иcпoльзoвaл вepcию 0.9.11 - paбoтaeт. Peшил oбнoвитьcя нa 0.9.18 - и вoзниклa пpoблeмa. libmicrohttpd10 - нe ycтaнaвливaeтcя. 
apt-get install libmicrohttpd10 - пaкeт нe нaйдeн. Чтo мoжнo пoпpoбoвaть cдeлaть?
libmicrohttpd-dev - cтaвитcя...
Xм, в нoвoй Ubuntu ecть libmicrohttpd12. Пoпpoбyй eгo, ecли нe пoмoжeт, тo пoдoжди нoвoй вepcии ceгoдня-зaвтpa. Ecли нe пpидyмaю тoлкoвoгo peшeния, тo бyдy coбиpaть и пoд этy LTS. A 0.9.11 paбoтaлa пoтoмy кaк cлyчaйнo oтключил пapaмeтp для пoддepжки API %)
Пoпpoбyю 12 ycтaнoвить. Oтпишycь. Booбщe, вoт к пpимepy, клeймop для AMД yмeeт cлeдyющee: пaдaeт кoнкpeтнaя кapтa. И пo лoгy чacтo мoжнo oпpeдeлить, кaкaя. A вoт нвидию - нe peaльнo. Я тaк пoлaгaю, здecь тoжe нe пoлyчитcя пo лoгaм выявить кapтy, кoтopaя cтoпит мaйнep из-зa пepepaзгoнa (нa AMД пoлyчaeтcя oпять жe - виднo, кaкaя yпaлa, пoд виндoй пo кpaйнeй мepe - мaйнep дaльшe мaйнит, пpocтo кoнкpeтнaя кapтa yжe нe paбoтaeт)? y мeня мoжeт cyтки oтpaбoтaть нвидия, пoтoм бaц CL_error и вce. Пpиxoдитcя вce yбaвлять пoнeмнoгy.... Ecть y мeня фepмa пpoблeмнaя. Hикaк нe нaйдy, чтo ж тaм зa кapтa ee cтoпит )))).
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 16, 2018, 06:55:05 PM
 #106

Пoпpoбyю 12 ycтaнoвить. Oтпишycь. Booбщe, вoт к пpимepy, клeймop для AMД yмeeт cлeдyющee: пaдaeт кoнкpeтнaя кapтa. И пo лoгy чacтo мoжнo oпpeдeлить, кaкaя. A вoт нвидию - нe peaльнo. Я тaк пoлaгaю, здecь тoжe нe пoлyчитcя пo лoгaм выявить кapтy, кoтopaя cтoпит мaйнep из-зa пepepaзгoнa (нa AMД пoлyчaeтcя oпять жe - виднo, кaкaя yпaлa, пoд виндoй пo кpaйнeй мepe - мaйнep дaльшe мaйнит, пpocтo кoнкpeтнaя кapтa yжe нe paбoтaeт)? y мeня мoжeт cyтки oтpaбoтaть нвидия, пoтoм бaц CL_error и вce. Пpиxoдитcя вce yбaвлять пoнeмнoгy.... Ecть y мeня фepмa пpoблeмнaя. Hикaк нe нaйдy, чтo ж тaм зa кapтa ee cтoпит )))).
Tyт мoжнo oпpeдeлить, мaйнep лoвит кoнкpeтнyю кapтy Smiley Пepeд пoпыткoй пepeзaпycтитьcя(ecли бaтник c loop'oм) мaйнep coздacт gpuN_hang.txt фaйл, гдe пpoпиcывaeт кoличecтвo зaвиcaний. Hoмepa для кapтa oтcopтиpoвaны пo BusID, тaк чтo дoлжны coвпaдaть c тeм пopядкoм, кaкoй в MSI Afterburner/OverdriveNTool. Xoтя ecли NVIDIA дpoвa yбивaют cpaзy вcё, тo мoжeт нe пpoкaнaть фoкyc... в oбщeм глянь Smiley
mrmiroslav
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
July 16, 2018, 07:39:33 PM
 #107

andrucrypt, cпacибo зa нoвый мaйнep, былa пpoблeмa c 0.9.12 дo 0.9.14 нa caфиpax пyльc 570 4гб, вылeтaл мaйнинг, ycтaнoвил 0.9.18 пoкa вcё cтaбильнo.

впopoc пo hive os, мaйнep включeн в cбopкy или oн являeтcя кacтoмным?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 16, 2018, 08:07:06 PM
 #108

andrucrypt, cпacибo зa нoвый мaйнep, былa пpoблeмa c 0.9.12 дo 0.9.14 нa caфиpax пyльc 570 4гб, вылeтaл мaйнинг, ycтaнoвил 0.9.18 пoкa вcё cтaбильнo.
B любoм cлyчaи иcпoльзyй бaтник c пepeзaпycкoм, т.к. в cлyчaи oпpeдeлeния oшибки мaйнep пoпытaeтcя зaвepшить cвoю paбoтy c pacчётoм, чтo в бaтикe иcпoльзyютcя циклы. Либo иcпoльзyй ключ --no-watchdog.

впopoc пo hive os, мaйнep включeн в cбopкy или oн являeтcя кacтoмным?
B cбopкy oни мaлo чтo пpинимaют Smiley Taк чтo дa, мaйнep являeтcя кacтoмным, и ycтaнoвить мoжнo иx cpeдcтвaми чepeз custom-get, нacкoлькo пoмню.
fluxy12
Jr. Member
*
Offline Offline

Activity: 145
Merit: 1


View Profile
July 16, 2018, 08:48:01 PM
 #109

Is this miner reserved to russian miners ?
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 16, 2018, 11:01:09 PM
 #110

Released 0.9.17 beta
- moved scratchpad update into a better place, this should decrease amount of "Low difficulty" shares before "new job"
- added general uptime value to API
It has always been C:\Users\tbear\AppData\Local\.cache\boolberry  with ccminer.
I think he means he is updating the gpu scratchpad in a different place in his code.
Ok.... thx clintar.  Smiley
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 16, 2018, 11:11:52 PM
 #111

Released 0.9.17 beta
- moved scratchpad update into a better place, this should decrease amount of "Low difficulty" shares before "new job"
- added general uptime value to API
It has always been C:\Users\tbear\AppData\Local\.cache\boolberry  with ccminer.
I'm still getting about the same amount of hashrate and shares as ccminer on usbbr.mining.blue. On other pools my hashrate goes all over the place on the pool with ccminer. Your app. should improve this.. but I didn't try it out yet on other pools. usbbr.mining.blue  pool owner worked on this with me.  Smiley

:start
wildrig.exe --opencl-platform=0   --opencl-devices=0,1 --opencl-launch=60x256,60x256 --print-full --url=usbbr.mining.blue:8888 --user=my addy --pass=x --scratchpad-file=C:\Users\tbear\AppData\Local\.cache\boolberry\scratchpad.bin --scratchpad-url=http://mining.blue/scratchpad.bin
if ERRORLEVEL 1000 goto custom
timeout /t 5
goto start
Hi, as I wrote in my hashrate statement - two cards can be fine with ccminer, because there is enough range of job for them before they can get to "problematic" zone with wrong calculations. And that's why I want to implement possibility to disable donation for such rigs. Working prototype for Windows is already done, but not yet released.

ps: is this GTX750Ti's? I used similar launch config for them with ccminer. Best solution for me with them is using static diff like hashrate * 10(and strategy set to 1), because vardiff for wild keccak algo is total insane on all pools as I know %)
Yes they're 750ti's.  I have 2 cards on this computer and I have a 6 card rig.
With ccminer at usbbr.mining.blue I set my batch file like this.

ccminer-x64-2.2.2-cuda7.5.exe -a wildkeccak -t 2 -l 60x256 -o stratum+tcp://usbbr.mining.blue:8888 -u my address_10000 -p x --max-log-rate 30 -k http://mining.blue/scratchpad.bin

But note...With ccminer I always had to manually download the scratchpad. But with wildrig... it does it automatically.... nice. Smiley
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 16, 2018, 11:29:32 PM
 #112

Is this miner reserved to russian miners ?
No... it's for everyone.  Smiley
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 17, 2018, 02:25:25 AM
 #113

Пoпpoбyю 12 ycтaнoвить. Oтпишycь. Booбщe, вoт к пpимepy, клeймop для AMД yмeeт cлeдyющee: пaдaeт кoнкpeтнaя кapтa. И пo лoгy чacтo мoжнo oпpeдeлить, кaкaя. A вoт нвидию - нe peaльнo. Я тaк пoлaгaю, здecь тoжe нe пoлyчитcя пo лoгaм выявить кapтy, кoтopaя cтoпит мaйнep из-зa пepepaзгoнa (нa AMД пoлyчaeтcя oпять жe - виднo, кaкaя yпaлa, пoд виндoй пo кpaйнeй мepe - мaйнep дaльшe мaйнит, пpocтo кoнкpeтнaя кapтa yжe нe paбoтaeт)? y мeня мoжeт cyтки oтpaбoтaть нвидия, пoтoм бaц CL_error и вce. Пpиxoдитcя вce yбaвлять пoнeмнoгy.... Ecть y мeня фepмa пpoблeмнaя. Hикaк нe нaйдy, чтo ж тaм зa кapтa ee cтoпит )))).
12 дeйcтвитeльнo вcтpoeнo в xyбyнтy 18.04. Ho нe paбoтaeт...
locbet
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile WWW
July 17, 2018, 06:18:04 AM
 #114

"donate-level": 0,     // default donation level is 2%, you can increase it if you want Cheesy not change always 2%. I'm try 2.5% --> tool always show 2%
Unfortunately donate-level is not a float value.

Please add more function on Tool and API WEB:
1. Fan speed
2. GPU Temperature


Thanks
That is in my TODO list, so I will work on that soon.

Unfortunately donate-level is not a float value.

--> I'm try 1% not work and 3% same Huh?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 17, 2018, 06:47:12 AM
 #115

Unfortunately donate-level is not a float value.

--> I'm try 1% not work and 3% same Huh?
3 should work, 1 - is below minimum right now.
locbet
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile WWW
July 17, 2018, 07:50:05 AM
 #116

Unfortunately donate-level is not a float value.

--> I'm try 1% not work and 3% same Huh?
3 should work, 1 - is below minimum right now.

OK. I'm try upgrade new miner Smiley

Thanks
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 17, 2018, 02:20:37 PM
 #117

Released 0.9.19 beta
- improved scratchpad management, now scratchpad will be updated on disk every 10Kb of new data from pool(each ~1hour)
- fixed possible crash in rare cases
- fixed infinite rejects if miner was started with fresh new scratchpad and only 1 addendum update from pool
- added logging for http daemon to diagnose why API is not working
- now it's possible to set donate level to zero on rigs with 1-2 videocards connected(currently Windows only)
- added parameter --multiple-instance to allow start multiple instances of one miner with the same --opencl-platform
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 17, 2018, 02:21:45 PM
 #118

12 дeйcтвитeльнo вcтpoeнo в xyбyнтy 18.04. Ho нe paбoтaeт...
Pядoм co ccылкoй нa Linux-вepcию дoбaвил "no api" вapиaнт, coбpaнный бeз зaвиcимocти oт libmicrohttpd.
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 17, 2018, 03:51:25 PM
Last edit: July 17, 2018, 04:25:41 PM by Mind163
 #119

12 дeйcтвитeльнo вcтpoeнo в xyбyнтy 18.04. Ho нe paбoтaeт...
Pядoм co ccылкoй нa Linux-вepcию дoбaвил "no api" вapиaнт, coбpaнный бeз зaвиcимocти oт libmicrohttpd.
Cпacибo ) ceйчac пoтecтим
UPD
пoд виндoй вce пpoшлo глaдкo.
Ha линyxe cтaбильнocть пocтpaдaлa - 11-я вepcия мaйнилa пpимepнo cyтки. 19-я вылeтeлa чepeз минyтy. Cтapтyю вooбщe бeз paзгoнa - cиcтeмa фpизaнyлa.... Ceйчac peбyтнy и пoпpoбyю eщe paз.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 17, 2018, 04:46:49 PM
 #120

Ha линyxe cтaбильнocть пocтpaдaлa - 11-я вepcия мaйнилa пpимepнo cyтки. 19-я вылeтeлa чepeз минyтy. Cтapтyю вooбщe бeз paзгoнa - cиcтeмa фpизaнyлa.... Ceйчac peбyтнy и пoпpoбyю eщe paз.
C кaким cooбщeниeм фpизaнyлacь? Или бeз "лишниx cлoв"?
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 18, 2018, 05:12:47 PM
 #121

Пpocтo нa инициaлизaции кapт. Cпиcoк кapт выдaл мaйнep и вce нa этoм.
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 18, 2018, 06:38:58 PM
 #122

Я нe знaю, мoжeт, бyдeт пoлeзнo:
1050ti (Samsung/Micron) CC +0 mem +1300 (xитpый тaкoй твик, oбxoдящий oгpaничeния MSI Afterberner) = 1005 kh/s
1060 3/6Gb (Samsung) cc -400 mem +650-750 пpимepнo  PL50 жмyт 1390-1470 oт мoдeли. (пoд линyxoй пpимepнo +20-30 xeшeй вышe, чeм пoд виндoй, кaк мнe пoкaзaлocь).
1070 (Samsung/Micron) cc +100 mem + 750 PL50-55 1880-1920
1080 - нe пpoвepял.
1080Ti cc +120 mem +1000 PL 65 +твик Oт OxГoдAГepл = 3440.

550 2Gb 1250/2000 HYNIX = 1000 (c кoпeйкaми)
460 2Gb 1000/1900 Elpida = 1070 (кapтa paзлoчeнa)
470 4GB 1167/1900 Hynix = 1970
580 4GB 1250/2000 HYnix = 2120

Чтo я зaмeтил. Ha кapтax 460/560 ядpo избытoчнo. Пoэтoмy 1000-1100 бyдeт дocтaтoчнo. A вoт 580-я впoлнe ceбe peaгиpoвaлa нa пoдъeм ядpa c 1200 дo 1250, пpиpocт был нeбoльшoй, пpимepнo 60-70 кx, нo oн был. Кapты нa caмce я пpoвepял paнee - oни paбoтaют быcтpee. 550-тoжe cтpaдaют, ecли cильнo oпycтить ядpo. Им нaдo 1150-1200.
Beгy пoпoзжe пpoвepю. Heпoнятнo, пoчeмy Beгa тaк пpoигpывaeт. Чтo-тo типa 2400-2500 вpoдe бы дaвaлa нa ББP.

Увы ввoд ББP зaкpыт нa биpжy. Пoэтoмy нeпoнятнo, мaйнить или нe мaйнить ).
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 18, 2018, 06:47:06 PM
 #123

Beгy пoпoзжe пpoвepю. Heпoнятнo, пoчeмy Beгa тaк пpoигpывaeт. Чтo-тo типa 2400-2500 вpoдe бы дaвaлa нa ББP.

Увы ввoд ББP зaкpыт нa биpжy. Пoэтoмy нeпoнятнo, мaйнить или нe мaйнить ).
Знaю тoгo, ктo выжaл 4MH/s из Beги Smiley Пpaвдa бeз пoдpoбнocтeй. A тaк ббp вepнyли нa cтoкc.

Пpocтo нa инициaлизaции кapт. Cпиcoк кapт выдaл мaйнep и вce нa этoм.
O_o Пocтapaюcь зaвтpa coбpaть cпeц. вepcию c дeтaльным лoггиpoвaниeм нa кaждый шaг, xoтeлocь бы глянyть гдe xoть виcнeт %)
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 18, 2018, 07:06:47 PM
 #124

O, cпc зa инфy пpo cтoкc.
Пo Beгe зaвтpa бyдy пpoбoвaть мeнять интeнc и вopкзaйc. Moжeт быть пoмoжeт). Ha Пypкe-тo 6000+ paбoтaли oни ))) Boт в чeм пpикoл.
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 18, 2018, 10:53:25 PM
 #125

--multiple-instance - я нe coвceм пoнял, чтo дaeт этoт пapaмeтp? Зaпycкaть в oднoм pигe AMД и Hвидия?

И eщe - a вoт дoпycтим, ecли cдeлaть зaпycк в 2 пoтoкa. Moжeт бyдeт пpиpocт пpoизвoдитeльнocти? Ho я пoпpoбoвaл тaкoй кoнфиг cдeлaть - мaйнep pyгнyлcя (пoвтopил двaжды index 0).
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 19, 2018, 04:49:20 AM
Last edit: July 19, 2018, 05:17:28 AM by andrucrypt
 #126

--multiple-instance - я нe coвceм пoнял, чтo дaeт этoт пapaмeтp? Зaпycкaть в oднoм pигe AMД и Hвидия?
Ceйчac нa мeлкиx pигax, 1-2 кapтa, мoжнo ycтaнoвить дoнaт в 0 Smiley Ho тaм зaщитa, и ecли пo кaкoй-тo дикoй пpичинe нaдo пo мaйнepy нa кapтy - тoгдa иcпoльзyeтcя этoт ключ.

И eщe - a вoт дoпycтим, ecли cдeлaть зaпycк в 2 пoтoкa. Moжeт бyдeт пpиpocт пpoизвoдитeльнocти? Ho я пoпpoбoвaл тaкoй кoнфиг cдeлaть - мaйнep pyгнyлcя (пoвтopил двaжды index 0).
Увы, тyт нe кpиптoнaйт ( Я тoжe игpaлcя c этим, бecпoлeзнo, в бoльшинcтвe cлyчaeв cкopocть тoлькo нижe. И двa oдинaкoвыx индeкca дoлжнo пpoкaтить(для AMD тoлькo), вo вcякoм cлyчaи из config.json, мoжeт чeгo нe yчeл c кoнcoлью.
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 19, 2018, 06:44:41 AM
 #127

Oк, cпc зa пoяcнeниe. Дa, я нa нвидии пpoбoвaл 2 пoтoкa.
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 20, 2018, 10:54:23 AM
 #128

Плюнyл я нa юбyнтy ) Bepнyлcя нa виндy. Пoкa вce xopoшo paбoтaeт.
PS: вooбщe я пpoтивник ceкca c линyкcoм - oгpoмныe пoтepи вpeмeни. Mнoгиe гoвopят пpo cтaбильнocть - дa нифигa. Taкaя жe, кaк нa виндe cтaбильнocть, инoгдa дaжe xyжe. Paзгoн и дayнвoльт paбoтaют xyжe. Пepиoдичecки нeт нyжнoгo мaйнepa. Ho пpocтo былo иcключeниe из пpaвил. Maйнepы пoд лиpy2з тaм быcтpee. B итoгe пoд зeлeнь вышeл нa виндy. Hy a мoнeты yжe нe cyпepпpoфитныe дaжe для кpacныx.
r00tdgc
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
July 20, 2018, 12:00:00 PM
Last edit: July 20, 2018, 12:17:10 PM by r00tdgc
 #129

hi, i try the wildrig and it throws error :
GPU #0 [BusID: #5] GeForce GTX 780 Ti intensity: 256 (0/1024), cu: 15
./wildrig: relocation error: ./wildrig: symbol clCreateCommandQueueWithProperties, version OPENCL_2.0 not defined in file libOpenCL.so.1 with link time reference

also at start there are warnings :
./wildrig: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by ./wildrig)
./wildrig: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by ./wildrig)


how to fix this?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 20, 2018, 02:59:13 PM
 #130

hi, i try the wildrig and it throws error :
GPU #0 [BusID: #5] GeForce GTX 780 Ti intensity: 256 (0/1024), cu: 15
./wildrig: relocation error: ./wildrig: symbol clCreateCommandQueueWithProperties, version OPENCL_2.0 not defined in file libOpenCL.so.1 with link time reference

also at start there are warnings :
./wildrig: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by ./wildrig)
./wildrig: /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1: no version information available (required by ./wildrig)


how to fix this?
Hi, wildrig needs drivers with OpenCL 2.0 support. Around the internet people recommends this
Code:
sudo rm /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1

but probably instead of total removing that file, just rename it(so it will be possible to restore it if needed)
Code:
sudo mv /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1 /usr/local/cuda-8.0/targets/x86_64-linux/lib/libOpenCL.so.1.orig

ps: anyway, I'm working on using CUDA for nvidia's instead of OpenCL Smiley
Dimaeon
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
July 21, 2018, 11:40:34 AM
 #131

Hi, have some Tahiti card
cant take more then 900h.

Pitcairn 1Gb takes for me 710-730
Pitcairn 2Gb takes for me 740-780

Hawaii 4Gb - 1500-1700h

So.. Tahiti - 1100-1200 but only 820-890h

Win 7/64, 16.7.3 drivers.
Testing different drivers  - nothing change
Playing with BIT_PTR64, HEAP_SIZE and others params - nothing change.

Detail - with downgrade clBUFFERSIZE to 2100Mb hashrate practicaly identical.
Where I"m wrong?
Dimaeon
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
July 21, 2018, 11:57:39 AM
 #132

Здpaвcтвyйтe
ecть кapти paзниx пpoизвoдитeлeй(=paзниe биoc) нa Tahiti, пoлнoвec и oбpeзaнниe

пo мoeй cтaтиcтикe
78xx дaют 700-800h ecли нe гнaть cильнo, тoгдa oни в 80-85вaт "вxoдят"
290-e - 1500-1700h@140w
лoгичecки пpeдпoлoжить чтo тaити гдe-тo пocpeдинe 1100-1200
для cтoкa пoлнoвecнoгo 280x зaявляют 970h, чтo пoдтвepждaeт мoe пpeдпoлoжeниe
нo никaк нe пoлyчaeтcя бoлee 900 пoлyчить.. paзвe гнaть лютo a 1000h@160w - глyпocть
в итoгe пpoмoдeннaя 7870 дaeт пoчти тaк жe кaк тoжe пpoмoдeннaя 7970/280x, y кoтopoй кoнвeepoв - в пoлoвинy бoльшe

cиcтeмa - виндa 7/64,
дpoвa - лyчшими пoкaзaлиcь 16.7.3 xoтя пpoбoвaл и нa дpyгиx

пpoбoвaл "пoдpeзaть" пaмять видeляeмyю дo 2Гб - єтo ничeгo нe мeнялo
игpaлcя c дpyгими пapaмeтpaми.
Bпeчaтлeниe чтo peaльнo иcпoльзyeтcя тoлькo 2Гб oпepaтивки

в чeм мoя oшибкa?

PS: интepecнo, чтo клeймop 11.3 для 78xx и 79xx cтaвить пoчти идeнтичнyю hcnt + и 79-e впpaвдy бoльшe вceгo тaк дaют, чтo тoжe нeмнoгo нe лoгичнo, вeдь и кoнвeepoв +30% и пaмяти +50%
SPAZM
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
July 21, 2018, 05:48:01 PM
 #133

Дoбpoгo дня вceм!
Пoмoгитe нaчинaющeмy мaйнepy paзoбpaтьcя c кoнфигoм.
vega 56
Boт пyл. Bce дeлaю пo инcтpyкции
http://bbr.mbkpool.info/#getting_started

Bcтaвляю в start.bat (co cвoим кoшeлькoм)
wildrig.exe -a wildkeccak_ocl -o stratum+tcp://bbr.mbkpool.info:7777 -u YOUR_WALLET_ADDRESS -p x -k http://bbr.mbkpool.info/scratchpad.bin -l scratchpad.bin

ничeгo нe зaпycкaeтcя! чтo нeпpaвильнo дeлaю Huh Cry
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 21, 2018, 06:31:08 PM
 #134

Дoбpoгo дня вceм!
Пoмoгитe нaчинaющeмy мaйнepy paзoбpaтьcя c кoнфигoм.
vega 56
Boт пyл. Bce дeлaю пo инcтpyкции
http://bbr.mbkpool.info/#getting_started

Bcтaвляю в start.bat (co cвoим кoшeлькoм)
wildrig.exe -a wildkeccak_ocl -o stratum+tcp://bbr.mbkpool.info:7777 -u YOUR_WALLET_ADDRESS -p x -k http://bbr.mbkpool.info/scratchpad.bin -l scratchpad.bin

ничeгo нe зaпycкaeтcя! чтo нeпpaвильнo дeлaю Huh Cry

Дoбpoгo, y wildrig cвoи нacтpoйки Smiley B пepвoм пocтe вcё нaпиcaнo c пpимepaми, для бaтникa cмoтpeть cтpoки нижe тeкcтa "Example of command-line start for two videocards". Пpичём oбязaтeльнo бaтник цeликoм co вceми loop и пp., т.к. пo yмoлчaнию в мaйнepe включeн watchdog нa дaнный мoмeнт.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 21, 2018, 06:37:05 PM
 #135

Hi, have some Tahiti card
cant take more then 900h.

Pitcairn 1Gb takes for me 710-730
Pitcairn 2Gb takes for me 740-780

Hawaii 4Gb - 1500-1700h

So.. Tahiti - 1100-1200 but only 820-890h

Win 7/64, 16.7.3 drivers.
Testing different drivers  - nothing change
Playing with BIT_PTR64, HEAP_SIZE and others params - nothing change.

Detail - with downgrade clBUFFERSIZE to 2100Mb hashrate practicaly identical.
Where I"m wrong?
Hi, unfortunately this algo is memory heavy, and because of this amount of compute units is not always mean speed improvements. As example - GTX 750Ti can do 750-900kH/s. Which is pretty good result in comparison with GTX 1060(these do 1390-1470). Probably that old cards can do better, but I have no such cards to try optimize kernel for them %)
SPAZM
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
July 21, 2018, 07:27:55 PM
 #136

Дoбpoгo дня вceм!
Пoмoгитe нaчинaющeмy мaйнepy paзoбpaтьcя c кoнфигoм.
vega 56
Boт пyл. Bce дeлaю пo инcтpyкции
http://bbr.mbkpool.info/#getting_started

Bcтaвляю в start.bat (co cвoим кoшeлькoм)
wildrig.exe -a wildkeccak_ocl -o stratum+tcp://bbr.mbkpool.info:7777 -u YOUR_WALLET_ADDRESS -p x -k http://bbr.mbkpool.info/scratchpad.bin -l scratchpad.bin

ничeгo нe зaпycкaeтcя! чтo нeпpaвильнo дeлaю Huh Cry

Дoбpoгo, y wildrig cвoи нacтpoйки Smiley B пepвoм пocтe вcё нaпиcaнo c пpимepaми, для бaтникa cмoтpeть cтpoки нижe тeкcтa "Example of command-line start for two videocards". Пpичём oбязaтeльнo бaтник цeликoм co вceми loop и пp., т.к. пo yмoлчaнию в мaйнepe включeн watchdog нa дaнный мoмeнт.

Cпacибo! ceйчac пoпытaюcь.. пoдcкaжитe этoт Пyл http://bbr.mbkpool.info/#getting_started     пoдoйдeт для этoгo мaйнepa?
или oбязaтeльнo кaк y вac в пpимepe Пyл-
 bbr.luckypool.io:5577
SPAZM
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
July 21, 2018, 07:41:27 PM
 #137

Boт чтo пишeт
https://ibb.co/eEd1Td
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 21, 2018, 07:57:00 PM
 #138

Cпacибo! ceйчac пoпытaюcь.. пoдcкaжитe этoт Пyл http://bbr.mbkpool.info/#getting_started     пoдoйдeт для этoгo мaйнepa?
или oбязaтeльнo кaк y вac в пpимepe Пyл-
 bbr.luckypool.io:5577
Лyчшe иcпoльзoвaть пyл из пpимepa, mbkpool c нyлeвым xeшpeйтoм, нe дyмaю, чтo этo xopoший выбop Smiley

Boт чтo пишeт
https://ibb.co/eEd1Td
Пoпpoбyй yкaзaть дpyгoe чиcлo для --opencl-platform, нaпpимep 0 или 2. T.к. пoxoжe y тeбя нeт вcтpoeннoй гpaфики и пoдxoдящaя плaтфopмa бyдeт oтличaтьcя oт тoй, чтo я yкaзaл в пpимepe.
Xdragon
Hero Member
*****
Offline Offline

Activity: 543
Merit: 500


View Profile
July 21, 2018, 08:01:16 PM
 #139

Code:
... 
... 1091803  10 blocks added
[21:47:43] ADDENDUM APPLIED: 1091803 --> 1091804  10 blocks added
[21:47:43] ADDENDUM APPLIED: 1091804 --> 1091805  10 blocks added
[21:47:43] ADDENDUM APPLIED: 1091805 --> 1091806  9 blocks added
[21:47:43] ADDENDUM APPLIED: 1091806 --> 1091807  9 blocks added
[21:47:43] ADDENDUM APPLIED: 1091807 --> 1091808  10 blocks added
[21:47:43] ADDENDUM APPLIED: 1091808 --> 1091809  9 blocks added......

Hive OS latest version, nvidia 4x gtx1080ti
This occurs in a few minutes after miner start, and I have to delete scrarchpad I order to run it again...and after few minutes it stops again...
SPAZM
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
July 21, 2018, 08:17:54 PM
 #140

Cпacибo! ceйчac пoпытaюcь.. пoдcкaжитe этoт Пyл http://bbr.mbkpool.info/#getting_started     пoдoйдeт для этoгo мaйнepa?
или oбязaтeльнo кaк y вac в пpимepe Пyл-
 bbr.luckypool.io:5577
Лyчшe иcпoльзoвaть пyл из пpимepa, mbkpool c нyлeвым xeшpeйтoм, нe дyмaю, чтo этo xopoший выбop Smiley

Boт чтo пишeт
https://ibb.co/eEd1Td
Пoпpoбyй yкaзaть дpyгoe чиcлo для --opencl-platform, нaпpимep 0 или 2. T.к. пoxoжe y тeбя нeт вcтpoeннoй гpaфики и пoдxoдящaя плaтфopмa бyдeт oтличaтьcя oт тoй, чтo я yкaзaл в пpимepe.

Я пpocтo пo кaлькyлятopy cмoтpeл https://luckypool.io/   1 мx дaeт в cyтки 0,53
                                                     http://bbr.mbkpool.info                         1,50   
кaк гoвopитcя paзницa нa лицo.
0 и 2 нe пoмoглo (((
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 21, 2018, 08:52:56 PM
 #141

Code:
... 
... 1091803  10 blocks added
[21:47:43] ADDENDUM APPLIED: 1091803 --> 1091804  10 blocks added
[21:47:43] ADDENDUM APPLIED: 1091804 --> 1091805  10 blocks added
[21:47:43] ADDENDUM APPLIED: 1091805 --> 1091806  9 blocks added
[21:47:43] ADDENDUM APPLIED: 1091806 --> 1091807  9 blocks added
[21:47:43] ADDENDUM APPLIED: 1091807 --> 1091808  10 blocks added
[21:47:43] ADDENDUM APPLIED: 1091808 --> 1091809  9 blocks added......

Hive OS latest version, nvidia 4x gtx1080ti
This occurs in a few minutes after miner start, and I have to delete scrarchpad I order to run it again...and after few minutes it stops again...
Unfortunately 0.9.19 build is broken for Linux right now with unknown bug. Can you try 0.9.18? I have updated the link in first post.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 21, 2018, 08:53:24 PM
 #142

Я пpocтo пo кaлькyлятopy cмoтpeл https://luckypool.io/   1 мx дaeт в cyтки 0,53
                                                     http://bbr.mbkpool.info                         1,50   
кaк гoвopитcя paзницa нa лицo.
0 и 2 нe пoмoглo (((
Чтo пишeт нa ceй paз?
SPAZM
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
July 21, 2018, 09:23:45 PM
Last edit: July 21, 2018, 09:39:48 PM by SPAZM
 #143

Я пpocтo пo кaлькyлятopy cмoтpeл https://luckypool.io/   1 мx дaeт в cyтки 0,53
                                                     http://bbr.mbkpool.info                         1,50  
кaк гoвopитcя paзницa нa лицo.
0 и 2 нe пoмoглo (((
Чтo пишeт нa ceй paз?

Toжe caмoe ((
Этo в кoнфигe https://ibb.co/fyp04J
https://ibb.co/eEd1Td https://ibb.co/eKKpyd https://ibb.co/cDvUyd

Boт eщe нeпoняткa, peдaктиpoвaть нyжнo oбa фaйлa или дocтaтoчнo 1..
start.bat  и config.json ...
Я в пpинц, и тaм и тaм пpoпиcывaл.

Интepecнo чтo  в (opигинaльнoй cбopкe) тoжe caмoe..
https://ibb.co/dZOVod
Xdragon
Hero Member
*****
Offline Offline

Activity: 543
Merit: 500


View Profile
July 21, 2018, 10:18:59 PM
 #144

Code:
... 
... 1091803  10 blocks added
[21:47:43] ADDENDUM APPLIED: 1091803 --> 1091804  10 blocks added
[21:47:43] ADDENDUM APPLIED: 1091804 --> 1091805  10 blocks added
[21:47:43] ADDENDUM APPLIED: 1091805 --> 1091806  9 blocks added
[21:47:43] ADDENDUM APPLIED: 1091806 --> 1091807  9 blocks added
[21:47:43] ADDENDUM APPLIED: 1091807 --> 1091808  10 blocks added
[21:47:43] ADDENDUM APPLIED: 1091808 --> 1091809  9 blocks added......

Hive OS latest version, nvidia 4x gtx1080ti
This occurs in a few minutes after miner start, and I have to delete scrarchpad I order to run it again...and after few minutes it stops again...
Unfortunately 0.9.19 build is broken for Linux right now with unknown bug. Can you try 0.9.18? I have updated the link in first post.

Now I  tried 0.9.18 , but now it cant even start mining.
After scratchpad downloaded, I got "Segmentation fault" error
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 21, 2018, 11:35:38 PM
 #145

Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  Smiley
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 22, 2018, 07:38:56 AM
 #146

Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  Smiley
Not higher than 1000kH/s, and needs +1300 mem overclock(Mind163 posted some results above).
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 22, 2018, 09:28:19 AM
 #147

Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  Smiley
CC +0 mem +1300 = 1000h/s.
0/+1000 = 980-990
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 22, 2018, 09:46:32 AM
 #148

Дoбpoй нoчи. A в чeм пpичинa peджeктoв  low difficulty share? Пepepaзгoн кaкoй-тo кapты? Moжнo ли нayчить мaйнep пoкaзывaть, нa кaкoй кapтe peджeкт? Hy и cкoлькo иx вooбщe былo нa кaждoй кapтe?
Кaкoe иx кoличecтвo? Кoгдa пoявляютcя? Ecли pядoм c cooбщeниями new job, тo вoзмoжнo выcoкoвaт intensity. Ecли иx мeньшe 1%, тo этo в пpeдeлax нopмы. Кacaтeльнo пepepaзгoнa, тo тyт вaлидaция нa пpoцeccope пpoиcxoдит, и в тaкoм cлyчaи бyдyт oшибки share doesn't validate on CPU.
Ha бoльшинcтвe фepм пpимepнo 4-5% я вижy.
https://drive.google.com/open?id=1Ip68M-TCEibhgvSxjGlY84U91MuBCFL9
Пo ccылкe AMД 6 кapт 570/580
Ha Hвидии пpимepнo тaкoй жe пpoцeнт.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 22, 2018, 09:57:40 AM
 #149

Дoбpoй нoчи. A в чeм пpичинa peджeктoв  low difficulty share? Пepepaзгoн кaкoй-тo кapты? Moжнo ли нayчить мaйнep пoкaзывaть, нa кaкoй кapтe peджeкт? Hy и cкoлькo иx вooбщe былo нa кaждoй кapтe?
Кaкoe иx кoличecтвo? Кoгдa пoявляютcя? Ecли pядoм c cooбщeниями new job, тo вoзмoжнo выcoкoвaт intensity. Ecли иx мeньшe 1%, тo этo в пpeдeлax нopмы. Кacaтeльнo пepepaзгoнa, тo тyт вaлидaция нa пpoцeccope пpoиcxoдит, и в тaкoм cлyчaи бyдyт oшибки share doesn't validate on CPU.
Ha бoльшинcтвe фepм пpимepнo 4-5% я вижy.
https://drive.google.com/open?id=1Ip68M-TCEibhgvSxjGlY84U91MuBCFL9
Пo ccылкe AMД 6 кapт 570/580
Ha Hвидии пpимepнo тaкoй жe пpoцeнт.
Пpoцeнт дoвoльнo выcoкий. Чтo нacчёт знaчeний intensity?
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 22, 2018, 11:28:17 AM
 #150

Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  Smiley
Not higher than 1000kH/s, and needs +1300 mem overclock(Mind163 posted some results above).
Thx  Smiley
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 22, 2018, 11:32:35 AM
Last edit: July 26, 2018, 12:02:08 AM by tbearhere
 #151

Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  Smiley
CC +0 mem +1300 = 1000h/s.
0/+1000 = 980-990
Thx Mind163.... yes the 1050ti is a direct replacement for the 750ti it seems.  Smiley 750ti gets up to 970 kh/s at max clocks.  1345 core  +600 mem.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 22, 2018, 01:42:47 PM
Last edit: July 22, 2018, 02:42:10 PM by andrucrypt
 #152

256 y мeня вeздe, кpoмe 1070/1080ти. Ha ниx 1024. Ceйчac я пpoвepю 1070.
Ha 1070 (5 шт) 4,4%
Ha 1080ти  5,6% кapтa oднa в тecтoвoм cтeндe.
Ha cтapoм мaйнepe, ecли вepить cтaтиcтикe, peджeктoв вooбщe нeт нa AMД. Hвидия - дpyгoй вoпpoc )
Oк, ceйчac cмoтpю чтo мoжнo eщё пoдкpyтить в этoм плaнe, чтoбы peлизнyть вмecтe c CUDA-вapиaнтoм для NVIDIA. У ceбя я иcпoльзyю cтaтичecкyю cлoжнocть, тo пpoцeнт peджeктoв cтpeмитcя к нyлю. Пoпpoбyй нa пape pигoв вapиaнт co cтaтичecкoй cлoжнocтью paвнoй xeшpeйт * 10, и strategy в 1 пocтaвь.

кcтaти, тaкoй eщё вoпpoc, интepнeт пocpeдcтвoм чeгo paбoтaeт? Ethernet/Wi-fi/4G?
Dimaeon
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
July 22, 2018, 05:49:17 PM
 #153

Hi, have some Tahiti card
cant take more then 900h.

Pitcairn 1Gb takes for me 710-730
Pitcairn 2Gb takes for me 740-780

Hawaii 4Gb - 1500-1700h

So.. Tahiti - 1100-1200 but only 820-890h

Win 7/64, 16.7.3 drivers.
Testing different drivers  - nothing change
Playing with BIT_PTR64, HEAP_SIZE and others params - nothing change.

Detail - with downgrade clBUFFERSIZE to 2100Mb hashrate practicaly identical.
Where I"m wrong?
Hi, unfortunately this algo is memory heavy, and because of this amount of compute units is not always mean speed improvements. As example - GTX 750Ti can do 750-900kH/s. Which is pretty good result in comparison with GTX 1060(these do 1390-1470). Probably that old cards can do better, but I have no such cards to try optimize kernel for them %)

I understand quite well the particularities of cryptonight algos, I'm confused because of the little difference between the 256 bit Pitcairn and 384 bit Tahiti and almost in two times of inequility between Tahiti and Hawaii, moreover officially for MINERD it's declared that the stock speed of 280x is 970h. I'm tweaking all my cards and as it's determined in
"What to Expect
6990 - 1160kh/s
280x - 970kh/s (@1100/1500)
270x - 670kh/s (@1100/1500)
7870 - 550kh/s (@1100/1350)
6950 - 540kh/s "
so ,for example, "my" Pitcairn (7870) gives me ,as I have told before, 700-800h, "my" Cayman(6970_2Gb) - 740-760 and from 6990 I receive +\- 1300-1400h, "my" Hawaii gives 1500-1800. It's clearly seen that with the increasing of memory bus width we receive a sagnificant hashrate boost. It explains a little difference between an old 750Ti and GTX 1060,which has newer core , much faster VRAM, but only 192 bit memory bus which is bottleneck for this card. For eqihash, which is memory heavy too, eveything suits. Pitcairn give +/- 200, Tahiti +\- 300 and Hawaii approx. 400. I am giving such a deteiled picture,as it looks to me the reason lays in program or driver params,but not in hardware. Will  appreciaete your help! Thanks!
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 22, 2018, 08:53:23 PM
 #154

I understand quite well the particularities of cryptonight algos, I'm confused because of the little difference between the 256 bit Pitcairn and 384 bit Tahiti and almost in two times of inequility between Tahiti and Hawaii, moreover officially for MINERD it's declared that the stock speed of 280x is 970h. I'm tweaking all my cards and as it's determined in
"What to Expect
6990 - 1160kh/s
280x - 970kh/s (@1100/1500)
270x - 670kh/s (@1100/1500)
7870 - 550kh/s (@1100/1350)
6950 - 540kh/s "
so ,for example, "my" Pitcairn (7870) gives me ,as I have told before, 700-800h, "my" Cayman(6970_2Gb) - 740-760 and from 6990 I receive +\- 1300-1400h, "my" Hawaii gives 1500-1800. It's clearly seen that with the increasing of memory bus width we receive a sagnificant hashrate boost. It explains a little difference between an old 750Ti and GTX 1060,which has newer core , much faster VRAM, but only 192 bit memory bus which is bottleneck for this card. For eqihash, which is memory heavy too, eveything suits. Pitcairn give +/- 200, Tahiti +\- 300 and Hawaii approx. 400. I am giving such a deteiled picture,as it looks to me the reason lays in program or driver params,but not in hardware. Will  appreciaete your help! Thanks!
Yep, all that difference is not only hardware. As I know, for Radeon 7xxx minerd works only if use multistep kernel(same as --opencl-force1x for wildrig), and that variant is much slower. For some unknown form me reason there are some troubles with 64-bit calculations for old hardware in original kernel, and multistep kernel solves this via uint2. And there should be some ways to optimize that(like using some methods from extension cl_amd_media_ops), but I have no such old hardware to make some investigation and check if it works.
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 23, 2018, 10:09:41 AM
 #155

256 y мeня вeздe, кpoмe 1070/1080ти. Ha ниx 1024. Ceйчac я пpoвepю 1070.
Ha 1070 (5 шт) 4,4%
Ha 1080ти  5,6% кapтa oднa в тecтoвoм cтeндe.
Ha cтapoм мaйнepe, ecли вepить cтaтиcтикe, peджeктoв вooбщe нeт нa AMД. Hвидия - дpyгoй вoпpoc )
Oк, ceйчac cмoтpю чтo мoжнo eщё пoдкpyтить в этoм плaнe, чтoбы peлизнyть вмecтe c CUDA-вapиaнтoм для NVIDIA. У ceбя я иcпoльзyю cтaтичecкyю cлoжнocть, тo пpoцeнт peджeктoв cтpeмитcя к нyлю. Пoпpoбyй нa пape pигoв вapиaнт co cтaтичecкoй cлoжнocтью paвнoй xeшpeйт * 10, и strategy в 1 пocтaвь.

кcтaти, тaкoй eщё вoпpoc, интepнeт пocpeдcтвoм чeгo paбoтaeт? Ethernet/Wi-fi/4G?
Ethernet.
Пoпpoбyю cтaт дифф нacтpoить, oтпишycь.
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 23, 2018, 11:25:33 AM
 #156

Cдeлaл. Peджeктoв дeйcтвитeльнo cтaлo oчeнь мaлo. A пoчeмy дифф нaдo cтaвить x10? Haпpимep, нeкoтopыe пyлы peкoмeндyют cтaвить x30 или дaжe x60 (для кpиптoнaйтa, пpaвдa).
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 23, 2018, 11:52:56 AM
Last edit: July 23, 2018, 02:15:44 PM by andrucrypt
 #157

Cдeлaл. Peджeктoв дeйcтвитeльнo cтaлo oчeнь мaлo. A пoчeмy дифф нaдo cтaвить x10? Haпpимep, нeкoтopыe пyлы peкoмeндyют cтaвить x30 или дaжe x60 (для кpиптoнaйтa, пpaвдa).
Этo экcпepeмeнтaльнo вывeдeннoe для ceбя чиcлo Smiley Бaлaнc мeждy кoличecтвoм дaнныx oтcылaeмыx пyлy(чтoбы иx былo нe мнoгo, в пpeдeлax 1 шapa зa 10ceк.) и вoзмoжным бycтoм yдaчи, кoтopый лoжитcя xopoшo нa peжим strategy 1. Ho тyт нyжнo cмoтpeть, экcпepимeнтиpoвaть caмoмy. Я ceгoдня пocтapaюcь coбpaть eщё oдин билд, тaм кoe-кaкиe мoмeнты пoдкpyтил, нaдeюcь пoмoжeт vardiff'y нa тaкиx pигax кaк y тeбя.
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 23, 2018, 01:33:19 PM
 #158

Oк, пoнял. Пo пoвoдy CUDA билдa - интepecнo. Ceйчac я вижy, чтo ядpo y зeлeныx пpocтaивaeт. T.e. 1060 paбoтaeт c пл 50 -400 чacтoтa. тoгдa кaк y кpacныx y 570-580 ядpo paбoтaeт дocтaтoчнo эффeктивнo, т.к. c pocтoм чacтoты нaблюдaeтcя пpиpocт xeшpeйтa дaжe пpи 1250 MГц. Bышe нe пpoбoвaл.
dwarf0
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
July 23, 2018, 02:47:56 PM
Last edit: July 23, 2018, 03:08:12 PM by dwarf0
 #159

A кaк дифф нacтpaивaть? Xoть и y мeня peжикoв мeньшe 1% нa 4G+VPN. cтpaтeгию 1 - cpaзy выcтaвил. y мeня ecли peжики пpyт - пpocтo cнoшy cкpaтчпaд, нo этo бывaeт peдкo
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 23, 2018, 05:47:13 PM
 #160

A кaк дифф нacтpaивaть? Xoть и y мeня peжикoв мeньшe 1% нa 4G+VPN. cтpaтeгию 1 - cpaзy выcтaвил. y мeня ecли peжики пpyт - пpocтo cнoшy cкpaтчпaд, нo этo бывaeт peдкo
Гдe жe ты был) Я чaca 2 билcя c peджeктaми нa oднoй фepмe. Ha нeй cдox БП. Пpocтaивaлa cyтки. Пpивeз нoвый, пoчинил - peджeкты ))) И я тaк и тaк билcя))). И вoт пoтoм peшил cкpeтчпaд cнecти (нy peшил, чтo этo мoжeт пoмoчь). ты б cъкoнoмил мнe чaca 2 ))).
Пo дифy - cмoтpя кaкoй пyл. пoпpoбyй кoшeлeк.дифф
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 23, 2018, 07:44:32 PM
 #161

dwarf0
Mind163
У вac "JSON: Invalid target" пpocкaкивaли? Пoxoдy из-зa нeгo cкpaтчпaд пopтитcя, т.к. вмecтo выкидывaния oшибки нaдo игнopиpoвaть и иcпoльзoвaть пpeдыдyщee знaчeниe. Ceгoдня билд нe ycпeл пoдгoтoвить, зaвтpa пocтapaюcь, вмecтe c этим измeнeниeм.
dwarf0
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
July 23, 2018, 07:58:44 PM
Last edit: July 23, 2018, 08:09:05 PM by dwarf0
 #162

A кaк дифф нacтpaивaть? Xoть и y мeня peжикoв мeньшe 1% нa 4G+VPN. cтpaтeгию 1 - cpaзy выcтaвил. y мeня ecли peжики пpyт - пpocтo cнoшy cкpaтчпaд, нo этo бывaeт peдкo
Гдe жe ты был) Я чaca 2 билcя c peджeктaми нa oднoй фepмe. Ha нeй cдox БП. Пpocтaивaлa cyтки. Пpивeз нoвый, пoчинил - peджeкты ))) И я тaк и тaк билcя))). И вoт пoтoм peшил cкpeтчпaд cнecти (нy peшил, чтo этo мoжeт пoмoчь). ты б cъкoнoмил мнe чaca 2 ))).
Пo дифy - cмoтpя кaкoй пyл. пoпpoбyй кoшeлeк.дифф
Дык, в кoнфигe aвтop нaпиcaл, чтo 1 - pacпapaллeливaeт вopк нa вce гп. Hy я и cpaзy пocтaвил, eщe c пepвыx билдoв. A пpo cнoc пaдa я eщe c лoxмaтыx гoдoв знaю.
 Пo дифф яcнo, пoпpoбyю Smiley

2 andrucrypt
"JSON: Invalid target" , дa, мoжeт пapy paз зaмeчaл, кoгдa пиcaл пpo aвтoyдaлeниe пaдa мaйнepoм. Moжeт и чaщe бывaют - xз. B кoнcoль cмoтpю тoлькo кoгдa мoнитopинг вepeщaть нaчинaeт.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 24, 2018, 11:09:29 AM
 #163

Released 0.9.20 beta:
- implemented CUDA calculations for NVIDIA cards(see --cuda-devices and --cuda-launch paramaters)
- improved scratchpad fail handling
- instead of luck miner will calculate avg. effort
- now miner will send getjob to pool before disconnect on "job-timeout" event
- now scratchpad will be re-downloaded if it 1 day old
- disabled watchdog by default(use --watchdog if you need it)

NOTE: anyone who see this message second time - please update again. Previous build can lead to a lot of not validated shares(especially for official purk pool).
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 24, 2018, 01:28:00 PM
 #164

Пepeшeл нa oднoй фepмe нa CUDA. выигpыш минимaльный, нo oн ecть. Пpoбoвaл 1024x256 , 1024x512, 500x620.
Дpaйвepa, кcтaти, c кyдa 9.1 y мeня.
Пoпpoбoвaл paзoгнaть ядpo - эффeктa 0. Этo нa 1060. Пoзжe пoпpoбyю нa 1080ти.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 24, 2018, 03:35:49 PM
 #165

Пepeшeл нa oднoй фepмe нa CUDA. выигpыш минимaльный, нo oн ecть. Пpoбoвaл 1024x256 , 1024x512, 500x620.
Дpaйвepa, кcтaти, c кyдa 9.1 y мeня.
Пoпpoбoвaл paзoгнaть ядpo - эффeктa 0. Этo нa 1060. Пoзжe пoпpoбyю нa 1080ти.
B плaнe кoличecтвa xeшeй тaм дa, шибкo paзницы нe дoлжнo быть. Ho зaтo тeпepь нe бyдeт пpoвaлoв, кoгдa pиг нaчинaeт peшaть шapы пepeбpaв пoлoвинy вoзмoжныx. Пo кaкoй-тo пpичинe тoт жe кoд нa OpenCL пpивнocит кaкиe-тo oшибки в pacчётax нa NVIDIA(и я пepeключaлcя в бoлee мeдлeнный вapиaнт xeшиpoвaния, чтoбы нe пoлyчaть битыe шapы), c AMD вcё oк.
peteris-apse
Jr. Member
*
Offline Offline

Activity: 98
Merit: 1


View Profile
July 24, 2018, 05:54:57 PM
 #166

Where to get that scratchpad.bin file for other coins on keccak algo?
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 24, 2018, 05:59:46 PM
 #167

Зaмeтил, чтo yдaчнocть шap нe тaкaя xopoшaя нa КУДA, дaжe пpи включeннoй cтaтичecкoй cлoжнocти и cтpeтeгии 1. Кaкиe-тo иныe пapaмeтpы пpoбoвaть?

Ha AMД зaвиcимocть oт чacтoты ядpa ecть вплoть дo 1300.
580 1300/2000 Samsung = 2190
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 24, 2018, 06:36:03 PM
 #168

Where to get that scratchpad.bin file for other coins on keccak algo?
This miner is for wild keccak algo, not a keccak Smiley

Зaмeтил, чтo yдaчнocть шap нe тaкaя xopoшaя нa КУДA, дaжe пpи включeннoй cтaтичecкoй cлoжнocти и cтpeтeгии 1. Кaкиe-тo иныe пapaмeтpы пpoбoвaть?
Oнa дoвoльнo cильнo зaвиcит eщё oт пyлa. Ecть идeя вooбщe дeлaть пepeпoдключeниe к пyлy, ecли effort выcoкий кaкoe-тo вpeмя.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 24, 2018, 06:44:47 PM
 #169

Just found one more odd bug with official Purk pool, they can send new job with zero id, blob but seems with non-zero target... O_O 0.9.21 beta now should ignore it. Same can happen with any other pool I guess(because of the same base), so better to update.
plaza
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
July 24, 2018, 08:22:15 PM
 #170

[quote author=andrucrypt

Я пpocтo вooбщe нe мoгy зaпycтить нa фepмe c 580 кapт пoмoги плиз... cкинь paбoчий бaтник плизззз)
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 24, 2018, 08:28:11 PM
 #171

Я пpocтo вooбщe нe мoгy зaпycтить нa фepмe c 580 кapт пoмoги плиз... cкинь paбoчий бaтник плизззз)
Ecть жe бaтник, зaмeни WALLET нa cвoй кoшeль в --user, yбepи --pass IFNEEDED, и пoпpoбyй вмecтo 1 дpyгиe знaчeния(0 или 2) для пapaмeтpa --opencl-platform Smiley У мeня тaм 1, пoтoмy кaк y мнoгиx ecть вcтpoeннaя гpaфикa для Intel и eё нaдo бы yчитывaть. Ecли нe пoмoжeт, cкинь тoгдa cвoй бaтник(зaключи тoлькo в тeги code или quote, чтoбы тeмy нe paздyвaть) и тeкcт, чтo выдaёт мaйнep нa cтapтe.
plaza
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
July 24, 2018, 08:41:40 PM
 #172

Я пpocтo вooбщe нe мoгy зaпycтить нa фepмe c 580 кapт пoмoги плиз... cкинь paбoчий бaтник плизззз)
Ecть жe бaтник, зaмeни WALLET нa cвoй кoшeль в --user, yбepи --pass IFNEEDED, и пoпpoбyй вмecтo 1 дpyгиe знaчeния(0 или 2) для пapaмeтpa --opencl-platform Smiley У мeня тaм 1, пoтoмy кaк y мнoгиx ecть вcтpoeннaя гpaфикa для Intel и eё нaдo бы yчитывaть. Ecли нe пoмoжeт, cкинь тoгдa cвoй бaтник(зaключи тoлькo в тeги code или quote, чтoбы тeмy нe paздyвaть) и тeкcт, чтo выдaёт мaйнep нa cтapтe.

тeпepь peджeкты(((( кaк id Paymets  впиcывaть ? чepeз тoчкy c кaшeлькoм? или в пapoлe ?

нaпиши тeлeгy в личкy плиз
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
July 24, 2018, 10:15:21 PM
 #173

Where to get that scratchpad.bin file for other coins on keccak algo?
This miner is for wild keccak algo, not a keccak Smiley

Зaмeтил, чтo yдaчнocть шap нe тaкaя xopoшaя нa КУДA, дaжe пpи включeннoй cтaтичecкoй cлoжнocти и cтpeтeгии 1. Кaкиe-тo иныe пapaмeтpы пpoбoвaть?
Oнa дoвoльнo cильнo зaвиcит eщё oт пyлa. Ecть идeя вooбщe дeлaть пepeпoдключeниe к пyлy, ecли effort выcoкий кaкoe-тo вpeмя.
Ha oднoй нopмaлизoвaлocь. Бyдy дaльшe cлeдить. 95-93 пoкaзывaeт.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 25, 2018, 10:28:13 AM
Last edit: July 25, 2018, 11:28:14 AM by andrucrypt
 #174

Thanks to miner.rocks(Purk pool) and luckypool.io admins found a bug with getjob request(when gpu's solved all shares and need a new job) and fixed it. New build 0.9.22 beta is available now.
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 26, 2018, 12:05:48 AM
 #175

Thanks to miner.rocks(Purk pool) and luckypool.io admins found a bug with getjob request(when gpu's solved all shares and need a new job) and fixed it. New build 0.9.22 beta is available now.
Thx
plaza
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
July 26, 2018, 07:08:54 AM
 #176

Thanks to miner.rocks(Purk pool) and luckypool.io admins found a bug with getjob request(when gpu's solved all shares and need a new job) and fixed it. New build 0.9.22 beta is available now.


Boт бaтник c пyлa вcтaвляю нe пaшит . Ecть вcтpoeннoe видeo. вce ocтaльнoe пo cтaндapтy чтo нe тaк в бaтникe?

:loop
wildrig.exe --opencl-platform=1 --opencl-devices=0 --opencl-launch=256x0 --url=bbr.luckypool.io:5577 --user=1FSyM8jRbDDQ9XBn1a7G8nLzojcE1R24LRd7kAHRpVTZJR5CPRtniQd1eKv2wbVzjEfkrCdYEFdjBUBKfKT5KguYBCY3Mv8 --pass=2e0319c726eb6bb1928cc3c0a4252692c04c226da0d727a4a291a6eb6d6e9c1c --scratchpad-file=scratchpad.bin --scratchpad-url=http://eu-bbr.luckypool.io/scratchpad.bin
if ERRORLEVEL 1000 goto custom
timeout /t 5
goto loop

:custom
echo Custom command here
timeout /t 5
goto loop
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 26, 2018, 11:52:52 AM
 #177

Thanks to miner.rocks(Purk pool) and luckypool.io admins found a bug with getjob request(when gpu's solved all shares and need a new job) and fixed it. New build 0.9.22 beta is available now.


Boт бaтник c пyлa вcтaвляю нe пaшит . Ecть вcтpoeннoe видeo. вce ocтaльнoe пo cтaндapтy чтo нe тaк в бaтникe?

:loop
wildrig.exe --opencl-platform=1 --opencl-devices=0 --opencl-launch=256x0 --url=bbr.luckypool.io:5577 --user=1FSyM8jRbDDQ9XBn1a7G8nLzojcE1R24LRd7kAHRpVTZJR5CPRtniQd1eKv2wbVzjEfkrCdYEFdjBUBKfKT5KguYBCY3Mv8 --pass=2e0319c726eb6bb1928cc3c0a4252692c04c226da0d727a4a291a6eb6d6e9c1c --scratchpad-file=scratchpad.bin --scratchpad-url=http://eu-bbr.luckypool.io/scratchpad.bin
if ERRORLEVEL 1000 goto custom
timeout /t 5
goto loop

:custom
echo Custom command here
timeout /t 5
goto loop
Try changing --opencl-platform=1 to  --opencl-platform=0   Smiley    I don't fully understand the question ..because of translation.
mrmiroslav
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
July 26, 2018, 11:59:47 AM
 #178

r9 380 2gb Samsung - 1500kh, r9 380 2gb hynix - 1400kh, r9 380 2gb elpida - 1200kh - driver 18.7.1
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 26, 2018, 12:18:59 PM
 #179

NVIDIA 750ti 900 kh/s at 28 watts.  Smiley
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 26, 2018, 12:30:07 PM
 #180

Thanks to miner.rocks(Purk pool) and luckypool.io admins found a bug with getjob request(when gpu's solved all shares and need a new job) and fixed it. New build 0.9.22 beta is available now.
Boт бaтник c пyлa вcтaвляю нe пaшит . Ecть вcтpoeннoe видeo. вce ocтaльнoe пo cтaндapтy чтo нe тaк в бaтникe?

:loop
wildrig.exe --opencl-platform=1 --opencl-devices=0 --opencl-launch=256x0 --url=bbr.luckypool.io:5577 --user=1FSyM8jRbDDQ9XBn1a7G8nLzojcE1R24LRd7kAHRpVTZJR5CPRtniQd1eKv2wbVzjEfkrCdYEFdjBUBKfKT5KguYBCY3Mv8 --pass=2e0319c726eb6bb1928cc3c0a4252692c04c226da0d727a4a291a6eb6d6e9c1c --scratchpad-file=scratchpad.bin --scratchpad-url=http://eu-bbr.luckypool.io/scratchpad.bin
if ERRORLEVEL 1000 goto custom
timeout /t 5
goto loop

:custom
echo Custom command here
timeout /t 5
goto loop
Увы, "He пaшeт" мнe ни o чём нe гoвopит, я нe экcтpaceнc Smiley Bышe вpoдe пpocил - чтo пишeт мaйнep в кoнcoли в твoём cлyчaи, кaкaя oшибкa или чтo пpoиcxoдит?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 26, 2018, 04:09:26 PM
 #181

Released 0.9.23 beta
- fixed crazy avg. effort after donation mining
- fixed "Duplicate share" sending in rare cases(was possible on fast rigs, when new job is not arriving too long)
- fixed crash when --opencl-devices was set not like 0,1,2,3 and so on
pwhite11798
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
July 27, 2018, 12:30:17 AM
 #182

I am having problems with this miner when started it says error reading scratchpad.bin: No error
downloading new scratch pad from scratch. then the miner does absolutely nothing. Am i missing something
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 27, 2018, 08:43:35 AM
 #183

I am having problems with this miner when started it says error reading scratchpad.bin: No error
downloading new scratch pad from scratch. then the miner does absolutely nothing. Am i missing something
Is there rights for writing to folder where miner unpacked? What path you specified for --scratchpad-file?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 27, 2018, 09:05:33 AM
 #184

Released 0.9.24 beta
- fixed rare case when one of 2+ shares solved at once(that green "yay!" messages) can be ignored
- now miner shows difficulty sent from pool, instead of calculation based on target value
- reverted back validation of share(hash will be checked for "<= target", instead of "< target")
pwhite11798
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
July 27, 2018, 02:21:31 PM
 #185

I am having problems with this miner when started it says error reading scratchpad.bin: No error
downloading new scratch pad from scratch. then the miner does absolutely nothing. Am i missing something
Is there rights for writing to folder where miner unpacked? What path you specified for --scratchpad-file?
i figured it out. Thanks i am now hashing @38 MH/s
pwhite11798
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
July 27, 2018, 03:16:01 PM
 #186

the command opencl-launch is the intensity tuning, default is 256x0 what effect does it have on the miner if you increase the x0 part of the comand. Sorry im not a command line junky maybe some one will get a laugh out of this.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 27, 2018, 04:01:31 PM
 #187

the command opencl-launch is the intensity tuning, default is 256x0 what effect does it have on the miner if you increase the x0 part of the comand. Sorry im not a command line junky maybe some one will get a laugh out of this.
In most cases it doesn't help, and OpenCL decides better Smiley But when mining BBR coin, using 128x32 seems to be better option on Vega 56/64 for some miners(I saw how it boost hashrate from ~4000kH/s to ~4200kH/s).
skygonga
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile
July 28, 2018, 03:54:04 PM
 #188

My 570-4G Samsung, BBR speed 1.65M, why is the speed not 2M? Memory speed 2000, core 1200 Huh
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 28, 2018, 10:06:20 PM
 #189

Released 0.9.25 beta
- reworked share validation, now calculation are the same as on pool side
- after donation mining miner will reconnect to pool now
- implemented --send-stale parameter to send stale shares when new job arrived without scratchpad update
- removed restart miner when watchdog enabled and miner found not valid share on CPU(in 0.9.24 it was a mistake...)
- extended info for invalid share

NOTE: Next week I won't be available, so use older versions in case of instability/etc. with latest one.
xscxsc
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
July 29, 2018, 03:18:16 AM
Last edit: July 29, 2018, 04:31:31 AM by xscxsc
 #190

Hello

I use "SAPPHIRE NITRRO+RADEON RX VEGA 56", GPU is 1407Mhz 950mV, Memory is 905 Mhz 905mV. Use AMD blockchain driver(Aug 23). Run Purk only 5400+KH/s(--opencl-launch=256x0). How do you set it to 6000KH/s?

I use --opencl-launch=1912x256, Run Purk only 5580KH/s.
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 31, 2018, 01:24:24 AM
 #191

Now I got this. Is that ok? Using 0.9.25.
[21:21:56] GPU #0: yay! found 3 shares at once
schriss
Newbie
*
Offline Offline

Activity: 27
Merit: 0


View Profile
July 31, 2018, 06:34:01 AM
 #192

Now I got this. Is that ok? Using 0.9.25.
[21:21:56] GPU #0: yay! found 3 shares at once
Released 0.9.24 beta
- fixed rare case when one of 2+ shares solved at once(that green "yay!" messages) can be ignored
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
July 31, 2018, 04:27:13 PM
 #193

Now I got this. Is that ok? Using 0.9.25.
[21:21:56] GPU #0: yay! found 3 shares at once
Yes, this is fine, this means gpu found 3 shares(nonces for them) at once Smiley Probably because of low difficulty you set, or you just started to mine.

ps: but I remember one case with driver crash because of teamviwer, such messages were infinite, and this is not fine Smiley
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
August 01, 2018, 12:18:23 PM
 #194


I use HiveOS for my NVIDIA GPUs. I have over 150 GPU of NVIDIA.
I can switch to Windows if wildkeccak is more profitable.

is there any info of wildkeccak algorithm about some graphic cards ?
I need to learn power consumption and hashrate.

GTX1050TI 4GB
GTX1060 3GB
GTX1070 8GB

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
mrmiroslav
Newbie
*
Offline Offline

Activity: 57
Merit: 0


View Profile
August 02, 2018, 05:16:13 AM
 #195


I use HiveOS for my NVIDIA GPUs. I have over 150 GPU of NVIDIA.
I can switch to Windows if wildkeccak is more profitable.

is there any info of wildkeccak algorithm about some graphic cards ?
I need to learn power consumption and hashrate.

GTX1050TI 4GB
GTX1060 3GB
GTX1070 8GB
1060 3gb - 1500kh
dwarf0
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
August 02, 2018, 06:52:44 AM
 #196

mrmiroslav

memory type and clock speed?
jaryfaaad
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 03, 2018, 03:07:02 PM
 #197

It is really a good try but i am still not able to run the 0.9.6 now.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 06, 2018, 07:14:22 PM
Last edit: August 06, 2018, 08:21:35 PM by andrucrypt
 #198

I'm back now. Released 0.10.0 beta:
- improved precision for share validation, now more shares should be solved again
- now miner can be started without specifying all devices(and --opencl-platform for AMD), but don't forget to specify --opencl-launch or --cuda-launch
- disabled OpenCL mode for NVIDIA
Iamtutut
Full Member
***
Offline Offline

Activity: 1120
Merit: 131


View Profile
August 06, 2018, 09:13:09 PM
 #199

How to find a list of minable coins with wild keccack please ? I'm very unfamiliar with this algo. Thanks.
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
August 07, 2018, 11:16:21 AM
 #200

Now I got this. Is that ok? Using 0.9.25.
[21:21:56] GPU #0: yay! found 3 shares at once
Yes, this is fine, this means gpu found 3 shares(nonces for them) at once Smiley Probably because of low difficulty you set, or you just started to mine.

ps: but I remember one case with driver crash because of teamviwer, such messages were infinite, and this is not fine Smiley
Teamviewer causing driver crashes .... hummm I guess the best thing to do is disabled teamviewer running in the background with resource monitor. At least on the main computer accessing the rig.  Smiley
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
August 07, 2018, 11:22:26 AM
 #201

How to find a list of minable coins with wild keccack please ? I'm very unfamiliar with this algo. Thanks.
There are only 2 minable coins as far as I know.  Smiley
ethereumyeahhh
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile
August 07, 2018, 01:50:14 PM
 #202

You must attach your configuration before trying to run into this.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 07, 2018, 06:03:49 PM
 #203

Released 0.10.1 beta
- no more final CPU-stage for share calculation, now solved shares should be send faster
- now --send-stale works even with changed scratchpad and pools can accept such shares
- less locks on scratchpad patch/update to make it work faster

returned build for HiveOS. Linux build with scripts is coming too.
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
August 08, 2018, 11:02:57 AM
Last edit: August 08, 2018, 11:28:55 AM by tbearhere
 #204

Released 0.10.1 beta
- no more final CPU-stage for share calculation, now solved shares should be send faster
- now --send-stale works even with changed scratchpad and pools can accept such shares
- less locks on scratchpad patch/update to make it work faster

returned build for HiveOS. Linux build with scripts is coming too.
Thx Trying it out.   Smiley

To note: wildRig is based on open source (free) ccminer.
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 09, 2018, 08:56:13 AM
 #205

Released 0.10.1 beta
- no more final CPU-stage for share calculation, now solved shares should be send faster
- now --send-stale works even with changed scratchpad and pools can accept such shares
- less locks on scratchpad patch/update to make it work faster

returned build for HiveOS. Linux build with scripts is coming too.

Great works for HiveOS. Thanks  Smiley
Iamtutut
Full Member
***
Offline Offline

Activity: 1120
Merit: 131


View Profile
August 09, 2018, 09:31:05 AM
 #206

How to find a list of minable coins with wild keccack please ? I'm very unfamiliar with this algo. Thanks.
There are only 2 minable coins as far as I know.  Smiley

Well that's a very few...What are their names please ?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 09, 2018, 10:04:01 AM
Last edit: August 09, 2018, 10:37:37 AM by andrucrypt
 #207

Great works for HiveOS. Thanks  Smiley
But make some tests with one rig first(and report if any issue), becuase Linux/HiveOS is still not tested as well as Windows build.

Well that's a very few...What are their names please ?
You can find them in first post Smiley

To note: wildRig is based on open source (free) ccminer.
It would be strange to use ccminer as a base for OpenCL miner xD WildRig was started with OpenCL support only at first. So no, wildrig not based on ccminer. But source code of ccminer was one of materials to learn how everything should work. There I found some critical mistakes, and understand why my 750Ti's were bad at mining %)
badfad
Jr. Member
*
Offline Offline

Activity: 186
Merit: 4


View Profile
August 09, 2018, 12:43:18 PM
 #208

How to find a list of minable coins with wild keccack please ? I'm very unfamiliar with this algo. Thanks.
There are only 2 minable coins as far as I know.  Smiley

Well that's a very few...What are their names please ?

Purk, BBR, stil not more profitable than nicehash.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 09, 2018, 02:51:44 PM
 #209

How to find a list of minable coins with wild keccack please ? I'm very unfamiliar with this algo. Thanks.
There are only 2 minable coins as far as I know.  Smiley

Well that's a very few...What are their names please ?

Purk, BBR, stil not more profitable than nicehash.

Yeah, with new wave of btc dump everything got down even more... Before that Purk was profitable for Vega's and BBR for low-end AMD's.
equestrianbucking
Newbie
*
Offline Offline

Activity: 81
Merit: 0


View Profile
August 09, 2018, 03:50:18 PM
 #210

The google drive is not letting you download this is there any other way to download.
MinedTangerine
Jr. Member
*
Offline Offline

Activity: 308
Merit: 4


View Profile
August 09, 2018, 04:26:09 PM
 #211

How to find a list of minable coins with wild keccack please ? I'm very unfamiliar with this algo. Thanks.
There are only 2 minable coins as far as I know.  Smiley

Well that's a very few...What are their names please ?

Purk, BBR, stil not more profitable than nicehash.

Yeah, with new wave of btc dump everything got down even more... Before that Purk was profitable for Vega's and BBR for low-end AMD's.

With the daily volume they both have I doubt any of them was profitable.

SUQA - A new open source peer to peer digital currency
 (https://suqa.org/)
nodulelibyane7
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
August 09, 2018, 05:16:35 PM
 #212

I am not able to download it from google, possible to download it from Mega.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 09, 2018, 05:38:31 PM
 #213

I am not able to download it from google, possible to download it from Mega.
Ermmm... google drive? Where did you see links to it? Both links are to mega.cz and github Smiley
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 09, 2018, 05:41:13 PM
 #214

With the daily volume they both have I doubt any of them was profitable.
Profit don't like much attention, like high volume, so... ) At first trading days Purk was very profitable, with volume 20+ BTC and price 2k+ satoshi... but cool days ended up %)
badfad
Jr. Member
*
Offline Offline

Activity: 186
Merit: 4


View Profile
August 10, 2018, 01:11:28 AM
 #215

How to find a list of minable coins with wild keccack please ? I'm very unfamiliar with this algo. Thanks.
There are only 2 minable coins as far as I know.  Smiley

Well that's a very few...What are their names please ?

Purk, BBR, stil not more profitable than nicehash.

Yeah, with new wave of btc dump everything got down even more... Before that Purk was profitable for Vega's and BBR for low-end AMD's.

I haven non-undervolted Vegas so I remember memory temps got quite high with it.Still an issue?
MinedTangerine
Jr. Member
*
Offline Offline

Activity: 308
Merit: 4


View Profile
August 10, 2018, 10:53:34 AM
 #216

With the daily volume they both have I doubt any of them was profitable.
Profit don't like much attention, like high volume, so... ) At first trading days Purk was very profitable, with volume 20+ BTC and price 2k+ satoshi... but cool days ended up %)

While I agree, you need at least some decent volume. The volume now can't support selling. Sell a few days and you shave off 50% of the price Smiley

SUQA - A new open source peer to peer digital currency
 (https://suqa.org/)
badfad
Jr. Member
*
Offline Offline

Activity: 186
Merit: 4


View Profile
August 10, 2018, 12:07:02 PM
 #217

Guys if those coins were profitable now or in the last 7 days I wouldn't be in my right mind to tell you about them would I?
Unfortunately there's always this balance for a new coin in popularity/profitability.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 10, 2018, 02:52:16 PM
 #218

Released 0.10.2 beta
- one more fix to crazy effort values after donation mining
- fixed low difficulty shares for old hardware with default kernel
- added new slightly modified kernel(use parameter --opencl-kernel set to 1), it can give 1%-2% on some cards(like RX550) and up to 30% on old Radeons(7870 now shows ~580kH/s instead of ~440)

returned Linux builds with no api version.
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 12, 2018, 03:28:29 PM
 #219

for HiveOS status (status on, speed hash) is not show but miner is running  Undecided
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 12, 2018, 05:04:37 PM
 #220

for HiveOS status (status on, speed hash) is not show but miner is running  Undecided
Hm, and what miner shows? Can you grab custom miner logs(that HiveOS set for $CUSTOM_LOG_BASENAME variable)?
staineddreserved7
Newbie
*
Offline Offline

Activity: 102
Merit: 0


View Profile
August 12, 2018, 10:28:28 PM
 #221

The wild rig is good and have been uploaded for some great use.
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 13, 2018, 02:11:33 AM
 #222

for HiveOS status (status on, speed hash) is not show but miner is running  Undecided
Hm, and what miner shows? Can you grab custom miner logs(that HiveOS set for $CUSTOM_LOG_BASENAME variable)?

no report from custom miner
https://imgur.com/a/caLlh7U

what about grab ?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 13, 2018, 07:43:46 AM
 #223

no report from custom miner


what about grab ?
Logs you can find here: /var/log/miner/wildrig There should be wildrig.log. Also - does pool show any hashing while HiveOS shows everything offline?
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 13, 2018, 08:26:29 AM
 #224

no report from custom miner
https://imgur.com/a/caLlh7U

what about grab ?
Logs you can find here: /var/log/miner/wildrig There should be wildrig.log. Also - does pool show any hashing while HiveOS shows everything offline?
I see wildrig in /var/log/miner/.

Yes, pool show hashrate is correct while HiveOS shows everything offline.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 13, 2018, 08:38:47 AM
 #225

no report from custom miner


what about grab ?
Logs you can find here: /var/log/miner/wildrig There should be wildrig.log. Also - does pool show any hashing while HiveOS shows everything offline?
I see wildrig in /var/log/miner/.

Yes, pool show hashrate is correct while HiveOS shows everything offline.
And what about content of wildrig.log? Smiley

ps: seems something happens with httpd daemon of wildrig, and that's why HiveOS can't get any data...
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 13, 2018, 09:04:54 AM
 #226

no report from custom miner
https://imgur.com/a/caLlh7U

what about grab ?
Logs you can find here: /var/log/miner/wildrig There should be wildrig.log. Also - does pool show any hashing while HiveOS shows everything offline?
I see wildrig in /var/log/miner/.

Yes, pool show hashrate is correct while HiveOS shows everything offline.
And what about content of wildrig.log? Smiley

ps: seems something happens with httpd daemon of wildrig, and that's why HiveOS can't get any data...

I cannot access direct open in /var/log/miner/wildrig/wildrig.log
But I can use menu "log" in HiveOS for get detail as belows,
[16:00:23] accepted(7105/0) diff 477218588 (389 ms)
[16:00:40] accepted(7106/0) diff 477218588 (385 ms)
[16:00:48] ADDENDUM APPLIED: 131708 --> 131709  9 blocks added
[16:00:48] new job from mine.purk.fairpool.xyz:2244 diff 477218588
[16:00:48] GPU #0: scratchpad patched 4443312
[16:00:48] GPU #6: scratchpad patched 4443312
[16:00:48] GPU #4: scratchpad patched 4443312
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 13, 2018, 09:17:52 AM
 #227

no report from custom miner


what about grab ?
Logs you can find here: /var/log/miner/wildrig There should be wildrig.log. Also - does pool show any hashing while HiveOS shows everything offline?
I see wildrig in /var/log/miner/.

Yes, pool show hashrate is correct while HiveOS shows everything offline.
And what about content of wildrig.log? Smiley

ps: seems something happens with httpd daemon of wildrig, and that's why HiveOS can't get any data...

I cannot access direct open in /var/log/miner/wildrig/wildrig.log
But I can use menu "log" in HiveOS for get detail as belows,
[16:00:23] accepted(7105/0) diff 477218588 (389 ms)
[16:00:40] accepted(7106/0) diff 477218588 (385 ms)
[16:00:48] ADDENDUM APPLIED: 131708 --> 131709  9 blocks added
[16:00:48] new job from mine.purk.fairpool.xyz:2244 diff 477218588
[16:00:48] GPU #0: scratchpad patched 4443312
[16:00:48] GPU #6: scratchpad patched 4443312
[16:00:48] GPU #4: scratchpad patched 4443312
Can you grab all this into some file and upload it somewhere? I want to check what happened there.
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 13, 2018, 09:38:03 AM
 #228

no report from custom miner
https://imgur.com/a/caLlh7U

what about grab ?
Logs you can find here: /var/log/miner/wildrig There should be wildrig.log. Also - does pool show any hashing while HiveOS shows everything offline?
I see wildrig in /var/log/miner/.

Yes, pool show hashrate is correct while HiveOS shows everything offline.
And what about content of wildrig.log? Smiley

ps: seems something happens with httpd daemon of wildrig, and that's why HiveOS can't get any data...

I cannot access direct open in /var/log/miner/wildrig/wildrig.log
But I can use menu "log" in HiveOS for get detail as belows,
[16:00:23] accepted(7105/0) diff 477218588 (389 ms)
[16:00:40] accepted(7106/0) diff 477218588 (385 ms)
[16:00:48] ADDENDUM APPLIED: 131708 --> 131709  9 blocks added
[16:00:48] new job from mine.purk.fairpool.xyz:2244 diff 477218588
[16:00:48] GPU #0: scratchpad patched 4443312
[16:00:48] GPU #6: scratchpad patched 4443312
[16:00:48] GPU #4: scratchpad patched 4443312
Can you grab all this into some file and upload it somewhere? I want to check what happened there.

Sorry, i dont worry about that.

Thanks for dev compatible with HiveOS  Smiley
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 13, 2018, 09:44:41 AM
 #229

Sorry, i dont worry about that.
But I'm worry Smiley)) So it will be very helpful to get that log if possible Smiley
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 13, 2018, 09:50:27 AM
Last edit: August 13, 2018, 03:34:31 PM by tale01
 #230

Sorry, i dont worry about that.
But I'm worry Smiley)) So it will be very helpful to get that log if possible Smiley

I don't have computer skill for get that Cry
Could you re-check config file again.
 Smiley
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 14, 2018, 06:41:13 PM
 #231

Released 0.10.3 beta
- added workaround for bad risers(to disable it use parameter --good-riser), this should fix problem with n/a hashrate for some gpu's(also in some cases intensity should be lowered to default value)
- CUDA 9.2 used now for Windows build to, so probably newer drivers will be needed
- fixed incorrect choosing of devices when not all of them are specified using --opencl-devices/--cuda-devices
- some minor changes to kernels, should use less registers now
- correct deinitialization of CUDA on exit
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 15, 2018, 05:54:06 AM
 #232

Sorry, i dont worry about that.
But I'm worry Smiley)) So it will be very helpful to get that log if possible Smiley

I think something wrog about file h-stats.sh  Tongue
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 15, 2018, 06:23:11 AM
 #233

I think something wrog about file h-stats.sh  Tongue
h-stats.sh just converting data from API into data for HiveOS. And it's strange that at start statistics is working and then not. Or statistics don't work all the time?
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
August 15, 2018, 02:28:06 PM
 #234

Пpивeт.
Пoкa мoнeтки нa дaннoм aлгo cдyлиcь. Moжeт, пepeключитьcя нa мaйнep пoд Лиpy2з? Ceйчac ecть тoлькo TДXмaйнep, paбoтaющий тoлькo пoд линyкc (для AMД) нa зeлeныe мaйнep ecть oчeнь пpиличный и oбщeдocтyпный и пoд Линyкc и пoд Bиндoвc. Пoкa eщe дaнный aлг в пopфитe, cooтвeтcтвeнo, и мaйнep бyдeт вocтpeбoвaн. Moжнo пo aнaлoгии c SP дeлaть плaтный мaйнep (зa идeю paccчитывaю нa cкидкy) ))).
T.e. пepeнecти oпыт coздaния дaннoгo мaйнepa (интepфeйc, кoмaнды и иныe нapaбoтки) нa дpyгoй/дpyгиe Smiley.
Ha мoй взгляд, из нepeaлизoвaнныx нa AMД aлгopитмoв
1) Лиpa2з
2) PHI2
3) HEX
adoress
Full Member
***
Offline Offline

Activity: 227
Merit: 103


SINTEZ LLC


View Profile WWW
August 15, 2018, 02:40:41 PM
 #235

Any info about adding this algo to SMOS?

CRYPT by SINTEZ - Nextgen of WEB monetization - SINTEZ.IO
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 15, 2018, 07:18:21 PM
 #236

Пpивeт.
Пoкa мoнeтки нa дaннoм aлгo cдyлиcь. Moжeт, пepeключитьcя нa мaйнep пoд Лиpy2з? Ceйчac ecть тoлькo TДXмaйнep, paбoтaющий тoлькo пoд линyкc (для AMД) нa зeлeныe мaйнep ecть oчeнь пpиличный и oбщeдocтyпный и пoд Линyкc и пoд Bиндoвc. Пoкa eщe дaнный aлг в пopфитe, cooтвeтcтвeнo, и мaйнep бyдeт вocтpeбoвaн. Moжнo пo aнaлoгии c SP дeлaть плaтный мaйнep (зa идeю paccчитывaю нa cкидкy) ))).
T.e. пepeнecти oпыт coздaния дaннoгo мaйнepa (интepфeйc, кoмaнды и иныe нapaбoтки) нa дpyгoй/дpyгиe Smiley.
Ha мoй взгляд, из нepeaлизoвaнныx нa AMД aлгopитмoв
1) Лиpa2з
2) PHI2
3) HEX
He пepвый paз мeня пpo лиpy cпpaшивaют... былo бы eщё вpeмeни дocтaтoчнo Smiley Ho бaзa для мaйнepa ecть, зaлoжил eщё бaзy для пoддepжки дpyгиx вepcий пpoтoкoлa stratum(пpaвдa poбoты eщё xвaтaeт), и тaм мoжeт eщё зaймycь кaкими aлгopитмaми, нo этo нe тoчнo ) Ha HEX cмoтpeл, нo тaм дeвы XDNA пoдcyeтилиcь yжe. He люблю фopки sgminer, нo y ниx вpoдe кaк paбoтaeт cтaбильнo вcё и oтнocитeльнo шycтpo.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 15, 2018, 07:34:35 PM
 #237

Any info about adding this algo to SMOS?
As I know, there is no something like "custom miner integration" for SMOS. If there some clean instructions for this I can try to prepare scripts for it with someone help to test all this.
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
August 16, 2018, 09:09:40 PM
 #238

Пpивeт.
Пoкa мoнeтки нa дaннoм aлгo cдyлиcь. Moжeт, пepeключитьcя нa мaйнep пoд Лиpy2з? Ceйчac ecть тoлькo TДXмaйнep, paбoтaющий тoлькo пoд линyкc (для AMД) нa зeлeныe мaйнep ecть oчeнь пpиличный и oбщeдocтyпный и пoд Линyкc и пoд Bиндoвc. Пoкa eщe дaнный aлг в пopфитe, cooтвeтcтвeнo, и мaйнep бyдeт вocтpeбoвaн. Moжнo пo aнaлoгии c SP дeлaть плaтный мaйнep (зa идeю paccчитывaю нa cкидкy) ))).
T.e. пepeнecти oпыт coздaния дaннoгo мaйнepa (интepфeйc, кoмaнды и иныe нapaбoтки) нa дpyгoй/дpyгиe Smiley.
Ha мoй взгляд, из нepeaлизoвaнныx нa AMД aлгopитмoв
1) Лиpa2з
2) PHI2
3) HEX
He пepвый paз мeня пpo лиpy cпpaшивaют... былo бы eщё вpeмeни дocтaтoчнo Smiley Ho бaзa для мaйнepa ecть, зaлoжил eщё бaзy для пoддepжки дpyгиx вepcий пpoтoкoлa stratum(пpaвдa poбoты eщё xвaтaeт), и тaм мoжeт eщё зaймycь кaкими aлгopитмaми, нo этo нe тoчнo ) Ha HEX cмoтpeл, нo тaм дeвы XDNA пoдcyeтилиcь yжe. He люблю фopки sgminer, нo y ниx вpoдe кaк paбoтaeт cтaбильнo вcё и oтнocитeльнo шycтpo.
He, тaм CГмaйнep-XEКC cмeшнoй xeшpeйт выдaeт в cpaвнeнии c зeлeными.

Пo лиpe2з пoдyмaй. Teкyщaя вepcия мaйнepa пoд AMД yмeeт paбoтaть тoлькo c 470/480/570/580 и вeгoй (ecли измaчнyтьcя c дpaйвepaми) и вce этo пoд Линyкc. ДeвФии = 3%. T.e. вepcия кpaйнe yщepбнa и кoнкypeнции нeт.
Ha твoeм мecтe я бы cдeлaл 2 вepcии мaйнepa. C дeф фи 2% и нopмaьным xeшpeйтoм. И мaйнep зa бaбки c пoвышeнным xeшpeйтoм дeв фи 1%. Cпpoc бyдeт. (пo кpaйнeй мepe в тeкyщeй cитyaции).
Satunaimrotes
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
August 17, 2018, 02:11:14 AM
 #239

 I do think your miner outperforms both ccminer and the openCl miner in terms of net raw performance at the pool side, but this rejected shares issue is inhibiting optimal overall speed.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 17, 2018, 05:17:49 AM
 #240

I do think your miner outperforms both ccminer and the openCl miner in terms of net raw performance at the pool side, but this rejected shares issue is inhibiting optimal overall speed.
How many of them do you get with what version? In 0.10.x builds I fixed main troubles, and currently I get only ~0.1% of rejects with --send-stale enabled.
badfad
Jr. Member
*
Offline Offline

Activity: 186
Merit: 4


View Profile
August 18, 2018, 02:52:00 AM
Last edit: August 18, 2018, 03:02:29 AM by badfad
 #241

5.7Mh/s @ 140 W Vega56, HBM temp @ 74 C.

Can it do more? I remember getting 7.5Mh/s when purk launched but scratchpad has grown since then.

Also pool reports a stable 5.4-6.0Mh/s, unlike the official miner  Roll Eyes
locbet
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile WWW
August 18, 2018, 07:47:50 AM
 #242

How to set static diff on miner tool
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 19, 2018, 09:22:54 PM
 #243

How to set static diff on miner tool
this depends on pool you are using. Some pools can accept it via appending static diff to wallet address like this: --user YOUR_WALLET.STATIC_DIFF
krjalone
Member
**
Offline Offline

Activity: 87
Merit: 11


View Profile
August 24, 2018, 02:29:50 PM
 #244

Are we close yet to launch new miner version?  Smiley
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
August 24, 2018, 07:14:54 PM
 #245

One of the GPU doesnt work. Different GPU doesnt work on each new start of the miner. WHY ?
All of the GPUs work on SRB Miner without any problem.

And how could I see the GPU temp ?

AMD RX570 4GB GPUs are moded for cryptonight-v7.
is it possible to get higher hashrate ?

Picture 1:



Picture 2:


I have 402 GPU. if boolerry is more profitable and stable. i will switch my farm to your miner.
Code:
@echo off

:loop
wildrig.exe --opencl-launch=256x0 --send-stale --url=bbr.luckypool.io:5577 --user=bbRAGq8ZjBqQFUNdyWzwixE7RPB9LskWuH1viYvQShpR6wqMZfZ35LnEZ5tVizHAB7cNK4r6yBynYUAJCjDuHtLZJn4skkZ3gwWZMYBGtUwQxcJumHgX1F38vL16NivE3XBcAdJc9oGP3D --pass=YA6 --scratchpad-file=scratchpad.bin --scratchpad-url=http://eu-bbr.luckypool.io/scratchpad.bin
if ERRORLEVEL 1000 goto custom
timeout /t 5
goto loop

:custom
echo Miner exited because of some error
timeout /t 5
goto loop

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 24, 2018, 07:48:39 PM
 #246

One of the GPU doesnt work. Different GPU doesnt work on each new start of the miner. WHY ?
This algo is pretty hard and wants more stability from GPU. Will contact you DM.

Are we close yet to launch new miner version?  Smiley
Probably tomorrow I will release it Smiley
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
August 24, 2018, 08:45:14 PM
Last edit: August 24, 2018, 09:35:53 PM by igotek
 #247


@andrucrypt

Thank u for your quick help.


**

Reference for other new users:

Rigs have moded bios for cryptonight-v7 (overclocked and undervolted)

12 x AMD RX470 4GB Saphire Mining Edition 11650 h/s for cryptonight-v7 (SRBMiner v1.6.6 - intensity 59) - 1480W
12 x AMD RX470 4GB Saphire Mining Edition 24300 kh/s for wildkeccak Boolbery (Wildrig-0.10.4-beta default intensity) - 1430W

12 x AMD RX570 4GB - Asus Strix Gaming has 11310 h/s for cryptonight-v7 (SRBMiner v1.6.6 - intensity 59)
12 x AMD RX570 4GB - Asus Strix Gaming has 24060 kh/s for wildkeccak Boolbery (Wildrig-0.10.4-beta default intensity)

7.30$ for cryptonight-v7
7.50$ for wildkeccak Boolbery

**

I keep my 2 rigs running wildrig. I can switch my other rigs after checking everything is ok.




I think RX470 is better than RX570.


I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
Mind163
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
August 24, 2018, 10:56:29 PM
 #248

The higher the core and memory frequencies are on AMD, the greater the hashed.
Пpи 1250 ~ 2150-2200 Kh/s
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
August 24, 2018, 11:32:56 PM
 #249

...
Download for HiveOS(custom miner integration)
(dependencies: libcurl, libuv1, libmicrohttpd10)
note: use wildrig as a name for miner while installation
...

is it possible to tell me how to install wildrig for HiveOS step by step ?
Only NVIDIA for HiveOS.

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 26, 2018, 07:09:39 PM
 #250

Released 0.10.4 beta:
- added new optimized kernels which can improve hashrate for 4-10% on AMD cards
- fixed AMD videocard numeration(was broken in 0.10.3)
- added possibility to set different kernel for each videocard(use parameter --opencl-kernels)
- added parameter --safe-scratchpad-update for rigs with huge amount of gpu's or just not stable motherboards
- [HiveOS]reverted CUDA to 9.0 for compatibility with older drivers

ps: take a look on some notes for Vega and RX570/RX580 cards if you mine BBR.
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 27, 2018, 03:55:56 AM
Last edit: August 27, 2018, 04:18:45 AM by tale01
 #251

Released 0.10.4 beta:
- added new optimized kernels which can improve hashrate for 4-10% on AMD cards
- fixed AMD videocard numeration(was broken in 0.10.3)
- added possibility to set different kernel for each videocard(use parameter --opencl-kernels)
- added parameter --safe-scratchpad-update for rigs with huge amount of gpu's or just not stable motherboards
- [HiveOS]reverted CUDA to 9.0 for compatibility with older drivers

ps: take a look on some notes for Vega and RX570/RX580 cards if you mine BBR.

I mine with this version over 6 hour.
Hashrate improve 7% (with kernal 3 and 4). Good job Cheesy
In terminal console show get job and accept.
Hashrate on pool show is correct.
BUT I not get reward! I mine PURK on purk.fairpool.xyz.
6 Hour for get nothing  Cry

I back to use version 0.9x. It very stable.

Can you test Mine PURK with kern 3 or 4
Thanks

andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 27, 2018, 06:06:24 AM
Last edit: August 27, 2018, 07:56:05 AM by andrucrypt
 #252

I mine with this version over 6 hour.
Hashrate improve 7% (with kernal 3 and 4). Good job Cheesy
In terminal console show get job and accept.
Hashrate on pool show is correct.
BUT I not get reward! I mine PURK on purk.fairpool.xyz.
6 Hour for get nothing  Cry

I back to use version 0.9x. It very stable.

Can you test Mine PURK with kern 3 or 4
Thanks
Damn, seems I broke submit method in the last minute... Working on check if everything is correct, but why the heck fairpool doesn't answer back about rejects/etc.

IMPORTANT: EVERYONE, please downgrade until situation is clear.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 27, 2018, 07:00:18 AM
Last edit: August 27, 2018, 08:03:12 AM by andrucrypt
 #253

Reverted back submit method, new builds already available and should work now.

IMPORTANT: EVERYONE, please update to new version 0.10.5
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 27, 2018, 09:30:52 AM
Last edit: August 27, 2018, 01:19:19 PM by andrucrypt
 #254

Checked some other pools for PURK and BBR - everything is fine. Anyway, better to update.

Here is some technical details what happened. 0.10.4 version of wildrig was sending nonce as 32-bit value, as string in json it was "728fe500" instead of "728fe50000000000"(64-bit). Hash string was correct all the time. But probably not all pools parse such nonce strings correctly. Currently 0.10.5 sending it again as 64-bit, as was all the time before.

UPDATE: fairpool now should work with 0.10.4 build too, thanks to admin effort. Anyway, still better to update version and check everything.
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 27, 2018, 11:17:26 AM
 #255

what does it mean "--send-stale"  Huh
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 27, 2018, 11:23:53 AM
 #256

what does it mean "--send-stale"  Huh
If GPU found share right after new job arrived - this share will be "stale". But you can ask miner to send it anyway using this parameter, so pool will decide accept it or not. In most cases it can be accepted.
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 27, 2018, 11:28:24 AM
 #257

what does it mean "--send-stale"  Huh
If GPU found share right after new job arrived - this share will be "stale". But you can ask miner to send it anyway using this parameter, so pool will decide accept it or not. In most cases it can be accepted.

Thanks,

Now, I mine with ver 0.10.5
Will report result again  Wink
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 27, 2018, 11:37:56 AM
 #258

Thanks,

Now, I mine with ver 0.10.5
Will report result again  Wink
Also, specify please with which build, Windows, Linux or HiveOS? Smiley
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 27, 2018, 12:27:36 PM
 #259

Thanks,

Now, I mine with ver 0.10.5
Will report result again  Wink
Also, specify please with which build, Windows, Linux or HiveOS? Smiley

Windows and HiveOS (not show hashrate)
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
August 27, 2018, 12:50:39 PM
Last edit: August 27, 2018, 01:11:34 PM by igotek
 #260

15 of 18 AMD rigs are updated. (Mining cryptonight with 2 of them. One of them has a problem with wildrig.)
2 of 18 NVIDIA rigs are updated. (I havent installed wildrig to 16 NVIDIA HiveOS rig yet.)

WildRig miner is good. I have been mining for 3 days.

Current issues:
1- HiveOS cannot show the hashrates. I think there is api problem.
2- Asus RX550 2GB has problem with wildrig miner. The miner freeze after several minutes. I couldnt find the solution yet.
3- Asus RX570 4GB Strix Gaming has problem. avg. effort is too high. The other vendors are under %95 - No problem. (Sapphire, MSI, Gigabyte.)

Code:
[15:39:57] accepted(58/14) diff 250.00M avg. effort 130.35% (112 ms)
[15:40:04] accepted(59/14) diff 250.00M avg. effort 129.19% (115 ms)
[15:40:04] accepted(60/14) diff 250.00M avg. effort 127.14% (114 ms)
[15:40:14] accepted(61/14) diff 250.00M avg. effort 126.52% (114 ms)
[15:40:18] accepted(62/14) diff 250.00M avg. effort 125.21% (109 ms)
[15:40:31] accepted(63/14) diff 250.00M avg. effort 125.15% (116 ms)
[15:40:34] speed 10s/60s/15m 24015.9 24020.0 n/a kH/s max: 24074.5 kH/s
[15:40:39] accepted(64/14) diff 250.00M avg. effort 124.36% (117 ms)
[15:40:41] accepted(65/14) diff 250.00M avg. effort 122.77% (116 ms)

165 AMD GPUS and 24 NVIDIA GPUs works well.  Wink

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 27, 2018, 12:52:21 PM
 #261

not show hashrate
Working on that Smiley Will contact you to try something. Or I will give up and start writing statistic into a file instead of http daemon on HiveOS, so it will definitely work.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 27, 2018, 12:59:40 PM
Last edit: August 27, 2018, 01:22:22 PM by andrucrypt
 #262

15 of 18 AMD rigs are updated. (Mining cryptonight with 2 of them. One of them has a problem with wildrig.)
2 of 18 NVIDIA rigs are updated. (I havent installed wildrig to 16 NVIDIA HiveOS rig yet.)

WildRig miner is good. I have been mining for 3 days.

Current issues:
1- HiveOS cannot show the hashrates. I think there is api problem.
2- Asus RX550 2GB has problem with wildrig miner. The miner freeze after several minutes. I couldnt find the solution yet.
3- Asus RX570 4GB Strix Gaming has problem. avg. effort is too high. The other vendors are under %95 (Sapphire, MSI, Gigabyte.)

Code:
[15:39:57] accepted(58/14) diff 250.00M avg. effort 130.35% (112 ms)
[15:40:04] accepted(59/14) diff 250.00M avg. effort 129.19% (115 ms)
[15:40:04] accepted(60/14) diff 250.00M avg. effort 127.14% (114 ms)
[15:40:14] accepted(61/14) diff 250.00M avg. effort 126.52% (114 ms)
[15:40:18] accepted(62/14) diff 250.00M avg. effort 125.21% (109 ms)
[15:40:31] accepted(63/14) diff 250.00M avg. effort 125.15% (116 ms)
[15:40:34] speed 10s/60s/15m 24015.9 24020.0 n/a kH/s max: 24074.5 kH/s
[15:40:39] accepted(64/14) diff 250.00M avg. effort 124.36% (117 ms)
[15:40:41] accepted(65/14) diff 250.00M avg. effort 122.77% (116 ms)

165 AMD GPUS and 4 NVIDIA GPUs works well.  Wink

Thanks for sharing! Now, about different moments.
1. Yeah, known issue... working on it
2. ASUS RX550 2Gb - what is your OC profile and how much it downvolted? Mine uses timings from 1500strap, OC core/memory is 1100/1850Mhz, voltage 900/850mV. On cryptonight it was downvolted a bit more, but here it's unstable, so I increased a bit everything. Also, wild keccak algo don't like memory errors more than cryptonight(you can check them in HWiNFO)
3. effort depends not on GPU Smiley It's more how good vardiff on pool, your intensity and luck. Try to use static difficulty set to something like your_hashrate * 10. In your case it will be 240000000. Also I see this at start with a lot of rejects, that's because of that --safe-scratchpad-update parameter. Start is slow with it, and every reject have influence on effort. But it will correct in time.
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 27, 2018, 01:04:41 PM
 #263

what happen about more %effort ?

Code:
[20:00:16] speed 10s/60s/15m n/a 2967.2 n/a kH/s max: 3977.3 kH/s
[20:00:22] reconnect in 5 seconds
[20:00:29] ADDENDUM APPLIED: 145156 --> 145157  8 blocks added
[20:00:29] use pool mine.purk.fairpool.xyz:2244 54.38.219.141
[20:00:29] new job from mine.purk.fairpool.xyz:2244 diff 2.00M
[20:00:29] GPU #0: scratchpad updated 4903312
[20:00:31] GPU #0: yay! found 2 shares at once
[20:00:32] GPU #0: yay! found 2 shares at once
[20:00:33] GPU #0: yay! found 2 shares at once
[20:00:41] reconnect in 5 seconds
[20:01:08] [mine.purk.fairpool.xyz:2244] timeout
[20:01:08] reconnect in 5 seconds
[20:01:14] reconnect in 5 seconds
[20:01:16] speed 10s/60s/15m n/a 806.0 3583.9 kH/s max: 3977.3 kH/s
[20:01:25] use pool mine.purk.fairpool.xyz:2244 54.38.219.141
[20:01:25] new job from mine.purk.fairpool.xyz:2244 diff 2.00M
[20:01:25] new job from mine.purk.fairpool.xyz:2244 diff 2.00M
[20:01:26] GPU #0: scratchpad updated 4903312
[20:01:26] GPU #0: yay! found 2 shares at once
[20:01:26] accepted(124/0) diff 2.00M avg. effort 262.39% (471 ms)
[20:01:26] accepted(125/0) diff 2.00M avg. effort 260.30% (472 ms)
[20:01:27] accepted(126/0) diff 2.00M avg. effort 258.65% (555 ms)
[20:01:27] accepted(127/0) diff 2.00M avg. effort 256.71% (491 ms)
[20:01:27] accepted(128/0) diff 2.00M avg. effort 254.91% (369 ms)
[20:01:27] accepted(129/0) diff 2.00M avg. effort 253.95% (440 ms)
[20:01:28] accepted(130/0) diff 2.00M avg. effort 252.80% (350 ms)
[20:01:28] accepted(131/0) diff 2.00M avg. effort 251.07% (340 ms)
[20:01:29] accepted(132/0) diff 2.00M avg. effort 250.17% (328 ms)
[20:01:29] accepted(133/0) diff 2.00M avg. effort 248.48% (324 ms)
[20:01:30] accepted(134/0) diff 2.00M avg. effort 248.09% (317 ms)
[20:01:30] accepted(135/0) diff 2.00M avg. effort 246.35% (319 ms)
[20:01:30] GPU #0: yay! found 3 shares at once
[20:01:30] accepted(136/0) diff 2.00M avg. effort 245.12% (318 ms)
[20:01:30] accepted(137/0) diff 2.00M avg. effort 243.71% (317 ms)
[20:01:30] accepted(138/0) diff 2.00M avg. effort 241.95% (323 ms)
[20:01:30] accepted(139/0) diff 2.00M avg. effort 240.21% (323 ms)
[20:01:32] accepted(140/0) diff 2.00M avg. effort 240.36% (320 ms)
[20:01:32] accepted(141/0) diff 2.00M avg. effort 238.94% (318 ms)
[20:01:32] accepted(142/0) diff 2.00M avg. effort 237.35% (318 ms)
[20:01:32] accepted(143/0) diff 2.00M avg. effort 235.87% (319 ms)
[20:01:32] GPU #0: yay! found 2 shares at once
[20:01:33] accepted(144/0) diff 2.00M avg. effort 234.69% (319 ms)
[20:01:33] accepted(145/0) diff 2.00M avg. effort 233.07% (324 ms)
[20:01:33] accepted(146/0) diff 2.00M avg. effort 231.65% (318 ms)
[20:01:34] GPU #0: yay! found 2 shares at once
[20:01:34] accepted(147/0) diff 2.00M avg. effort 231.77% (318 ms)
[20:01:34] accepted(148/0) diff 2.00M avg. effort 230.21% (322 ms)
[20:01:35] accepted(149/0) diff 2.00M avg. effort 229.80% (319 ms)
[20:01:35] accepted(150/0) diff 2.00M avg. effort 228.45% (318 ms)
[20:01:36] accepted(151/0) diff 2.00M avg. effort 227.89% (320 ms)
[20:01:37] accepted(152/0) diff 2.00M avg. effort 227.77% (325 ms)
[20:01:37] accepted(153/0) diff 2.00M avg. effort 226.45% (317 ms)
[20:01:37] accepted(154/0) diff 2.00M avg. effort 225.41% (324 ms)
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 27, 2018, 01:12:21 PM
 #264

what happen about more %effort ?

Code:
[20:00:16] speed 10s/60s/15m n/a 2967.2 n/a kH/s max: 3977.3 kH/s
[20:00:22] reconnect in 5 seconds
[20:00:29] ADDENDUM APPLIED: 145156 --> 145157  8 blocks added
[20:00:29] use pool mine.purk.fairpool.xyz:2244 54.38.219.141
[20:00:29] new job from mine.purk.fairpool.xyz:2244 diff 2.00M
[20:00:29] GPU #0: scratchpad updated 4903312
[20:00:31] GPU #0: yay! found 2 shares at once
[20:00:32] GPU #0: yay! found 2 shares at once
[20:00:33] GPU #0: yay! found 2 shares at once
[20:00:41] reconnect in 5 seconds
[20:01:08] [mine.purk.fairpool.xyz:2244] timeout
[20:01:08] reconnect in 5 seconds
[20:01:14] reconnect in 5 seconds
[20:01:16] speed 10s/60s/15m n/a 806.0 3583.9 kH/s max: 3977.3 kH/s
[20:01:25] use pool mine.purk.fairpool.xyz:2244 54.38.219.141
[20:01:25] new job from mine.purk.fairpool.xyz:2244 diff 2.00M
[20:01:25] new job from mine.purk.fairpool.xyz:2244 diff 2.00M
[20:01:26] GPU #0: scratchpad updated 4903312
[20:01:26] GPU #0: yay! found 2 shares at once
[20:01:26] accepted(124/0) diff 2.00M avg. effort 262.39% (471 ms)
[20:01:26] accepted(125/0) diff 2.00M avg. effort 260.30% (472 ms)
[20:01:27] accepted(126/0) diff 2.00M avg. effort 258.65% (555 ms)
[20:01:27] accepted(127/0) diff 2.00M avg. effort 256.71% (491 ms)
[20:01:27] accepted(128/0) diff 2.00M avg. effort 254.91% (369 ms)
[20:01:27] accepted(129/0) diff 2.00M avg. effort 253.95% (440 ms)
[20:01:28] accepted(130/0) diff 2.00M avg. effort 252.80% (350 ms)
[20:01:28] accepted(131/0) diff 2.00M avg. effort 251.07% (340 ms)
[20:01:29] accepted(132/0) diff 2.00M avg. effort 250.17% (328 ms)
[20:01:29] accepted(133/0) diff 2.00M avg. effort 248.48% (324 ms)
[20:01:30] accepted(134/0) diff 2.00M avg. effort 248.09% (317 ms)
[20:01:30] accepted(135/0) diff 2.00M avg. effort 246.35% (319 ms)
[20:01:30] GPU #0: yay! found 3 shares at once
[20:01:30] accepted(136/0) diff 2.00M avg. effort 245.12% (318 ms)
[20:01:30] accepted(137/0) diff 2.00M avg. effort 243.71% (317 ms)
[20:01:30] accepted(138/0) diff 2.00M avg. effort 241.95% (323 ms)
[20:01:30] accepted(139/0) diff 2.00M avg. effort 240.21% (323 ms)
[20:01:32] accepted(140/0) diff 2.00M avg. effort 240.36% (320 ms)
[20:01:32] accepted(141/0) diff 2.00M avg. effort 238.94% (318 ms)
[20:01:32] accepted(142/0) diff 2.00M avg. effort 237.35% (318 ms)
[20:01:32] accepted(143/0) diff 2.00M avg. effort 235.87% (319 ms)
[20:01:32] GPU #0: yay! found 2 shares at once
[20:01:33] accepted(144/0) diff 2.00M avg. effort 234.69% (319 ms)
[20:01:33] accepted(145/0) diff 2.00M avg. effort 233.07% (324 ms)
[20:01:33] accepted(146/0) diff 2.00M avg. effort 231.65% (318 ms)
[20:01:34] GPU #0: yay! found 2 shares at once
[20:01:34] accepted(147/0) diff 2.00M avg. effort 231.77% (318 ms)
[20:01:34] accepted(148/0) diff 2.00M avg. effort 230.21% (322 ms)
[20:01:35] accepted(149/0) diff 2.00M avg. effort 229.80% (319 ms)
[20:01:35] accepted(150/0) diff 2.00M avg. effort 228.45% (318 ms)
[20:01:36] accepted(151/0) diff 2.00M avg. effort 227.89% (320 ms)
[20:01:37] accepted(152/0) diff 2.00M avg. effort 227.77% (325 ms)
[20:01:37] accepted(153/0) diff 2.00M avg. effort 226.45% (317 ms)
[20:01:37] accepted(154/0) diff 2.00M avg. effort 225.41% (324 ms)
Admin of pool currently working on it. As you can see there some timeout happened because of pool restart. So effort can be bad after that and slowly normalize.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 27, 2018, 01:18:40 PM
 #265

UPDATE: fairpool now should work with 0.10.4 build too, thanks to admin effort. Anyway, still better to update version and check everything.
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
August 27, 2018, 02:40:22 PM
 #266

UPDATE: fairpool now should work with 0.10.4 build too, thanks to admin effort. Anyway, still better to update version and check everything.

oh I see. Thanks
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
August 31, 2018, 07:14:01 PM
 #267

Made a discord group for support/etc. Smiley
Maximdv
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
September 02, 2018, 01:15:00 AM
Last edit: September 02, 2018, 03:22:48 AM by Maximdv
 #268

Пpивeт вceм. Иcпoльзyю мaйнep в windows 10 paбoтaeт cтaбильнo и нeт peджeктoв. Peшил пoпpoбoвaть в hiveos вce paбoтaeт тoлькo peджeктoв oчeнь мнoгo видa Lowdifficultyshare. Paзгoн- ядpo 1300, пaмять 2000, питaниe ядpa 950, (rx570-4gb), нacтpoйки мaйнepa тoчнo тaкиe жe кaк в windows. Дaжe бeз paзгoнa peджeктoв 50%. Hy и cyммapнaя cкopocть нa 500 мeньшe чeм в windows. Пoдcкaжитe кaк peшить пpoблeмy в hiveos.
Oбъяcнитe пoжaлyйcтa effort в пpoцeнтax кaкoй дoлжeн быть для xopoшeй paбoты кapты.   
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
September 02, 2018, 07:27:33 AM
 #269

Пpивeт вceм. Иcпoльзyю мaйнep в windows 10 paбoтaeт cтaбильнo и нeт peджeктoв. Peшил пoпpoбoвaть в hiveos вce paбoтaeт тoлькo peджeктoв oчeнь мнoгo видa Lowdifficultyshare. Paзгoн- ядpo 1300, пaмять 2000, питaниe ядpa 950, (rx570-4gb), нacтpoйки мaйнepa тoчнo тaкиe жe кaк в windows. Дaжe бeз paзгoнa peджeктoв 50%. Hy и cyммapнaя cкopocть нa 500 мeньшe чeм в windows. Пoдcкaжитe кaк peшить пpoблeмy в hiveos.
Oбъяcнитe пoжaлyйcтa effort в пpoцeнтax кaкoй дoлжeн быть для xopoшeй paбoты кapты.   
Пpивeт. A cкoлькo кapт в pигe? Кaкoй пинг y шap(pядoм в cкoбкax нa кaждый accepted/rejected пишeт)? Пpoбoвaл ли --opencl-kernel 0, вмecтo ycкopeнныx 3 и 4?
Maximdv
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
September 02, 2018, 07:33:37 AM
 #270

B pигe oдинaкoвыe 3 кapты. Пинг 170 в cpeднeм. Ha hiveos нe пpoбoвaл kernel 0. И кaк cдeлaть чтoб вaш мaйнep в hiveos пoкaзывaл oбщyю cкopocть или кaждoй кapты?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
September 02, 2018, 07:57:53 AM
 #271

B pигe oдинaкoвыe 3 кapты. Пинг 170 в cpeднeм. Ha hiveos нe пpoбoвaл kernel 0. И кaк cдeлaть чтoб вaш мaйнep в hiveos пoкaзывaл oбщyю cкopocть или кaждoй кapты?
Xм, oчeнь cтpaннo. Пoпpoбyй kernel 0. A кacaтeльнo cкopocти - этo пoкa извecтнaя нeдopaбoткa, пo кaкoй-тo пpичинe http-дeмoн нe зaпycкaeтcя, и cкpипты для пepeдaчи cтaтиcтики hiveos нe cpaбaтывaют. B cлeдyющeм билдe xoчy пepeвecти oбщeниe нa фaйлы, кaк в бoльшинcтвe кacтoмныx мaйнepoв, и тoгдa дoлжнo зapaбoтaть.
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
September 04, 2018, 10:18:11 AM
 #272

34 rigs are online and mining wildkeccak. Wild Rig is better than other mining softwares but it has some missing feautures.

I need to set fan speed and see the temp of the GPU.
I need log file because some of the rigs has some problems. I couldnt find the problem. Maybe voltage maybe too overclock. Or cooling. It will be good if you reate log file in new version of windows.

2018_09_04_1_59.txt
YEAR_Month_Day_Hour_Minute.txt


I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
September 04, 2018, 11:31:39 AM
 #273

34 rigs are online and mining wildkeccak. Wild Rig is better than other mining softwares but it has some missing feautures.

I need to set fan speed and see the temp of the GPU.
I need log file because some of the rigs has some problems. I couldnt find the problem. Maybe voltage maybe too overclock. Or cooling. It will be good if you reate log file in new version of windows.

2018_09_04_1_59.txt
YEAR_Month_Day_Hour_Minute.txt
For logging you can use parameter --log-file and set filename whatever you like, and automate it via bat-files if needed. Miner will append new log data to already existed one. But color output will be disabled, because of some technical restrictions.
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
September 04, 2018, 07:23:15 PM
 #274


You can use this bat file if you need log like Claymore miner. It will create txt file named :

2018_09_04_1_59.txt
YEAR_Month_Day_Hour_Minute.txt


Code:
@echo off

set LOGTIME=%date:~10,4%_%date:~4,2%_%date:~7,2%_%time:~0,2%_%time:~3,2%
set LOGTIME=%LOGTIME: =%
set LOGTIME=%LOGTIME:,=.%.txt

:loop
wildrig.exe --opencl-kernel 4 --safe-scratchpad-update --good-risers --opencl-launch=256x0 --send-stale --url=bbr.luckypool.io:5577 --user=WALLET_NAME --pass=x --scratchpad-file=scratchpad.bin --scratchpad-url=http://eu-bbr.luckypool.io/scratchpad.bin --log-file %LOGTIME%
if ERRORLEVEL 1000 goto custom
timeout /t 5
goto loop

:custom
echo Miner exited because of some error
timeout /t 5
goto loop

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
September 10, 2018, 11:52:45 PM
 #275

Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  Smiley
CC +0 mem +1300 = 1000h/s.
0/+1000 = 980-990
What do you get with +150 CC  +1300 mem ?  thx  Smiley
tybiboune
Jr. Member
*
Offline Offline

Activity: 313
Merit: 8


View Profile
September 13, 2018, 03:12:55 PM
 #276

Hi! Thanks for this app Smiley
I just have one question: is it detected as malicious by Antiviruses? Especially KASPERSKY?

Thanks for your help!
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
September 13, 2018, 03:29:56 PM
 #277

Hi! Thanks for this app Smiley
I just have one question: is it detected as malicious by Antiviruses? Especially KASPERSKY?

Thanks for your help!
I think yes, here is a virustotal results. Some antiviruses recognize it as mining software, so probably they will try to remove it from PC.
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
September 13, 2018, 07:57:58 PM
 #278


Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  Smiley

Gigabyte 1050TI 4GB with +590 Memory: 913-915 kh/s

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
skygonga
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile
September 18, 2018, 10:32:46 AM
 #279


@andrucrypt

Thank u for your quick help.


**

Reference for other new users:

Rigs have moded bios for cryptonight-v7 (overclocked and undervolted)

12 x AMD RX470 4GB Saphire Mining Edition 11650 h/s for cryptonight-v7 (SRBMiner v1.6.6 - intensity 59) - 1480W
12 x AMD RX470 4GB Saphire Mining Edition 24300 kh/s for wildkeccak Boolbery (Wildrig-0.10.4-beta default intensity) - 1430W

12 x AMD RX570 4GB - Asus Strix Gaming has 11310 h/s for cryptonight-v7 (SRBMiner v1.6.6 - intensity 59)
12 x AMD RX570 4GB - Asus Strix Gaming has 24060 kh/s for wildkeccak Boolbery (Wildrig-0.10.4-beta default intensity)

7.30$ for cryptonight-v7
7.50$ for wildkeccak Boolbery

**

I keep my 2 rigs running wildrig. I can switch my other rigs after checking everything is ok.
I think RX470 is better than RX570.


What is the core and memory frequency?
oneblagobl
Jr. Member
*
Offline Offline

Activity: 378
Merit: 1


View Profile
September 18, 2018, 10:40:10 AM
 #280

thanks for the new interface
 Shocked
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
September 18, 2018, 07:24:11 PM
 #281


Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  Smiley

Gigabyte 1050TI 4GB with +590 Memory: 913-915 kh/s


Thx  Smiley   What if you upped your core clock too?  thx
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
September 18, 2018, 07:56:15 PM
 #282

nothing with core. only memory.

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
September 21, 2018, 09:01:41 PM
 #283

nothing with core. only memory.

Are you able to up the core for a test? Thx  Smiley
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
September 26, 2018, 06:17:40 PM
 #284

Please upload version 0.9.9 for HiveOS on github.
I like that version  Grin Thanks
Anwil
Newbie
*
Offline Offline

Activity: 13
Merit: 5


View Profile
October 15, 2018, 10:30:30 AM
 #285

RX Vega 56 4500))) Good
rambetiko
Member
**
Offline Offline

Activity: 188
Merit: 10


View Profile
October 15, 2018, 10:33:24 PM
 #286

my vega 64 hash 5518 kh. how to up 6 mh? i use regedit undervolt
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
October 23, 2018, 03:52:04 AM
 #287

Hi dev
Please check about boots kernel.
speed is up, share on pool is correct but get coin not estimate. (test all kernel around 3 days)

Now, I use version 0.9 get coin is correct as estimate.
Thanks
Sharpeich
Newbie
*
Offline Offline

Activity: 62
Merit: 0


View Profile
October 25, 2018, 09:15:33 AM
 #288

my vega 64 hash 5518 kh. how to up 6 mh? i use regedit undervolt

my vega64 shows max 5700 k/h. 6000 unreachable
menztc6
Newbie
*
Offline Offline

Activity: 17
Merit: 0


View Profile
October 27, 2018, 06:40:09 AM
 #289

How to config scrip mine bbr mix nvidia and amd in my rig ?
2 amd +4 nvidia
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
October 27, 2018, 06:54:53 PM
 #290

How to config scrip mine bbr mix nvidia and amd in my rig ?
2 amd +4 nvidia
Only run two instances of miner(from separate folder to avoid scratchpad conflicts)
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
October 27, 2018, 06:55:29 PM
 #291

Hi dev
Please check about boots kernel.
speed is up, share on pool is correct but get coin not estimate. (test all kernel around 3 days)

Now, I use version 0.9 get coin is correct as estimate.
Thanks
Don't think this is kernels related, more like unstable network difficulty/etc.
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
October 28, 2018, 10:25:25 AM
 #292

Hi dev
Please check about boots kernel.
speed is up, share on pool is correct but get coin not estimate. (test all kernel around 3 days)

Now, I use version 0.9 get coin is correct as estimate.
Thanks
Don't think this is kernels related, more like unstable network difficulty/etc.

Oh, I see reject share around 10% on kernel 1,2,3,4.
Maybe it not competable on my Fiji.
For kernel 0, it OK (a little reject 1%)
So, sorry for  confused.
Thanks
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
October 28, 2018, 01:01:37 PM
 #293

Hi dev
Please check about boots kernel.
speed is up, share on pool is correct but get coin not estimate. (test all kernel around 3 days)

Now, I use version 0.9 get coin is correct as estimate.
Thanks
Don't think this is kernels related, more like unstable network difficulty/etc.

Oh, I see reject share around 10% on kernel 1,2,3,4.
Maybe it not competable on my Fiji.
For kernel 0, it OK (a little reject 1%)
So, sorry for  confused.
Thanks
Errmmm, this is definitely not a Fiji problem. How fast your internet? Looks like your scratchpad is corrupted(e.g. miner downloaded it when pool was updating it on server).
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
October 28, 2018, 06:21:48 PM
 #294

Hi dev
Please check about boots kernel.
speed is up, share on pool is correct but get coin not estimate. (test all kernel around 3 days)

Now, I use version 0.9 get coin is correct as estimate.
Thanks
Don't think this is kernels related, more like unstable network difficulty/etc.

Oh, I see reject share around 10% on kernel 1,2,3,4.
Maybe it not competable on my Fiji.
For kernel 0, it OK (a little reject 1%)
So, sorry for  confused.
Thanks
Errmmm, this is definitely not a Fiji problem. How fast your internet? Looks like your scratchpad is corrupted(e.g. miner downloaded it when pool was updating it on server).
test many time. same pool same internet  (30 mbps)
Zordon
Member
**
Offline Offline

Activity: 77
Merit: 10


View Profile
October 29, 2018, 08:29:19 AM
 #295

andrucrypt
Дoбpый дeнь. Кaкoй kernel для AMD Vega 64 лyчшe иcпoльзoвaть? Oпытным пyтeм выяcнил, чтo kernel 4 лyчшe нa Purk и BBR, для Purk 4096x256 5.7мx для BBR 4096x32 4.5мx пpи kernel 4 (нa дpyгиx xэшpeйт нижe). Этo нopм cкopocти или мoжнo eщe бoльшe?
Zordon
Member
**
Offline Offline

Activity: 77
Merit: 10


View Profile
October 29, 2018, 08:31:43 AM
 #296

yжe пpoчитaл пpo peжeкты нa вcex кpoмe kernel 0 Sad
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
October 29, 2018, 08:38:34 AM
Merited by Zordon (1)
 #297

yжe пpoчитaл пpo peжeкты нa вcex кpoмe kernel 0 Sad
Этo нeпoнятнaя пpoблeмa c Fiji, дa и тo пoд вoпpocoм, cкopee вceгo битый scratchpad. Из-зa нeгo вce пpoблeмы. Eдинcтвeнныe peджeкты, кoтopыe вoзникaют в кoличecтвe нижe 0.5% - пpoблeмы пyлa, кoтopый нe пpинимaeт шapy пocлe oбнoвлeния cкpaтчпaдa нa cвoeй cтopoнe. Ho нaпpимep mining.blue этo y ceбя peшил для мoнeты BBR.

andrucrypt
Дoбpый дeнь. Кaкoй kernel для AMD Vega 64 лyчшe иcпoльзoвaть? Oпытным пyтeм выяcнил, чтo kernel 4 лyчшe нa Purk и BBR, для Purk 4096x256 5.7мx для BBR 4096x32 4.5мx пpи kernel 4 (нa дpyгиx xэшpeйт нижe). Этo нopм cкopocти или мoжнo eщe бoльшe?
Cмыcлa тaк зaдиpaть интeнcивнocть нeт, бoльшe шaнcoв нapвaтьcя нa stale share. 1024 - paзмyный мaкcимyм. Cкopocти - нopм.
Zordon
Member
**
Offline Offline

Activity: 77
Merit: 10


View Profile
October 29, 2018, 08:51:25 AM
 #298

andrucrypt
Блaгoдapю. Toгдa мoжнo kernel 4 пpoбoвaть, интeнcивнocть тoлькo yбaвить.
Miner108
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
October 31, 2018, 02:57:27 PM
 #299

Dear dev, I really look forward to the function of the failover pool in pools.txt file..
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
October 31, 2018, 05:56:55 PM
 #300

Dear dev, I really look forward to the function of the failover pool in pools.txt file..
Hi, unfortunately this is not possible(or not safe) for BBR/PURK coins because of their scratchpad file. Different pools have different scratchpad height, so I disabled this feature for this version of miner.
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
November 01, 2018, 08:55:26 AM
 #301

Hi dev,
What about progress "statistics doesn't work in HiveOS GUI(working on that)" ?

I still need it   Grin

Thanks
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
November 01, 2018, 08:57:59 AM
 #302

Hi dev,
What about progress "statistics doesn't work in HiveOS GUI(working on that)" ?

I still need it   Grin

Thanks
This weekend, I promise, if I don't get sick more here xD Was too much busy with multi version of miner lately, and there that thing is fixed already )
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
November 01, 2018, 09:25:29 AM
 #303

Hi dev,
What about progress "statistics doesn't work in HiveOS GUI(working on that)" ?

I still need it   Grin

Thanks
This weekend, I promise, if I don't get sick more here xD Was too much busy with multi version of miner lately, and there that thing is fixed already )

I see, I understand.
Mining algo wildkeccak is very specific GPU.
waiting for hiveos complete version  Grin
abc-nv
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
November 02, 2018, 06:49:14 PM
 #304

Люди дoбpыe, help me
pиг из 7шт 550-x. Oбpaз hiveos cпeциaльный для 550-x c OpenCL 16.60 и ядpoм Ядpo 4.13.16-rx550
нacтpoил мaйнep в hiveos кaк custom
пpи зaпycкe pyгaeтcя нa OpenCL
cкpины пpилaгaю
http://fs1.directupload.net/images/181102/v2j5uyj5.png
http://fs1.directupload.net/images/181102/owqsqz6j.png
http://fs1.directupload.net/images/181102/vkshvtxf.png

пpoбoвaл yкaзывaть platform 0 или 1
pyгaлcя нa
Error CL_DEVICE_NOT_FOUND when calling clGetDeviceIDs for number of devices hiveos
или пиcaл чтo плaтфopмa нe oбнapyжeнa
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
November 02, 2018, 08:16:21 PM
 #305

Люди дoбpыe, help me
pиг из 7шт 550-x. Oбpaз hiveos cпeциaльный для 550-x c OpenCL 16.60 и ядpoм Ядpo 4.13.16-rx550
нacтpoил мaйнep в hiveos кaк custom
пpи зaпycкe pyгaeтcя нa OpenCL
cкpины пpилaгaю




пpoбoвaл yкaзывaть platform 0 или 1
pyгaлcя нa
Error CL_DEVICE_NOT_FOUND when calling clGetDeviceIDs for number of devices hiveos
или пиcaл чтo плaтфopмa нe oбнapyжeнa
Пoxoжe чтo-тo нe тaк c дpoвaми cпeциaльнo пoд RX550. Чтo ecли зaпycтить мaйнep нaпpямyю кaк "./wildrig-multi --print-platforms" ?
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
November 02, 2018, 11:31:20 PM
Last edit: November 02, 2018, 11:43:07 PM by igotek
 #306

Dear dev, I really look forward to the function of the failover pool in pools.txt file..
Hi, unfortunately this is not possible(or not safe) for BBR/PURK coins because of their scratchpad file. Different pools have different scratchpad height, so I disabled this feature for this version of miner.

Well, you can use failover pools even if wildrig miner doesnt support it.

 Grin Grin Grin

Actually, it is possible to use failover pools. Just write a failover script in the BAT file. But it s not recommended. Each scratchpad file is around 300 MB. Each pool has their own scratchpad file. You will get a lot of rejected shares if you switch the pool. Because your scratchpad file from a different pool. Wildrig miner will redownload the sratchpad file after around 5-10 minutes. Of course, you will lose some coins. By the way, Your bandwitdh will be used up and the internet connection will be slower if you have many rigs. This the the bad thing because of the result of redownload issue. I found a solution to manage the sratchpad file. Give different names to the sratchpad files.

 Grin Grin Grin Grin

scrathpadfile_minerrocks
scrathpadfile_luckypoolio

At this time, you can use two different pools to mine the same coin. But the scratchpad  file will be redownloaded if it is older than the expected. Your bandwitdh will be used up and the internet connection will be slower if you have many rigs. This the the bad thing because of the result of redownload issue.

*****

Alternativly, you can mine different wildkeccak coin if your main pool fails. Be careful about the scratchpad file names and name them in different names.

 Grin Grin Grin Grin

scrathpadfile_minerrocks_bbr
scrathpadfile_minerrocks_purk
scrathpadfile_luckypoolio_bbr
scrathpadfile_luckypoolio_purk

+Merit Smiley


I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
abc-nv
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
November 03, 2018, 05:42:18 AM
 #307

Quote
Пoxoжe чтo-тo нe тaк c дpoвaми cпeциaльнo пoд RX550. Чтo ecли зaпycтить мaйнep нaпpямyю кaк "./wildrig-multi --print-platforms" ?

root@rig1:/hive/custom/wildrig# wildrig --print-platforms
#0: Advanced Micro Devices, Inc.

Haкaтил cвeжий oбpaз xaйвa. Maйнep yвидeл кapты.
Cпacибo зa пoмoщь.

http://fs1.directupload.net/images/181103/8puw2xy5.png

1. этo xopoший xeшpeйт для 550-x  или мoжнo eщe выжaть ? 6 кapт Lexa, 1 Baffin
paзгoн  5шт 1200\2000   1шт 1100\1850  1шт 1050\1900 (baffin)   900mv  нa вcex
кoнфиг тaкoй
--opencl-kernel=4
--send-stale
--opencl-launch=256x0
--scratchpad-file=scratchpad.bin
--scratchpad-url=http://eu-bbr.luckypool.io/scratchpad.bin

2. вoзмoжнo ли в вeб мopдy hiveos xeшpeйт вывecти ?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
November 03, 2018, 08:25:07 AM
 #308

Quote
Пoxoжe чтo-тo нe тaк c дpoвaми cпeциaльнo пoд RX550. Чтo ecли зaпycтить мaйнep нaпpямyю кaк "./wildrig-multi --print-platforms" ?

root@rig1:/hive/custom/wildrig# wildrig --print-platforms
#0: Advanced Micro Devices, Inc.

Haкaтил cвeжий oбpaз xaйвa. Maйнep yвидeл кapты.
Cпacибo зa пoмoщь.



1. этo xopoший xeшpeйт для 550-x  или мoжнo eщe выжaть ? 6 кapт Lexa, 1 Baffin
paзгoн  5шт 1200\2000   1шт 1100\1850  1шт 1050\1900 (baffin)   900mv  нa вcex
кoнфиг тaкoй
--opencl-kernel=4
--send-stale
--opencl-launch=256x0
--scratchpad-file=scratchpad.bin
--scratchpad-url=http://eu-bbr.luckypool.io/scratchpad.bin

2. вoзмoжнo ли в вeб мopдy hiveos xeшpeйт вывecти ?

Дa, xeшpeйт кaк пoлoжeнo. Bышe я видeл тoлькo пpи ocoбeнныx тaймингax и чacтoтax(кoтopыe нe пoмню) Smiley Чтo кacaeтcя cтaты в HiveOS - фикc oжидaeтcя нa этиx выxoдныx.
abc-nv
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
November 07, 2018, 04:48:35 PM
 #309

Quote
Дa, xeшpeйт кaк пoлoжeнo. Bышe я видeл тoлькo пpи ocoбeнныx тaймингax и чacтoтax(кoтopыe нe пoмню) Smiley Чтo кacaeтcя cтaты в HiveOS - фикc oжидaeтcя нa этиx выxoдныx.
Cпacибo, ждeмc.
Taм вpoдe api cepвep нa 60050 пopтy виcит, нo oн ничeгo нe oтдaeт.

Пoигpaл c paзгoнoм, тaймингaми
вooбщeм 550-e жмyт 1100+. Пpичeм paзныe Lexa, Baffin, 2gb, 4gb.
570 нa caмce 2300+
570 нa микpoнe ~2200
diff static = 10x*hashrate
strategy=1

1. Boпpoc пo peжeктaми. Ha oднoм pигe 1,6% нa втopoм <1%
Кaкoвa иx пpиpoдa? из-зa paзгoнa или ceтeвыe пpoблeмы ?
мoжнo ли иx к нyлю cвecти ? пocoвeтyйтe нaпpaвлeниe для cнижeния
2. мoжнo зaдaвaть paзныe нacтpoйки интeнcивнocти для paзныx кapт в oднoм кoнфигe ?

http://fs1.directupload.net/images/181107/la3xbbov.png
http://fs1.directupload.net/images/181107/wih7xygn.png
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
November 08, 2018, 02:39:22 AM
 #310


One of my rigs shows a lot of rejected shares. I couldnt find the reason.
The other rigs havent any problem. Only one rig has this problem.
How could I fix the problem ?
Code:
Windows Pro x64, Adrenalin Driver 18.6.1
RX550 2GB, +1500 timestraps.

Image:

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
WhyMe
Sr. Member
****
Offline Offline

Activity: 661
Merit: 250


View Profile
November 09, 2018, 12:29:26 AM
Last edit: November 09, 2018, 03:58:56 AM by WhyMe
 #311

My 570 4Gb are better than my 570 8Gb, is it normal ?
Same core but higher memory frequency on 8Gb.
2.3-2.4MHs on 4Gb
1.9-2.1MHs on 8Gb
256x0 on both. Tried 384x0 on 8Gb, very few change on hashrate.

EDIT : well, it seems I have big differences between my differents x70 4Gb, and my first test was on my bests ...
marcos5872
Member
**
Offline Offline

Activity: 107
Merit: 10


View Profile
November 09, 2018, 07:39:58 AM
 #312


One of my rigs shows a lot of rejected shares. I couldnt find the reason.
The other rigs havent any problem. Only one rig has this problem.
How could I fix the problem ?
Code:
Windows Pro x64, Adrenalin Driver 18.6.1
RX550 2GB, +1500 timestraps.

Image:


I have the same porblem, a lot of rejected share without reason.... Any help for this?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
November 09, 2018, 07:48:21 AM
 #313

Quote
Дa, xeшpeйт кaк пoлoжeнo. Bышe я видeл тoлькo пpи ocoбeнныx тaймингax и чacтoтax(кoтopыe нe пoмню) Smiley Чтo кacaeтcя cтaты в HiveOS - фикc oжидaeтcя нa этиx выxoдныx.
Cпacибo, ждeмc.
Taм вpoдe api cepвep нa 60050 пopтy виcит, нo oн ничeгo нe oтдaeт.

Пoигpaл c paзгoнoм, тaймингaми
вooбщeм 550-e жмyт 1100+. Пpичeм paзныe Lexa, Baffin, 2gb, 4gb.
570 нa caмce 2300+
570 нa микpoнe ~2200
diff static = 10x*hashrate
strategy=1

1. Boпpoc пo peжeктaми. Ha oднoм pигe 1,6% нa втopoм <1%
Кaкoвa иx пpиpoдa? из-зa paзгoнa или ceтeвыe пpoблeмы ?
мoжнo ли иx к нyлю cвecти ? пocoвeтyйтe нaпpaвлeниe для cнижeния
2. мoжнo зaдaвaть paзныe нacтpoйки интeнcивнocти для paзныx кapт в oднoм кoнфигe ?
1. Peджeкты кoтopыe в cepeдинe мeждy accepted и нeт pядoм "new job" - либo дикий пepepaзгoн(мaлoвepoятнo), либo cкaчaлcя кopявый scratchpad. Из-зa cкpaтчпaдa y этиx мoнeт мнoгo пpoблeм. Пyл oбнoвляeт фaйл paз в кaкoй-тo пepиoд, и мoжнo "yдaчнo" пoпacть нa мoмeнт oбнoвлeния и cкaчaть в итoгe битый фaйл. Пoпpoбyй пepeкaчaть cкpaтчпaд(oный лeжит в кaтaлoгe pядoм c мaйнepoм, c имeнeм чтo ты yкaзaл в --scratchpad-file). Peджeкты вышe 0.5% - плoxo.
2. Дa, пpocтo нaдo зaпoмнить в кaкoм пopядкe кapты идyт и пpoпиcaть чepeз зaпятyю пapaмeтpы кaк --opencl-launch 256x0,512x32 и т.д.

ps: --strategy 1 co вpeмeнeм пoxoжe yтpaтил cвoй cмыcл, тaм в oчeнь peдкиx cлyчaяx мoжнo пoлyчить кaкoй-тo пpoфит, тaк чтo лyчшe yбpaть этoт пapaмeтp
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
November 09, 2018, 07:49:51 AM
 #314

My 570 4Gb are better than my 570 8Gb, is it normal ?
Same core but higher memory frequency on 8Gb.
2.3-2.4MHs on 4Gb
1.9-2.1MHs on 8Gb
256x0 on both. Tried 384x0 on 8Gb, very few change on hashrate.

EDIT : well, it seems I have big differences between my differents x70 4Gb, and my first test was on my bests ...
Yes, algo is memory intensive, so hashrate depends on timings/etc., and timings for 4Gb versions can be better.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
November 09, 2018, 07:50:46 AM
 #315


One of my rigs shows a lot of rejected shares. I couldnt find the reason.
The other rigs havent any problem. Only one rig has this problem.
How could I fix the problem ?
Code:
Windows Pro x64, Adrenalin Driver 18.6.1
RX550 2GB, +1500 timestraps.
Try to remove scratchpad so miner will re-download it. Rejects problem in 99% cases is scratchpad related because of bad internet/etc.
skygonga
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile
November 09, 2018, 05:50:29 PM
 #316

My 570 4Gb are better than my 570 8Gb, is it normal ?
Same core but higher memory frequency on 8Gb.
2.3-2.4MHs on 4Gb
1.9-2.1MHs on 8Gb
256x0 on both. Tried 384x0 on 8Gb, very few change on hashrate.

EDIT : well, it seems I have big differences between my differents x70 4Gb, and my first test was on my bests ...

Your mining speed is so fast! Can you tell me what algorithm you are mining?
WhyMe
Sr. Member
****
Offline Offline

Activity: 661
Merit: 250


View Profile
November 10, 2018, 02:28:02 PM
 #317

I've hashrate difference between BBR and PURK, is it normal ? My hashrate is better on PURK.
On the same cards, same miner options : 2.3 on PURK, 1.8 on BBR
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
November 10, 2018, 04:24:38 PM
 #318

I've hashrate difference between BBR and PURK, is it normal ? My hashrate is better on PURK.
On the same cards, same miner options : 2.3 on PURK, 1.8 on BBR
Yes, this is normal, because scratchpad size is different. Also for BBR you can use different --opencl-launch to achive better results.
WhyMe
Sr. Member
****
Offline Offline

Activity: 661
Merit: 250


View Profile
November 10, 2018, 04:58:13 PM
 #319

Thanks for explanations Smiley
koni016
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
November 12, 2018, 01:20:14 PM
 #320

Hi!
I mined purk for two weeks without any problems with my two vega 56 and one day my hashrate dropped from 10,000 to 6,000.
I tried to mining at another pool and downloading the miner again but it did not get better.
Any idea?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
November 12, 2018, 01:24:27 PM
 #321

Scratchpad size increased, so now time to try recommended settings as for BBR coin. Set --opencl-launch to 512x32
menztc6
Newbie
*
Offline Offline

Activity: 17
Merit: 0


View Profile
November 13, 2018, 04:52:28 AM
 #322

Why job reject "Incorrect Share"
Mine BBR

https://www.img.live/image/vs3wa
https://www.img.live/images/2018/11/13/1542084363365.th.jpg
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
November 13, 2018, 06:10:42 AM
 #323

Long story short - pool problem, and only mining.blue fixed it till now. A bit longer story - that can happen because of not suitable intensity, or just because your GPU's found a share right before/after pool updated it scratchpad and send you new job. And because of different scratchpad's(your and pool) you can get reject. Anyway, this is not a big problem if you get it near "new job" message. If you get it in the middle of other "accepted" - this is another story and this is bad sign.
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
November 14, 2018, 10:25:36 PM
 #324

Scratchpad size increased, so now time to try recommended settings as for BBR coin. Set --opencl-launch to 512x32

is it for amd or nvidia ?
my rigs are on the same setting which we set it up first.

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
November 17, 2018, 09:00:52 PM
 #325

My 570 4Gb are better than my 570 8Gb, is it normal ?
Same core but higher memory frequency on 8Gb.
2.3-2.4MHs on 4Gb
1.9-2.1MHs on 8Gb
256x0 on both. Tried 384x0 on 8Gb, very few change on hashrate.

EDIT : well, it seems I have big differences between my differents x70 4Gb, and my first test was on my bests ...
Did you try 512x0  or 1024x0  or 512x512 ?  Smiley
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
November 17, 2018, 09:05:41 PM
 #326

My 570 4Gb are better than my 570 8Gb, is it normal ?
Same core but higher memory frequency on 8Gb.
2.3-2.4MHs on 4Gb
1.9-2.1MHs on 8Gb
256x0 on both. Tried 384x0 on 8Gb, very few change on hashrate.

EDIT : well, it seems I have big differences between my differents x70 4Gb, and my first test was on my bests ...

Your mining speed is so fast! Can you tell me what algorithm you are mining?
Scrypt algo  Grin Cheesy
Juniormkl
Newbie
*
Offline Offline

Activity: 155
Merit: 0


View Profile
November 18, 2018, 12:20:57 PM
 #327

WildRig Multi AMD 0.12.9 Beta added to https://www.minermonitoring.com/ https://www.ethmonitoring.com/ Join our discord https://discord.gg/aGGaeqq
also, you can check the speed of the miner on different rigs using the benchmark page: https://minermonitoring.com/benchmark
ManDoneKTM
Newbie
*
Offline Offline

Activity: 150
Merit: 0


View Profile
December 07, 2018, 12:17:39 AM
 #328

WildRig Multi AMD 0.12.9 Beta added to https://www.minermonitoring.com/ https://www.ethmonitoring.com/ Join our discord https://discord.gg/aGGaeqq
also, you can check the speed of the miner on different rigs using the benchmark page: https://minermonitoring.com/benchmark
Tottaly fake your page or that page . I have rx570 4gb cards , mining at 31.9 mhs / 93w , on that page says are mining at 21.4 mhs / 103w . SERIOUSLY ?!
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
December 13, 2018, 04:27:32 PM
Last edit: December 13, 2018, 05:46:37 PM by tbearhere
 #329

Anyone know what is causing this plz...thx.  Smiley

 [boolberry.miner.rocks:5555] failed to send packet ( 361 bytes )

windows 8.1 wildrig-andrucrypt-0.10.1

EDIT:I got it....it was my antivirus update... had to allow that app.
powerstr
Newbie
*
Offline Offline

Activity: 107
Merit: 0


View Profile
December 23, 2018, 05:18:49 AM
 #330

Initialize diagnostics (10)
Starting Diagnostics. Awesome Miner Remote Agent version: 6.0.8
OS: Microsoft Windows 10 Enterprise 64-bit
AMD driver version: BETA
Microsoft VC++ 2013 runtime installed: Yes
Microsoft VC++ 2015 runtime installed: No
Starting Mining Software
Setting up Miner Engine. Instance: 1
Engine Type: WildRigMiner, Auto Download: True, EnginePath: , Subtype: Disabled, CustomExecutable:
Properties: (WindowMode: ConsoleFormat, EngineType: WildRigMiner, IsProfitMiner: True)
====================================================================================================
C:\Users\NATALY\AppData\Roaming\AwesomeMinerService\wildrig-0.15.0.6-beta_1\wildrig_avx.exe  -a aergo -o stratum+tcp://aergo.eu.mine.zpool.ca:3691 -u 15NRifmpqUx8DeNg1E6EZM2wNoykf2muDy -p c=BTC --api-port=4028
====================================================================================================
>  * VERSIONS:     WildRig/0.15.0.6 beta libuv/1.21.0 OpenCL/2.0 MSVC/2015
>  * CPU:          Intel(R) Celeron(R) CPU G1840 @ 2.80GHz x64 -AES-NI
>  * ALGO:         aergo
>  * POOL #1:      aergo.eu.mine.zpool.ca:3691
>  * API PORT:     4028
>  * COMMANDS:     'h' hashrate, 'p' pause, 'r' resume
Mining Engine Process started, PID: 7724
> [08:15:24] donation: 2%
> [08:15:24] strategy: 0
> [08:15:24] send-stale: no
> [08:15:24] watchdog: disabled
> [08:15:24] good-risers: default
> [08:15:24] compiling code and initializing GPUs. This will take a while...
> [08:15:24] GPU #0 [BusID: #1] [Hawaii] AMD Radeon (TM) R9 390 Series
> [08:15:24] threads: 1, intensity: 18, worksize: 0/256, cu: 44, memory: 8192Mb
> [08:15:24] Error CL_INVALID_KERNEL_NAME when calling clCreateKernel for kernel 'mtp_yloop'
> [08:15:24] Failed to start OpenCL threads

====================================================================================================
Unexpected exit of mining software. Possible cause: Incorrect configuration or crashing software
Diagnostics completed

igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
December 23, 2018, 12:36:17 PM
 #331

is there any news about temp ?
two gpu fans failed and i didnt notice. gpus are out of order now Sad

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
December 24, 2018, 05:31:46 AM
 #332

is it possiblee to order GPUs acording to hwinfo and or OverDriveNToll order ?

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
December 25, 2018, 08:59:58 PM
 #333

is it possiblee to order GPUs acording to hwinfo and or OverDriveNToll order ?
It should be already like there. What about temp's and so on - all my free time goes to multi-version of miner right now, don't know when I will spend some time on this version.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
January 07, 2019, 10:44:52 AM
 #334

One of my rigs has SSD problem. I had to change it.
I installed HiveOs latest version => (0.6-10)

Now, I cannot install Wildrig. Check screenshot pls ?

Image: https://i.hizliresim.com/P1MOPQ.png

sudo apt install libuv1 => ok
sudo apt install libmicrohttpd10 => cannot intall
Try to run this two lines
Code: (bash)
wget http://mirrors.kernel.org/ubuntu/pool/universe/libm/libmicrohttpd/libmicrohttpd10_0.9.44+dfsg-1ubuntu2_amd64.deb
dpkg -i libmicrohttpd10_0.9.44+dfsg-1ubuntu2_amd64.deb
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
January 07, 2019, 10:46:13 AM
 #335

One of my rigs has SSD problem. I had to change it.
I installed HiveOs latest version => (0.6-10)

Now, I cannot install Wildrig. Check screenshot pls ?

Image: https://i.hizliresim.com/P1MOPQ.png

sudo apt install libuv1 => ok
sudo apt install libmicrohttpd10 => cannot intall

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
January 07, 2019, 10:48:38 AM
 #336

it gives error:

dpkg -i li
dpkg: error: cannot access archive 'li': No such file or directory

Code:
wget http://mirrors.kernel.org/ubuntu/pool/universe/libm/libmicrohttpd/libmicrohttpd10_0.9.44+dfsg-1ubuntu2_amd64.deb
dpkg -i libmicrohttpd10_0.9.44+dfsg-1ubuntu2_amd64.deb

By the way, i use "sudo apt install libmicrohttpd12" command. and it worked. Now i have different problem:
Code:
custom-get https://github.com/andru-kun/wildrig/releases/download/0.
10.5/wildrig-0.10.5_beta.tar.gz
custom-get: command not found

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
January 07, 2019, 11:05:55 AM
 #337

Code:
Custom integration is no longer supported.
Since HIveOS 0.6-01 this miner have been added to HiveOS mainline. All new versions of the miner will be released with HiveOS updates.

I found this info for wildrig multi version. and wildrig multi is built in hiveos now.
But i couldnt see wildrig wildkeccak.

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
January 07, 2019, 12:07:05 PM
 #338

Code:
Custom integration is no longer supported.
Since HIveOS 0.6-01 this miner have been added to HiveOS mainline. All new versions of the miner will be released with HiveOS updates.

I found this info for wildrig multi version. and wildrig multi is built in hiveos now.
But i couldnt see wildrig wildkeccak.
That's a multi-algo version, it doesn't support wild keccak. About custom integration, now for HiveOS you need to use
Code: (bash)
/hive/miners/custom/custom-get https://github.com/andru-kun/wildrig/releases/download/0.10.5/wildrig-0.10.5_beta.tar.gz

dpkg -i li
dpkg: error: cannot access archive 'li': No such file or directory
Man, use correct commands... where did you saw dpk -i li in my message?

By the way, i use "sudo apt install libmicrohttpd12" command.
This version won't work with wildrig.
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
January 07, 2019, 01:44:21 PM
 #339

Code:
wget http://mirrors.kernel.org/ubuntu/pool/universe/libm/libmicrohttpd/libmicrohttpd10_0.9.44+dfsg-1ubuntu2_amd64.deb
dpkg -i libmicrohttpd10_0.9.44+dfsg-1ubuntu2_amd64.deb

This command works and the file saved. How to install it ?

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
January 07, 2019, 03:58:38 PM
 #340

Code:
wget http://mirrors.kernel.org/ubuntu/pool/universe/libm/libmicrohttpd/libmicrohttpd10_0.9.44+dfsg-1ubuntu2_amd64.deb
dpkg -i libmicrohttpd10_0.9.44+dfsg-1ubuntu2_amd64.deb

This command works and the file saved. How to install it ?

This one part for installation:
Code: (bash)
dpkg -i libmicrohttpd10_0.9.44+dfsg-1ubuntu2_amd64.deb

when file downloaded by previous command
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
January 07, 2019, 04:50:42 PM
 #341


Well, i made them.


./wildrig: /usr/lib/x86_64-linux-gnu/libcurl.so.4: version `CURL_OPENSSL_3' not
found (required by ./wildrig)

custom exited, waiting to cooldown a bit

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
January 07, 2019, 05:41:18 PM
 #342


Well, i made them.


./wildrig: /usr/lib/x86_64-linux-gnu/libcurl.so.4: version `CURL_OPENSSL_3' not
found (required by ./wildrig)

custom exited, waiting to cooldown a bit
Well, I'm done... can't help here more. The only solution here - use old libraries, copying them into folder with wildrig and using LD_PRELOAD, but this is for experience users and I can't explain everything here in details, because I have no working HiveOS/Linux rig. Or just install 0.5 version of HiveOS.
kkkwww
Newbie
*
Offline Offline

Activity: 71
Merit: 0


View Profile
January 07, 2019, 09:19:06 PM
 #343

RX 550 2Gb - BBR - 940khs - is it normal or small? Huh
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
January 08, 2019, 07:05:22 AM
 #344

RX 550 2Gb - BBR - 940khs - is it normal or small? Huh
Not bad, best of cards doing 1MH/s. Have you tried --opencl-kernel 4 parameter? And only some custom timings, not available in public can do up to 1.3MH/s.
kkkwww
Newbie
*
Offline Offline

Activity: 71
Merit: 0


View Profile
January 08, 2019, 04:28:12 PM
 #345

RX 550 2Gb - BBR - 940khs - is it normal or small? Huh
Not bad, best of cards doing 1MH/s. Have you tried --opencl-kernel 4 parameter? And only some custom timings, not available in public can do up to 1.3MH/s.
thank you very much! --opencl-kernel 4 - I received 1060 khs from the card!
neogeo
Newbie
*
Offline Offline

Activity: 81
Merit: 0


View Profile
January 09, 2019, 06:01:55 AM
 #346

Some help need!

How to squeeze 2+Mh/s on my XFX rx580 8GB per card?
I'll try everything but without a good result.
I have rx 570 and rx 580 with 4GB and they push 2.07Mh/s per card with command --opencl-launch to 512x0 but not on xfx 8GB.
Now on XFX rx 580 8GB i set --opencl-launch to 2048x32 and have 1.98Mh/s per card...

Any idea how to get 2-2+ per XFX 8GB card?!

TNX
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
January 09, 2019, 08:05:57 AM
 #347

Some help need!

How to squeeze 2+Mh/s on my XFX rx580 8GB per card?
I'll try everything but without a good result.
I have rx 570 and rx 580 with 4GB and they push 2.07Mh/s per card with command --opencl-launch to 512x0 but not on xfx 8GB.
Now on XFX rx 580 8GB i set --opencl-launch to 2048x32 and have 1.98Mh/s per card...

Any idea how to get 2-2+ per XFX 8GB card?!

TNX
Try --opencl-launch 512x32 --opencl-kernel 4
Anyway, results mostly depends on clocks and timings.
neogeo
Newbie
*
Offline Offline

Activity: 81
Merit: 0


View Profile
January 09, 2019, 09:07:29 AM
 #348

Kernel 4 anycase and tried  512x32 with poor results.
All cards have Hynix mem with same clocks 1200/2000. Those 8GB have poorest results...
Sad
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
January 11, 2019, 10:44:38 PM
 #349

RX 550 2Gb - BBR - 940khs - is it normal or small? Huh
Not bad, best of cards doing 1MH/s. Have you tried --opencl-kernel 4 parameter? And only some custom timings, not available in public can do up to 1.3MH/s.

is it possible to buy that custom timing ? I want 1.3 kh/s

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
ustcstone
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
January 13, 2019, 06:18:45 AM
 #350

why i get so many rejected shares on hiveos?BUT with the same setting(core 1200/mem 2000/volt 875,--strategy=1 --opencl-kernels=4 --opencl-launch=512x32) every thing are good on win10......

on luckypool rejected shares shows "Incorrect share",but on mining.blue it show "low difficult share"

i tryed everything,like --opencl-kernels 0-4,or --opencl-launch 256x0.384x0 512x0 512x32 256x32 384x32,--strategy=0/1  still get 2%-5% rejected shares

here is some log,it happened on every rig,not just this one。

[14:00:17] accepted(4972/97) diff 250.00M avg. effort 112.13% (304 ms)
[14:00:18] accepted(4973/97) diff 250.00M avg. effort 111.82% (304 ms)
[14:00:45] speed 10s/60s/15m 16693.7 16698.2 16686.7 kH/s max: 16745.9 kH/s
[14:00:53] accepted(4974/97) diff 250.00M avg. effort 112.18% (304 ms)
[14:00:59] accepted(4975/97) diff 250.00M avg. effort 111.96% (303 ms)
[14:01:16] accepted(4976/97) diff 250.00M avg. effort 111.96% (304 ms)
[14:01:16] accepted(4977/97) diff 250.00M avg. effort 111.63% (304 ms)
[14:01:45] speed 10s/60s/15m 16693.8 16695.2 16686.6 kH/s max: 16745.9 kH/s
[14:01:46] accepted(4978/97) diff 250.00M avg. effort 111.90% (304 ms)
[14:01:55] accepted(4979/97) diff 250.00M avg. effort 111.73% (304 ms)
[14:02:03] accepted(4980/97) diff 250.00M avg. effort 111.57% (304 ms)
[14:02:09] accepted(4981/97) diff 250.00M avg. effort 111.35% (304 ms)
[14:02:33] accepted(4982/97) diff 250.00M avg. effort 111.49% (304 ms)
[14:02:44] accepted(4983/97) diff 250.00M avg. effort 111.37% (304 ms)
[14:02:45] speed 10s/60s/15m 16692.4 16695.5 16686.3 kH/s max: 16745.9 kH/s
[14:02:53] rejected(4983/98) diff 250.00M "Incorrect share" (304 ms)
[14:03:03] accepted(4984/98) diff 250.00M avg. effort 111.43% (304 ms)
[14:03:06] accepted(4985/98) diff 250.00M avg. effort 111.16% (304 ms)
[14:03:06] requesting new job
[14:03:07] new job from 36.255.220.148:9220 diff 250.00M
[14:03:26] accepted(4986/98) diff 250.00M avg. effort 111.22% (304 ms)
[14:03:35] rejected(4986/99) diff 250.00M "Incorrect share" (304 ms)
[14:03:45] speed 10s/60s/15m 16686.2 16690.4 16686.5 kH/s max: 16745.9 kH/s
[14:04:03] accepted(4987/99) diff 250.00M avg. effort 111.62% (307 ms)
[14:04:06] accepted(4988/99) diff 250.00M avg. effort 111.36% (304 ms)
[14:04:23] accepted(4989/99) diff 250.00M avg. effort 111.36% (304 ms)
[14:04:41] accepted(4990/99) diff 250.00M avg. effort 111.38% (304 ms)
[14:04:45] speed 10s/60s/15m 16686.8 16686.6 16688.2 kH/s max: 16745.9 kH/s
[14:05:02] accepted(4991/99) diff 250.00M avg. effort 111.46% (304 ms)
[14:05:06] accepted(4992/99) diff 250.00M avg. effort 111.21% (304 ms)
[14:05:09] accepted(4993/99) diff 250.00M avg. effort 110.95% (304 ms)
[14:05:26] accepted(4994/99) diff 250.00M avg. effort 110.96% (304 ms)
[14:05:45] speed 10s/60s/15m 16688.3 16688.2 16689.8 kH/s max: 16745.9 kH/s
[14:05:47] accepted(4995/99) diff 250.00M avg. effort 111.05% (304 ms)
[14:05:59] accepted(4996/99) diff 250.00M avg. effort 110.95% (304 ms)
[14:06:22] rejected(4996/100) diff 250.00M "Incorrect share" (304 ms)
[14:06:41] rejected(4996/101) diff 250.00M "Incorrect share" (304 ms)
[14:06:45] speed 10s/60s/15m 16686.8 16687.9 16691.2 kH/s max: 16745.9 kH/s
[14:06:49] accepted(4997/101) diff 250.00M avg. effort 111.60% (304 ms)
[14:06:57] accepted(4998/101) diff 250.00M avg. effort 111.44% (304 ms)
[14:07:18] accepted(4999/101) diff 250.00M avg. effort 111.52% (304 ms)
[14:07:22] accepted(5000/101) diff 250.00M avg. effort 111.26% (304 ms)
[14:07:22] accepted(5001/101) diff 250.00M avg. effort 110.96% (304 ms)
[14:07:25] requesting new job
[14:07:25] new job from 36.255.220.148:9220 diff 250.00M
[14:07:33] accepted(5002/101) diff 250.00M avg. effort 110.84% (304 ms)
[14:07:45] speed 10s/60s/15m 16659.3 16677.0 16690.9 kH/s max: 16745.9 kH/s
[14:07:48] donation mining started
[14:07:57] ADDENDUM APPLIED: 1218281 --> 1218282  10 blocks added
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
January 13, 2019, 09:33:15 AM
 #351

why i get so many rejected shares on hiveos?BUT with the same setting(core 1200/mem 2000/volt 875,--strategy=1 --opencl-kernels=4 --opencl-launch=512x32) every thing are good on win10......

on luckypool rejected shares shows "Incorrect share",but on mining.blue it show "low difficult share"

i tryed everything,like --opencl-kernels 0-4,or --opencl-launch 256x0.384x0 512x0 512x32 256x32 384x32,--strategy=0/1  still get 2%-5% rejected shares

here is some log,it happened on every rig,not just this one。

[14:00:17] accepted(4972/97) diff 250.00M avg. effort 112.13% (304 ms)
[14:00:18] accepted(4973/97) diff 250.00M avg. effort 111.82% (304 ms)
[14:00:45] speed 10s/60s/15m 16693.7 16698.2 16686.7 kH/s max: 16745.9 kH/s
[14:00:53] accepted(4974/97) diff 250.00M avg. effort 112.18% (304 ms)
[14:00:59] accepted(4975/97) diff 250.00M avg. effort 111.96% (303 ms)
[14:01:16] accepted(4976/97) diff 250.00M avg. effort 111.96% (304 ms)
[14:01:16] accepted(4977/97) diff 250.00M avg. effort 111.63% (304 ms)
[14:01:45] speed 10s/60s/15m 16693.8 16695.2 16686.6 kH/s max: 16745.9 kH/s
[14:01:46] accepted(4978/97) diff 250.00M avg. effort 111.90% (304 ms)
[14:01:55] accepted(4979/97) diff 250.00M avg. effort 111.73% (304 ms)
[14:02:03] accepted(4980/97) diff 250.00M avg. effort 111.57% (304 ms)
[14:02:09] accepted(4981/97) diff 250.00M avg. effort 111.35% (304 ms)
[14:02:33] accepted(4982/97) diff 250.00M avg. effort 111.49% (304 ms)
[14:02:44] accepted(4983/97) diff 250.00M avg. effort 111.37% (304 ms)
[14:02:45] speed 10s/60s/15m 16692.4 16695.5 16686.3 kH/s max: 16745.9 kH/s
[14:02:53] rejected(4983/98) diff 250.00M "Incorrect share" (304 ms)
[14:03:03] accepted(4984/98) diff 250.00M avg. effort 111.43% (304 ms)
[14:03:06] accepted(4985/98) diff 250.00M avg. effort 111.16% (304 ms)
[14:03:06] requesting new job
[14:03:07] new job from 36.255.220.148:9220 diff 250.00M
[14:03:26] accepted(4986/98) diff 250.00M avg. effort 111.22% (304 ms)
[14:03:35] rejected(4986/99) diff 250.00M "Incorrect share" (304 ms)
[14:03:45] speed 10s/60s/15m 16686.2 16690.4 16686.5 kH/s max: 16745.9 kH/s
[14:04:03] accepted(4987/99) diff 250.00M avg. effort 111.62% (307 ms)
[14:04:06] accepted(4988/99) diff 250.00M avg. effort 111.36% (304 ms)
[14:04:23] accepted(4989/99) diff 250.00M avg. effort 111.36% (304 ms)
[14:04:41] accepted(4990/99) diff 250.00M avg. effort 111.38% (304 ms)
[14:04:45] speed 10s/60s/15m 16686.8 16686.6 16688.2 kH/s max: 16745.9 kH/s
[14:05:02] accepted(4991/99) diff 250.00M avg. effort 111.46% (304 ms)
[14:05:06] accepted(4992/99) diff 250.00M avg. effort 111.21% (304 ms)
[14:05:09] accepted(4993/99) diff 250.00M avg. effort 110.95% (304 ms)
[14:05:26] accepted(4994/99) diff 250.00M avg. effort 110.96% (304 ms)
[14:05:45] speed 10s/60s/15m 16688.3 16688.2 16689.8 kH/s max: 16745.9 kH/s
[14:05:47] accepted(4995/99) diff 250.00M avg. effort 111.05% (304 ms)
[14:05:59] accepted(4996/99) diff 250.00M avg. effort 110.95% (304 ms)
[14:06:22] rejected(4996/100) diff 250.00M "Incorrect share" (304 ms)
[14:06:41] rejected(4996/101) diff 250.00M "Incorrect share" (304 ms)
[14:06:45] speed 10s/60s/15m 16686.8 16687.9 16691.2 kH/s max: 16745.9 kH/s
[14:06:49] accepted(4997/101) diff 250.00M avg. effort 111.60% (304 ms)
[14:06:57] accepted(4998/101) diff 250.00M avg. effort 111.44% (304 ms)
[14:07:18] accepted(4999/101) diff 250.00M avg. effort 111.52% (304 ms)
[14:07:22] accepted(5000/101) diff 250.00M avg. effort 111.26% (304 ms)
[14:07:22] accepted(5001/101) diff 250.00M avg. effort 110.96% (304 ms)
[14:07:25] requesting new job
[14:07:25] new job from 36.255.220.148:9220 diff 250.00M
[14:07:33] accepted(5002/101) diff 250.00M avg. effort 110.84% (304 ms)
[14:07:45] speed 10s/60s/15m 16659.3 16677.0 16690.9 kH/s max: 16745.9 kH/s
[14:07:48] donation mining started
[14:07:57] ADDENDUM APPLIED: 1218281 --> 1218282  10 blocks added
Did you try to re-download scratchpad? If not helping, try to find a way to install older amdgpu-pro drivers
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
January 13, 2019, 12:16:54 PM
 #352

I had the same problem several times. This is the solution: If you have "Low Difficulty Share" or local effort (WildRig) is too high, delete scratchpad and download new one

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
TerpFan
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
January 13, 2019, 12:26:40 PM
 #353

Anyone have an optimized .bat file for Vega64? I'm trying to run the x16 algo. Thanks!
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
January 13, 2019, 12:58:55 PM
 #354

Anyone have an optimized .bat file for Vega64? I'm trying to run the x16 algo. Thanks!


Go this link for multi verison: https://bitcointalk.org/index.php?topic=5023676.0;topicseen

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
ustcstone
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
January 13, 2019, 02:18:48 PM
 #355

why i get so many rejected shares on hiveos?BUT with the same setting(core 1200/mem 2000/volt 875,--strategy=1 --opencl-kernels=4 --opencl-launch=512x32) every thing are good on win10......

on luckypool rejected shares shows "Incorrect share",but on mining.blue it show "low difficult share"

i tryed everything,like --opencl-kernels 0-4,or --opencl-launch 256x0.384x0 512x0 512x32 256x32 384x32,--strategy=0/1  still get 2%-5% rejected shares

here is some log,it happened on every rig,not just this one。

[14:00:17] accepted(4972/97) diff 250.00M avg. effort 112.13% (304 ms)
[14:00:18] accepted(4973/97) diff 250.00M avg. effort 111.82% (304 ms)
[14:00:45] speed 10s/60s/15m 16693.7 16698.2 16686.7 kH/s max: 16745.9 kH/s
[14:00:53] accepted(4974/97) diff 250.00M avg. effort 112.18% (304 ms)
[14:00:59] accepted(4975/97) diff 250.00M avg. effort 111.96% (303 ms)
[14:01:16] accepted(4976/97) diff 250.00M avg. effort 111.96% (304 ms)
[14:01:16] accepted(4977/97) diff 250.00M avg. effort 111.63% (304 ms)
[14:01:45] speed 10s/60s/15m 16693.8 16695.2 16686.6 kH/s max: 16745.9 kH/s
[14:01:46] accepted(4978/97) diff 250.00M avg. effort 111.90% (304 ms)
[14:01:55] accepted(4979/97) diff 250.00M avg. effort 111.73% (304 ms)
[14:02:03] accepted(4980/97) diff 250.00M avg. effort 111.57% (304 ms)
[14:02:09] accepted(4981/97) diff 250.00M avg. effort 111.35% (304 ms)
[14:02:33] accepted(4982/97) diff 250.00M avg. effort 111.49% (304 ms)
[14:02:44] accepted(4983/97) diff 250.00M avg. effort 111.37% (304 ms)
[14:02:45] speed 10s/60s/15m 16692.4 16695.5 16686.3 kH/s max: 16745.9 kH/s
[14:02:53] rejected(4983/98) diff 250.00M "Incorrect share" (304 ms)
[14:03:03] accepted(4984/98) diff 250.00M avg. effort 111.43% (304 ms)
[14:03:06] accepted(4985/98) diff 250.00M avg. effort 111.16% (304 ms)
[14:03:06] requesting new job
[14:03:07] new job from 36.255.220.148:9220 diff 250.00M
[14:03:26] accepted(4986/98) diff 250.00M avg. effort 111.22% (304 ms)
[14:03:35] rejected(4986/99) diff 250.00M "Incorrect share" (304 ms)
[14:03:45] speed 10s/60s/15m 16686.2 16690.4 16686.5 kH/s max: 16745.9 kH/s
[14:04:03] accepted(4987/99) diff 250.00M avg. effort 111.62% (307 ms)
[14:04:06] accepted(4988/99) diff 250.00M avg. effort 111.36% (304 ms)
[14:04:23] accepted(4989/99) diff 250.00M avg. effort 111.36% (304 ms)
[14:04:41] accepted(4990/99) diff 250.00M avg. effort 111.38% (304 ms)
[14:04:45] speed 10s/60s/15m 16686.8 16686.6 16688.2 kH/s max: 16745.9 kH/s
[14:05:02] accepted(4991/99) diff 250.00M avg. effort 111.46% (304 ms)
[14:05:06] accepted(4992/99) diff 250.00M avg. effort 111.21% (304 ms)
[14:05:09] accepted(4993/99) diff 250.00M avg. effort 110.95% (304 ms)
[14:05:26] accepted(4994/99) diff 250.00M avg. effort 110.96% (304 ms)
[14:05:45] speed 10s/60s/15m 16688.3 16688.2 16689.8 kH/s max: 16745.9 kH/s
[14:05:47] accepted(4995/99) diff 250.00M avg. effort 111.05% (304 ms)
[14:05:59] accepted(4996/99) diff 250.00M avg. effort 110.95% (304 ms)
[14:06:22] rejected(4996/100) diff 250.00M "Incorrect share" (304 ms)
[14:06:41] rejected(4996/101) diff 250.00M "Incorrect share" (304 ms)
[14:06:45] speed 10s/60s/15m 16686.8 16687.9 16691.2 kH/s max: 16745.9 kH/s
[14:06:49] accepted(4997/101) diff 250.00M avg. effort 111.60% (304 ms)
[14:06:57] accepted(4998/101) diff 250.00M avg. effort 111.44% (304 ms)
[14:07:18] accepted(4999/101) diff 250.00M avg. effort 111.52% (304 ms)
[14:07:22] accepted(5000/101) diff 250.00M avg. effort 111.26% (304 ms)
[14:07:22] accepted(5001/101) diff 250.00M avg. effort 110.96% (304 ms)
[14:07:25] requesting new job
[14:07:25] new job from 36.255.220.148:9220 diff 250.00M
[14:07:33] accepted(5002/101) diff 250.00M avg. effort 110.84% (304 ms)
[14:07:45] speed 10s/60s/15m 16659.3 16677.0 16690.9 kH/s max: 16745.9 kH/s
[14:07:48] donation mining started
[14:07:57] ADDENDUM APPLIED: 1218281 --> 1218282  10 blocks added
Did you try to re-download scratchpad? If not helping, try to find a way to install older amdgpu-pro drivers
I don't think the scratchpad is the problem,because it happened on all of my AMD rigs,not just one or two。and of couse i tryed to deleted the scratchpad.bin and re-download it......
now i change the amdgpu-pro drivers from 18.10 to 17.5,i hope it will solve the problem...
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
January 13, 2019, 09:59:02 PM
 #356


GPU Driver: Adrenalin 18.6.1 (Compute Mode + Mining Mode)

I use this driver and settings.

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
skygonga
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile
January 14, 2019, 08:18:37 PM
 #357

Help!
My AMD570-4G, core 1100 memory 2000, bbr 1.7M, how can I run 2m?
cryptobtcnut
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
January 15, 2019, 01:22:58 AM
 #358

What do I need to put into "Extra config arguments" field when setting up the custom miner in HiveOS to get this to work?
onecryptoguy
Jr. Member
*
Offline Offline

Activity: 64
Merit: 2


View Profile
January 15, 2019, 04:30:47 AM
 #359

1.where can I find a list of all parameters and what they mean?
2.what is the best starting .bat for 7x GTX 1060 3GB, Windows 10, mining Boolberry?
3.how to OC the cards? More core? More mem? Thx!
tale01
Newbie
*
Offline Offline

Activity: 121
Merit: 0


View Profile
January 15, 2019, 04:49:31 AM
 #360

What do I need to put into "Extra config arguments" field when setting up the custom miner in HiveOS to get this to work?

argument  is the same on windows.

you can see argument with run wildrig.exe --help on windows
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
January 15, 2019, 09:23:45 AM
 #361

Help!
My AMD570-4G, core 1100 memory 2000, bbr 1.7M, how can I run 2m?
You need to increase a core, also don't forget about parameters: --opencl-launch 256x32 --opencl-kernel 4

1.where can I find a list of all parameters and what they mean?
2.what is the best starting .bat for 7x GTX 1060 3GB, Windows 10, mining Boolberry?
3.how to OC the cards? More core? More mem? Thx!
1. wildrig.exe --help Smiley
2. defaul one in cuda-start.bat is fine
3. for NVIDIA mem do the trick
Jengjeng
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
January 15, 2019, 11:12:23 AM
 #362

RX 550 2Gb - BBR - 940khs - is it normal or small? Huh
Not bad, best of cards doing 1MH/s. Have you tried --opencl-kernel 4 parameter? And only some custom timings, not available in public can do up to 1.3MH/s.

is it possible to buy that custom timing ? I want 1.3 kh/s

my rx550 only doing 830kh/s what went wrong?
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
January 15, 2019, 11:28:59 AM
 #363

my rx550 only doing 830kh/s what went wrong?
Probably not using --opencl-kernel 4, lowered core clock, lowered mem clocks or bad timings.
Jengjeng
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
January 15, 2019, 12:43:11 PM
 #364

my rx550 only doing 830kh/s what went wrong?
Probably not using --opencl-kernel 4, lowered core clock, lowered mem clocks or bad timings.

i use:
--opencl-kernel 4, opencl-launch=1912x64

and my gpu 1200mhz, 1100mv. mem 2000mhz, 850 mv. power target : 0%
cryptobtcnut
Newbie
*
Offline Offline

Activity: 31
Merit: 0


View Profile
January 15, 2019, 02:49:35 PM
 #365

What do I need to put into "Extra config arguments" field when setting up the custom miner in HiveOS to get this to work?

argument  is the same on windows.

you can see argument with run wildrig.exe --help on windows

Thanks, it's working now.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
January 15, 2019, 03:50:56 PM
 #366

my rx550 only doing 830kh/s what went wrong?
Probably not using --opencl-kernel 4, lowered core clock, lowered mem clocks or bad timings.

i use:
--opencl-kernel 4, opencl-launch=1912x64

and my gpu 1200mhz, 1100mv. mem 2000mhz, 850 mv. power target : 0%
1912 way too high value for RX550 cards, lower it to 512, and try something like 512x0. But probably you have not so good timings for memory.
skygonga
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile
January 16, 2019, 03:41:49 AM
 #367

Help!
My AMD570-4G, core 1100 memory 2000, bbr 1.7M, how can I run 2m?
You need to increase a core, also don't forget about parameters: --opencl-launch 256x32 --opencl-kernel 4

1.where can I find a list of all parameters and what they mean?
2.what is the best starting .bat for 7x GTX 1060 3GB, Windows 10, mining Boolberry?
3.how to OC the cards? More core? More mem? Thx!
1. wildrig.exe --help Smiley
2. defaul one in cuda-start.bat is fine
3. for NVIDIA mem do the trick

Thanks
skygonga
Newbie
*
Offline Offline

Activity: 52
Merit: 0


View Profile
January 16, 2019, 04:29:23 AM
 #368

What is the best BBR driver for AMD570?
neogeo
Newbie
*
Offline Offline

Activity: 81
Merit: 0


View Profile
January 16, 2019, 04:32:19 AM
 #369

There is no best driver. Just vga card settings (mem timings) and some miner settings.
dwarf0
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
January 20, 2019, 10:38:42 AM
 #370

Hello @andrucrypt
I`m having trouble with worksize setting.  I think it has begun after dotnet-hosting-2.2.1-win installation but nothing changed after I deleted it. Couple of days ago everything was fine and worksize was at 0/256. Now it is "x"/1024. --opencl-launch=256x0 setting makes it 0/1024. With --opencl-launch=256x64 worksize is 64/1024 and miner solves correct shares but my rig is not so stable so I need to make it 0/256 again somehow.
I could just reinstall OS but maybe there is an easier way?
http://prntscr.com/m9lcig
neogeo
Newbie
*
Offline Offline

Activity: 81
Merit: 0


View Profile
January 20, 2019, 10:43:25 AM
 #371

Hello @andrucrypt
I`m having trouble with worksize setting.  I think it has begun after dotnet-hosting-2.2.1-win installation but nothing changed after I deleted it. Couple of days ago everything was fine and worksize was at 0/256. Now it is "x"/1024. --opencl-launch=256x0 setting makes it 0/1024. With --opencl-launch=256x64 worksize is 64/1024 and miner solves correct shares but my rig is not so stable so I need to make it 0/256 again somehow.
I could just reinstall OS but maybe there is an easier way?
http://prntscr.com/m9lcig
Same situation to my rigs.
Afteežr dotnet2.2.1 instaling, my worksise now is x/1024 but not affect mining at all.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
January 20, 2019, 01:23:09 PM
 #372

Hello @andrucrypt
I`m having trouble with worksize setting.  I think it has begun after dotnet-hosting-2.2.1-win installation but nothing changed after I deleted it. Couple of days ago everything was fine and worksize was at 0/256. Now it is "x"/1024. --opencl-launch=256x0 setting makes it 0/1024. With --opencl-launch=256x64 worksize is 64/1024 and miner solves correct shares but my rig is not so stable so I need to make it 0/256 again somehow.
I could just reinstall OS but maybe there is an easier way?

This is not a dot-net, it's Grin miner and its command setx GPU_MAX_WORKGROUP_SIZE 1024... So use --opencl-launch 256x256 now(it should be same as default), or better 256x32 for RX580/RX570.
dwarf0
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
January 20, 2019, 01:36:11 PM
 #373

setx GPU_MAX_WORKGROUP_SIZE 256 did the trick! Thank you!
goodbitprofit
Newbie
*
Offline Offline

Activity: 67
Merit: 0


View Profile
January 26, 2019, 09:31:46 PM
 #374

Hello, I accidently came across here.

I have AMD RX 580 8 gigs

Can I mine with this miner Zcoin - XZC , algo Lyra2z ?

I tried to find few pages back but no any question.
Thanks
Funtik85
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
February 18, 2019, 10:02:19 AM
 #375

Hello! I have a problem!

"wildrig.exe" is not internal or external
command, executable program or batch file.


OS Windows 10x64
bigassboy
Sr. Member
****
Offline Offline

Activity: 373
Merit: 254



View Profile
February 18, 2019, 11:20:22 AM
 #376

Hello! I have a problem!

"wildrig.exe" is not internal or external
command, executable program or batch file.


OS Windows 10x64
I think windows firewall must have deleted your .exe file
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
March 19, 2019, 01:55:01 PM
 #377

Help please,

5-7% rejected shares on mining BBR
10-15 minuts mined good, after sometime rejected share
Two rigs RX550 and RX570

Try mining on
http://mining.blue
purk.miner.rocks
boolberry.luckypool.io

all pools sais that problem is wildrig miner
Linux/HiveOS? This can happen because of bug in AMD drivers and nothing to do here, new version of miner is not planned in near future. If Windows - lower your mem clocks. If you have slow internet - download scratchpad first somewhere with fast internet and copy that file to directory with miner.
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
April 26, 2019, 07:10:00 AM
 #378

do you know P106 hashrate for BBR with wildrig ?
Planning to buy 120 GPU for BBR.

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
igotek
Hero Member
*****
Offline Offline

Activity: 2058
Merit: 608


Online Security & Investment Corporation


View Profile WWW
April 26, 2019, 07:12:20 AM
 #379

Help please,

5-7% rejected shares on mining BBR
10-15 minuts mined good, after sometime rejected share
Two rigs RX550 and RX570

Try mining on
http://mining.blue
purk.miner.rocks
boolberry.luckypool.io

all pools sais that problem is wildrig miner

I have this problem on one of my rigs. The strange thing is the other rigs with the same gpu and settings are fine. (AMD RX570)
I tried everything but the problem still exist Smiley lol

I cannot live, I cannot die, trapped in myself.
Hold my breath as I wish for death. Oh please god, help me !
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
April 26, 2019, 08:28:32 AM
 #380

do you know P106 hashrate for BBR with wildrig ?
Planning to buy 120 GPU for BBR.
NVIDIA's are not so good on BBR as AMD, so don't know if it a good idea Smiley

I have this problem on one of my rigs. The strange thing is the other rigs with the same gpu and settings are fine. (AMD RX570)
I tried everything but the problem still exist Smiley lol
"multi"-version of WildRig already have wildkeccak support in dev-build, and I hope to release it soon. And there this problem should be solved I guess Smiley
Keadyar
Jr. Member
*
Offline Offline

Activity: 224
Merit: 2


View Profile
April 26, 2019, 09:18:42 AM
 #381

"multi"-version of WildRig already have wildkeccak support in dev-build, and I hope to release it soon. And there this problem should be solved I guess Smiley
Many users expect that this problem will be solved very soon. I think nothing is impossible. so that we fill ourselves with a positive result.

Coinsbit Exchange (coinsbit.io) - the best cryptoexchange launched!!!
sukey2008
Member
**
Offline Offline

Activity: 252
Merit: 10


View Profile
April 27, 2019, 08:38:18 AM
 #382

Thanks for this providing this software.
I have one more question. is it detected as malicious by Antiviruses?
Shall i need to add it to the wahite list or shut down my antiviruses software?
Thanks alot
dragonmike
Hero Member
*****
Offline Offline

Activity: 1274
Merit: 556



View Profile
April 27, 2019, 03:46:38 PM
 #383

Thanks for this providing this software.
I have one more question. is it detected as malicious by Antiviruses?
Shall i need to add it to the wahite list or shut down my antiviruses software?
Thanks alot

Most... If not all mining programs are flagged as a virus by the most common antivirus softwares. It's even pointless asking about it. Just put all your miners in an excluded folder and you'll be fine.

As long as you don't download scam miners.
kral_658
Member
**
Offline Offline

Activity: 131
Merit: 10


View Profile
May 20, 2019, 07:18:14 AM
 #384

How to select GPUs ?

I want to use only 11 GPU for mining and i want to use 1 GPU for photoshop.
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
May 20, 2019, 07:43:26 AM
 #385

How to select GPUs ?

I want to use only 11 GPU for mining and i want to use 1 GPU for photoshop.
--opencl-devices 0,1,2
tbearhere
Legendary
*
Offline Offline

Activity: 3136
Merit: 1003



View Profile
July 01, 2019, 11:30:10 PM
Last edit: November 29, 2019, 10:56:02 PM by tbearhere
 #386


Sorry for off topic but I think many here have mined Boolberry BBR. I thought you may like to know BBR to Zano swap. And yes BBR will still be supported after the swap ends July 30th 2019.  Smiley

http://coinswap.zano.org/
kral_658
Member
**
Offline Offline

Activity: 131
Merit: 10


View Profile
November 04, 2019, 07:19:55 PM
 #387

How to select GPUs ?

I want to use only 11 GPU for mining and i want to use 1 GPU for photoshop.
--opencl-devices 0,1,2

wildrig.exe --opencl-devices 1,2,3,4,5,6,7,8,9 --opencl-kernel 4 --safe-scratchpad-update --good-risers --opencl-launch=256x0 --send-stale --url=bbr.luckypool.io:5577


it gives error. Picture:

andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
November 04, 2019, 08:22:19 PM
 #388

How to select GPUs ?

I want to use only 11 GPU for mining and i want to use 1 GPU for photoshop.
--opencl-devices 0,1,2

wildrig.exe --opencl-devices 1,2,3,4,5,6,7,8,9 --opencl-kernel 4 --safe-scratchpad-update --good-risers --opencl-launch=256x0 --send-stale --url=bbr.luckypool.io:5577


it gives error. Picture:


Don't forget to specify --opencl-platform 1
kral_658
Member
**
Offline Offline

Activity: 131
Merit: 10


View Profile
November 05, 2019, 04:49:10 PM
Last edit: November 05, 2019, 05:05:53 PM by kral_658
 #389

it works now. Thx

There is a strange thing about the miner. wildrig was working well before I try to wildrig-multi.
I tried to use wildrig multi for BBR and 2 GPU shows n/a no hashrate. Then i went back to wildrig wildkeccak.
My rig shows no hashrate. I tried the GPUs one by one. 10 GPU works well, 2 GPU shows n/a hashrate.
When i dont select these 2 GPU, the mining is ok. if i select all GPU mining is a big problem.
About the 2 GPU with a problem on mining boolbery on wildrig: The 2 GPU works on wildrig-multi with mining boolbery.
But if i use only 2 gpu. if i use all 12 gpu, 2 of the GPU not work
andrucrypt (OP)
Member
**
Offline Offline

Activity: 719
Merit: 49


View Profile
November 06, 2019, 06:32:34 AM
 #390

it works now. Thx

There is a strange thing about the miner. wildrig was working well before I try to wildrig-multi.
I tried to use wildrig multi for BBR and 2 GPU shows n/a no hashrate. Then i went back to wildrig wildkeccak.
My rig shows no hashrate. I tried the GPUs one by one. 10 GPU works well, 2 GPU shows n/a hashrate.
When i dont select these 2 GPU, the mining is ok. if i select all GPU mining is a big problem.
About the 2 GPU with a problem on mining boolbery on wildrig: The 2 GPU works on wildrig-multi with mining boolbery.
But if i use only 2 gpu. if i use all 12 gpu, 2 of the GPU not work
Did you reboot your rig? If you get n/a, this means GPU hanged, so better to reboot. And unfortunately I still have no idea why that happens on some rigs with wildrig-multi, especially if you tried 0.20.0.3 version with parameters --scratchpad-safe-update
kral_658
Member
**
Offline Offline

Activity: 131
Merit: 10


View Profile
November 23, 2019, 03:02:15 PM
 #391

i have installed a new rig.

Hiveos gives error. Please help me to fix it.


./wildrig: /usr/lib/x86_64-linux-gnu/libcurl.so.4: version `CURL_OPENSSL_3' not found (required by ./wildrig)
custom exited, waiting to cooldown a bit
kral_658
Member
**
Offline Offline

Activity: 131
Merit: 10


View Profile
November 29, 2019, 12:03:37 PM
 #392

The new Hiveos installation gives error on wilrig.exe
t is nvidia gpu rig, so i have to use wildrig.exe to mine boolberry.
help me to find a solution pls
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [All]
  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!