Bitcoin Forum

Alternate cryptocurrencies => Mining (Altcoins) => Topic started by: andrucrypt on July 03, 2018, 08:04:24 AM



Title: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 03, 2018, 08:04:24 AM
WildRig 0.10.5 beta

multi-algo version is here (https://bitcointalk.org/index.php?topic=5023676)

Download for Windows (https://mega.nz/#!OGgVVbJS!_3xRw0QAGoPPhrbp0K5yHqrqUCIkJTTueK2E8So1Xxc)(all versions can be found here (https://mega.nz/#F!fPgyiaIT!s1H9sPT9poK36KiUfDeH7Q))
dependencies: Visual C++ Redistributable 2015 x64 (https://www.microsoft.com/en-us/download/details.aspx?id=48145)
note: don't forget to use 398+ drivers for NVIDIA

Download for Linux (https://mega.nz/#!vL5XEbRB!NGvp2jVWTKV-a0dobjMoxnZc56aqksL0h-pfjy1UAIQ)(no api version (https://mega.nz/#!rS5DFLQK!YGfeIYYl2sWWYnSYJqtK-j2PjqDXpNYxH_OsgMvf7AY))
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 (https://github.com/andru-kun/wildrig/releases/download/0.10.5/wildrig-0.10.5_beta.tar.gz)(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 (http://download.hiveos.farm/custom/wildrig-0.10.5_0.tar.gz)

mirror on github (https://github.com/andru-kun/wildrig/releases/tag/0.10.5)

Discord: https://discord.gg/RkywAu5 (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! :)

coins:
- Boolberry (https://boolberry.com/)
- Purk (http://purkproject.com/)

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 :)

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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: roma__11 on July 03, 2018, 09:17:14 AM
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........


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: skygonga on July 03, 2018, 09:18:38 AM
good Try 0.9.6 now

Still can't run, my different parameters "threads": null


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 03, 2018, 09:28:02 AM
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ть :) A динaмикy c вepcиями дa, вoзмoжнo пoзжe opгaнизyю.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 03, 2018, 09:29:41 AM
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 :) Or it was working and autoconfiguring in previous version?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: zjy on July 03, 2018, 11:35:39 PM
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 :) Or it was working and autoconfiguring in previous version?

can i download it at mega , can't down from google


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Anthony42 on July 04, 2018, 04:48:29 AM
any benchmarks?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 04, 2018, 05:11:08 AM
Uploaded wildrig to mega, hope it will be available now to all :) 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 )


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 04, 2018, 05:13:59 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 04, 2018, 06:08:35 AM
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 :) 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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 04, 2018, 07:27:19 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: zjy on July 04, 2018, 07:57:16 AM
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 :) 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 。。。


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 04, 2018, 08:40:14 AM
ccminer 8000kh for 6 card rig
wildrig  8000kh too 。。。
now compare hashrate on pool :) With wildrig statistics graph should be better for average hashrate than in ccminer.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: zjy on July 04, 2018, 09:16:59 AM
ccminer 8000kh for 6 card rig
wildrig  8000kh too 。。。
now compare hashrate on pool :) With wildrig statistics graph should be better for average hashrate than in ccminer.

how can do loop in ubuntu? Aborted (core dumped)...


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 04, 2018, 09:45:07 AM
ccminer 8000kh for 6 card rig
wildrig  8000kh too 。。。
now compare hashrate on pool :) 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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: zjy on July 04, 2018, 09:51:39 AM
ccminer 8000kh for 6 card rig
wildrig  8000kh too 。。。
now compare hashrate on pool :) 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)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 04, 2018, 10:15:49 AM
[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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Anthony42 on July 04, 2018, 11:22:43 AM
ubuntu 16.04

rx vega 56

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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 04, 2018, 11:26:48 AM
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 :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Anthony42 on July 04, 2018, 11:51:20 AM
https://my-files.ru/0aj9ra

still 2200 kh / s  :(


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: mokrejbandita on July 04, 2018, 12:10:32 PM
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 04, 2018, 12:16:01 PM
https://my-files.ru/0aj9ra

still 2200 kh / s  :(
Man, you are mining PURK using scratchpad from BBR :) 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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: skygonga on July 04, 2018, 02:13:42 PM
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 04, 2018, 07:25:48 PM
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 :P, 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 :) 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).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 04, 2018, 09:35:09 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Anthony42 on July 05, 2018, 01:43:39 AM
what about the temperature algorithm? cold as a cryptonight?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Anthony42 on July 05, 2018, 03:15:22 AM
my hash rate on the coin PURK rx570 - 2020kh/s, is this normal?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 05, 2018, 05:26:45 AM
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 :)).

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ть :) Taк чтo cкopee вceгo yбepy c глaз дoлoй.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 05, 2018, 07:26:18 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 05, 2018, 10:38:58 AM
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



Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 05, 2018, 10:57:01 AM
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дить :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 05, 2018, 02:31:42 PM
Чт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т?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: dwarf0 on July 05, 2018, 02:51:26 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: abudfv2008 on July 05, 2018, 06:26:32 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 05, 2018, 06:35:18 PM
But 1080Ti is real upset - only ~2300
Luke, use ETHlargement (https://bitcointalk.org/index.php?topic=3370685.0) :) It should do ~3.0-3.1MH/s


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 05, 2018, 09:14:45 PM
Released 0.9.9 beta:
- fixed JSON decode failed
- more checks for scratchpad failure


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 05, 2018, 09:16:08 PM
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ть :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: cirlama on July 05, 2018, 09:21:49 PM
But 1080Ti is real upset - only ~2300
Luke, use ETHlargement (https://bitcointalk.org/index.php?topic=3370685.0) :) 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)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 05, 2018, 09:39:35 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: cirlama on July 06, 2018, 06:22:35 AM
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...


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 06, 2018, 06:33:40 AM
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 :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: nordmann666 on July 07, 2018, 03:33:15 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 07, 2018, 03:52:09 PM
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).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on July 07, 2018, 09:34:47 PM
is there any information about power ?

cryptonight or wild keccak has the lower power usage ?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: minerjed on July 07, 2018, 09:49:01 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: minerjed on July 08, 2018, 12:14:30 AM
ok  will do


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: minerjed on July 08, 2018, 02:58:10 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 08, 2018, 07:31:34 AM
https://image.ibb.co/bw8LcT/error_Wild_Rig.png
I just got this error, first time getting it  ??? don't know if it's a bug from the miner or something that can happen sometimes :P
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 08, 2018, 10:36:48 AM
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)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 08, 2018, 05:28:26 PM
Downloaded, 1rst, what you added is not luck, but effort, luck never is more than 99.9% and can be negative ;)
2nd, I noticed a hash drop on the first seconds with this version...
Checked again. No, this is not an effort :) 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 :) 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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 08, 2018, 06:26:34 PM
well, modified a little the intensity and workload and it works again at 6100 KH/s, but it had dropped to 5600 KH/s  :-[
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 :) 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 :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 09, 2018, 07:39:03 PM
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 :))


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 09, 2018, 07:45:17 PM
lol, luck = 100% would be getting a share without doing any hashes, so it's impossible :P
nah, I don't agree :)

Today after donation mining I got some shares rejected because "Duplicate Share":
https://image.ibb.co/gD7tGo/error_Wild_Rig.png  ???
This one is bad, will check my code for thread safeness more. How long it was, till new job or just his three shares?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: 5BTC on July 10, 2018, 03:06:11 AM
Anyone get this running on multi Vega rigs? Trying with ROCM on Ubuntu and fails anytime I enable more than 1 Vega


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 10, 2018, 05:16:07 AM
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?)?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Callanta787 on July 10, 2018, 06:41:00 AM
Anyway to make this work on old GPUs?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 10, 2018, 07:06:35 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 10, 2018, 09:18:27 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 10, 2018, 11:18:28 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 11, 2018, 08:23:56 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: dwarf0 on July 12, 2018, 07:55:08 AM
GTX750Ti's works fine.
[/quote]

What is its hashrate? is it equal to poolside hashrate indication?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 12, 2018, 09:33:19 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 12, 2018, 09:42:10 AM
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).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: dwarf0 on July 12, 2018, 12:48:53 PM
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 :)
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 12, 2018, 01:13:20 PM
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 :)). What about configuration, I will check what can I do here.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: dwarf0 on July 12, 2018, 01:54:24 PM
pacпиcaл вce в личкy


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: willycut on July 13, 2018, 11:21:52 AM
Why my luck is always 0%? last beta .14

rx 480 cards


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 13, 2018, 11:27:46 AM
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 %)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: willycut on July 13, 2018, 02:14:31 PM
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



Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 13, 2018, 02:15:05 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 13, 2018, 02:18:33 PM
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

Oh, now I know where is a problem... will fix that in the next build :) 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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on July 13, 2018, 08:30:05 PM
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.  :)

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  :)

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

 


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 14, 2018, 08:10:56 AM
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:

https://i.imgur.com/mjxWu7O.png

and sometimes works :P
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).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 14, 2018, 08:13:45 AM
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.  :)

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  :)

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 :) 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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 14, 2018, 04:08:15 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: duyquang06 on July 14, 2018, 04:21:21 PM
wow, u update so fast


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on July 14, 2018, 04:23:56 PM
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.  :)

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  :)

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 :) 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. :)    Is --opencl-force1x command for amd only?  Just curious.



Title: Re: WildRig: new miner for Wild Keccak algo
Post by: HonestAbeX1 on July 14, 2018, 05:28:20 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 14, 2018, 06:21:22 PM
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 14, 2018, 06:22:58 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: HonestAbeX1 on July 14, 2018, 10:54:36 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: HonestAbeX1 on July 15, 2018, 04:00:56 AM
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"








Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 15, 2018, 06:37:18 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 15, 2018, 06:43:44 AM
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: abudfv2008 on July 15, 2018, 07:19:11 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 15, 2018, 07:39:32 AM
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: abudfv2008 on July 15, 2018, 11:57:08 AM
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й.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 15, 2018, 12:13:17 PM
К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ния.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: abudfv2008 on July 15, 2018, 02:07:30 PM
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ми


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 15, 2018, 03:52:51 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 15, 2018, 04:36:02 PM
Added custom package for integration with HiveOS.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: abudfv2008 on July 15, 2018, 05:11:18 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 15, 2018, 05:23:27 PM
З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ть.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: HonestAbeX1 on July 15, 2018, 06:04:44 PM
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!


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 15, 2018, 08:02:19 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: locbet on July 16, 2018, 10:11:09 AM
WildRig 0.9.18 beta

Download for Windows (https://mega.nz/#!XbgXVCSZ!t5c7yhL3QYmwAlMK7BaSRBP5KHVZguklDw6bR15pjdU)
(dependencies: Visual C++ Redistributable 2015 x64 (https://www.microsoft.com/en-us/download/details.aspx?id=48145))

Download for Linux (https://mega.nz/#!vXp1gAhR!E7YHR2_s3WMlb7q222Z5AFFzWtJGhHTd17tySDqR9OI)
(dependencies: libcurl4, libuv1, libmicrohttpd10)

Custom package for HiveOS (https://github.com/andru-kun/wildrig/releases/download/0.9.18/wildrig-0.9.18_beta.tar.gz)
(dependencies: libcurl4, libuv1, libmicrohttpd10)

all version can be found here (https://mega.nz/#F!fPgyiaIT!s1H9sPT9poK36KiUfDeH7Q)

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! :)

coins:
- Boolberry (https://boolberry.com/)
- Purk (http://purkproject.com/)

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 :)

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 :D 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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 16, 2018, 11:04:00 AM
"donate-level": 0,     // default donation level is 2%, you can increase it if you want :D 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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 16, 2018, 02:44:36 PM
У м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я...


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 16, 2018, 02:57:10 PM
У м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 %)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on July 16, 2018, 03:44:06 PM
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.  :)

: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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: clintar2 on July 16, 2018, 05:07:29 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: HonestAbeX1 on July 16, 2018, 05:57:34 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 16, 2018, 06:16:37 PM
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.  :)

: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 %)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 16, 2018, 06:26:38 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 16, 2018, 06:43:32 PM
У м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пит )))).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 16, 2018, 06:55:05 PM
П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 :) П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м глянь :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: mrmiroslav on July 16, 2018, 07:39:33 PM
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мным?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 16, 2018, 08:07:06 PM
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ют :) 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мню.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: fluxy12 on July 16, 2018, 08:48:01 PM
Is this miner reserved to russian miners ?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on July 16, 2018, 11:01:09 PM
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.  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on July 16, 2018, 11:11:52 PM
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.  :)

: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. :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on July 16, 2018, 11:29:32 PM
Is this miner reserved to russian miners ?
No... it's for everyone.  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 17, 2018, 02:25:25 AM
П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т...


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: locbet on July 17, 2018, 06:18:04 AM
"donate-level": 0,     // default donation level is 2%, you can increase it if you want :D 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 ????


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 17, 2018, 06:47:12 AM
Unfortunately donate-level is not a float value.

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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: locbet on July 17, 2018, 07:50:05 AM
Unfortunately donate-level is not a float value.

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

OK. I'm try upgrade new miner :)

Thanks


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 17, 2018, 02:20:37 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 17, 2018, 02:21:45 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 17, 2018, 03:51:25 PM
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з.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 17, 2018, 04:46:49 PM
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в"?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 18, 2018, 05:12:47 PM
Пpocтo нa инициaлизaции кapт. Cпиcoк кapт выдaл мaйнep и вce нa этoм.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 18, 2018, 06:38:58 PM
Я н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йнить ).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 18, 2018, 06:47:06 PM
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ги :) Пpaвдa бeз пoдpoбнocтeй. A тaк ббp вepнyли нa cтoкc (https://app.stocks.exchange/en/basic-trade/pair/BTC/BBR/1D).

П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т %)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 18, 2018, 07:06:47 PM
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л.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 18, 2018, 10:53:25 PM
--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).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 19, 2018, 04:49:20 AM
--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 :) 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лью.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 19, 2018, 06:44:41 AM
Oк, cпc зa пoяcнeниe. Дa, я нa нвидии пpoбoвaл 2 пoтoкa.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 20, 2018, 10:54:23 AM
Плюн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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: r00tdgc on July 20, 2018, 12:00:00 PM
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 20, 2018, 02:59:13 PM
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 :)


Title: Tahiti problem
Post by: Dimaeon on July 21, 2018, 11:40:34 AM
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?


Title: Tahiti problem RU
Post by: Dimaeon on July 21, 2018, 11:57:39 AM
Зд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%


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: SPAZM on July 21, 2018, 05:48:01 PM
Д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ю ??? :'(


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 21, 2018, 06:31:08 PM
Д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ю ??? :'(

Дoбpoгo, y wildrig cвoи нacтpoйки :) 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нт.


Title: Re: Tahiti problem
Post by: andrucrypt on July 21, 2018, 06:37:05 PM
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 %)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: SPAZM on July 21, 2018, 07:27:55 PM
Д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ю ??? :'(

Дoбpoгo, y wildrig cвoи нacтpoйки :) 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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: SPAZM on July 21, 2018, 07:41:27 PM
Boт чтo пишeт
https://ibb.co/eEd1Td


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 21, 2018, 07:57:00 PM
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 :)

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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Xdragon on July 21, 2018, 08:01:16 PM
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...


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: SPAZM on July 21, 2018, 08:17:54 PM
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 :)

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 (((


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 21, 2018, 08:52:56 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 21, 2018, 08:53:24 PM
Я п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з?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: SPAZM on July 21, 2018, 09:23:45 PM
Я п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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Xdragon on July 21, 2018, 10:18:59 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on July 21, 2018, 11:35:38 PM
Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 22, 2018, 07:38:56 AM
Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  :)
Not higher than 1000kH/s, and needs +1300 mem overclock(Mind163 posted some results above).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 22, 2018, 09:28:19 AM
Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  :)
CC +0 mem +1300 = 1000h/s.
0/+1000 = 980-990


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 22, 2018, 09:46:32 AM
Д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нт.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 22, 2018, 09:57:40 AM
Д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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on July 22, 2018, 11:28:17 AM
Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  :)
Not higher than 1000kH/s, and needs +1300 mem overclock(Mind163 posted some results above).
Thx  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on July 22, 2018, 11:32:35 AM
Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  :)
CC +0 mem +1300 = 1000h/s.
0/+1000 = 980-990
Thx Mind163.... yes the 1050ti is a direct replacement for the 750ti it seems.  :) 750ti gets up to 970 kh/s at max clocks.  1345 core  +600 mem.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 22, 2018, 01:42:47 PM
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?


Title: Re: Tahiti problem
Post by: Dimaeon on July 22, 2018, 05:49:17 PM
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!


Title: Re: Tahiti problem
Post by: andrucrypt on July 22, 2018, 08:53:23 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 23, 2018, 10:09:41 AM
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ь.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 23, 2018, 11:25:33 AM
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).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 23, 2018, 11:52:56 AM
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 :) Б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бя.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 23, 2018, 01:33:19 PM
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л.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: dwarf0 on July 23, 2018, 02:47:56 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 23, 2018, 05:47:13 PM
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к.дифф


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 23, 2018, 07:44:32 PM
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м.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: dwarf0 on July 23, 2018, 07:58:44 PM
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ю :)

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т.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 24, 2018, 11:09:29 AM
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).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 24, 2018, 01:28:00 PM
П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ти.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 24, 2018, 03:35:49 PM
П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к.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: peteris-apse on July 24, 2018, 05:54:57 PM
Where to get that scratchpad.bin file for other coins on keccak algo?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 24, 2018, 05:59:46 PM
З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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 24, 2018, 06:36:03 PM
Where to get that scratchpad.bin file for other coins on keccak algo?
This miner is for wild keccak algo, not a keccak :)

З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мя.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 24, 2018, 06:44:47 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: plaza on July 24, 2018, 08:22:15 PM
[quote author=andrucrypt

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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 24, 2018, 08:28:11 PM
Я п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 :) У м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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: plaza on July 24, 2018, 08:41:40 PM
Я п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 :) У м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 плиз


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on July 24, 2018, 10:15:21 PM
Where to get that scratchpad.bin file for other coins on keccak algo?
This miner is for wild keccak algo, not a keccak :)

З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т.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 25, 2018, 10:28:13 AM
Thanks to miner.rocks (https://purk.miner.rocks)(Purk pool) and luckypool.io (https://boolberry.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.


Title: Re: WildRig: new miner for Wild Keccak algo-Build 0.9.22
Post by: tbearhere on July 26, 2018, 12:05:48 AM
Thanks to miner.rocks (https://purk.miner.rocks)(Purk pool) and luckypool.io (https://boolberry.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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: plaza on July 26, 2018, 07:08:54 AM
Thanks to miner.rocks (https://purk.miner.rocks)(Purk pool) and luckypool.io (https://boolberry.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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on July 26, 2018, 11:52:52 AM
Thanks to miner.rocks (https://purk.miner.rocks)(Purk pool) and luckypool.io (https://boolberry.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   :)    I don't fully understand the question ..because of translation.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: mrmiroslav on July 26, 2018, 11:59:47 AM
r9 380 2gb Samsung - 1500kh, r9 380 2gb hynix - 1400kh, r9 380 2gb elpida - 1200kh - driver 18.7.1


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on July 26, 2018, 12:18:59 PM
NVIDIA 750ti 900 kh/s at 28 watts.  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 26, 2018, 12:30:07 PM
Thanks to miner.rocks (https://purk.miner.rocks)(Purk pool) and luckypool.io (https://boolberry.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 :) Bышe вpoдe пpocил - чтo пишeт мaйнep в кoнcoли в твoём cлyчaи, кaкaя oшибкa или чтo пpoиcxoдит?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 26, 2018, 04:09:26 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: pwhite11798 on July 27, 2018, 12:30:17 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 27, 2018, 08:43:35 AM
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 27, 2018, 09:05:33 AM
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")


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: pwhite11798 on July 27, 2018, 02:21:31 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: pwhite11798 on July 27, 2018, 03:16:01 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 27, 2018, 04:01:31 PM
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 :) 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).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: skygonga on July 28, 2018, 03:54:04 PM
My 570-4G Samsung, BBR speed 1.65M, why is the speed not 2M? Memory speed 2000, core 1200 ???


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on July 28, 2018, 10:06:20 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: xscxsc on July 29, 2018, 03:18:16 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo-wildrig-0.9.25
Post by: tbearhere on July 31, 2018, 01:24:24 AM
Now I got this. Is that ok? Using 0.9.25.
[21:21:56] GPU #0: yay! found 3 shares at once


Title: Re: WildRig: new miner for Wild Keccak algo-wildrig-0.9.25
Post by: schriss on July 31, 2018, 06:34:01 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo-wildrig-0.9.25
Post by: andrucrypt on July 31, 2018, 04:27:13 PM
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 :) 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 :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on August 01, 2018, 12:18:23 PM

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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: mrmiroslav on August 02, 2018, 05:16:13 AM

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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: dwarf0 on August 02, 2018, 06:52:44 AM
mrmiroslav

memory type and clock speed?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: jaryfaaad on August 03, 2018, 03:07:02 PM
It is really a good try but i am still not able to run the 0.9.6 now.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 06, 2018, 07:14:22 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Iamtutut on August 06, 2018, 09:13:09 PM
How to find a list of minable coins with wild keccack please ? I'm very unfamiliar with this algo. Thanks.


Title: Re: WildRig: new miner for Wild Keccak algo-wildrig-0.9.25
Post by: tbearhere on August 07, 2018, 11:16:21 AM
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 :) 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 :)
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.  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on August 07, 2018, 11:22:26 AM
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.  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: ethereumyeahhh on August 07, 2018, 01:50:14 PM
You must attach your configuration before trying to run into this.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 07, 2018, 06:03:49 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on August 08, 2018, 11:02:57 AM
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.   :)

To note: wildRig is based on open source (free) ccminer.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 09, 2018, 08:56:13 AM
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  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Iamtutut on August 09, 2018, 09:31:05 AM
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.  :)

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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 09, 2018, 10:04:01 AM
Great works for HiveOS. Thanks  :)
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 :)

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 %)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: badfad on August 09, 2018, 12:43:18 PM
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.  :)

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

Purk, BBR, stil not more profitable than nicehash.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 09, 2018, 02:51:44 PM
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.  :)

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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: equestrianbucking on August 09, 2018, 03:50:18 PM
The google drive is not letting you download this is there any other way to download.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: MinedTangerine on August 09, 2018, 04:26:09 PM
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.  :)

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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: nodulelibyane7 on August 09, 2018, 05:16:35 PM
I am not able to download it from google, possible to download it from Mega.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 09, 2018, 05:38:31 PM
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 :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 09, 2018, 05:41:13 PM
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 %)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: badfad on August 10, 2018, 01:11:28 AM
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.  :)

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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: MinedTangerine on August 10, 2018, 10:53:34 AM
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 :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: badfad on August 10, 2018, 12:07:02 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 10, 2018, 02:52:16 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 12, 2018, 03:28:29 PM
for HiveOS status (status on, speed hash) is not show but miner is running  :-\


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 12, 2018, 05:04:37 PM
for HiveOS status (status on, speed hash) is not show but miner is running  :-\
Hm, and what miner shows? Can you grab custom miner logs(that HiveOS set for $CUSTOM_LOG_BASENAME variable)?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: staineddreserved7 on August 12, 2018, 10:28:28 PM
The wild rig is good and have been uploaded for some great use.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 13, 2018, 02:11:33 AM
for HiveOS status (status on, speed hash) is not show but miner is running  :-\
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 ?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 13, 2018, 07:43:46 AM
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 13, 2018, 08:26:29 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 13, 2018, 08:38:47 AM
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? :)

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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 13, 2018, 09:04:54 AM
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? :)

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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 13, 2018, 09:17:52 AM
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? :)

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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 13, 2018, 09:38:03 AM
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? :)

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  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 13, 2018, 09:44:41 AM
Sorry, i dont worry about that.
But I'm worry :))) So it will be very helpful to get that log if possible :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 13, 2018, 09:50:27 AM
Sorry, i dont worry about that.
But I'm worry :))) So it will be very helpful to get that log if possible :)

I don't have computer skill for get that :'(
Could you re-check config file again.
 :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 14, 2018, 06:41:13 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 15, 2018, 05:54:06 AM
Sorry, i dont worry about that.
But I'm worry :))) So it will be very helpful to get that log if possible :)

I think something wrog about file h-stats.sh  :P


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 15, 2018, 06:23:11 AM
I think something wrog about file h-stats.sh  :P
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on August 15, 2018, 02:28:06 PM
П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 :).
Ha мoй взгляд, из нepeaлизoвaнныx нa AMД aлгopитмoв
1) Лиpa2з
2) PHI2
3) HEX


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: adoress on August 15, 2018, 02:40:41 PM
Any info about adding this algo to SMOS?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 15, 2018, 07:18:21 PM
П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 :).
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 :) 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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 15, 2018, 07:34:35 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on August 16, 2018, 09:09:40 PM
П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 :).
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 :) 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ции).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Satunaimrotes on August 17, 2018, 02:11:14 AM
 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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 17, 2018, 05:17:49 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: badfad on August 18, 2018, 02:52:00 AM
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  ::)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: locbet on August 18, 2018, 07:47:50 AM
How to set static diff on miner tool


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 19, 2018, 09:22:54 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: krjalone on August 24, 2018, 02:29:50 PM
Are we close yet to launch new miner version?  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on August 24, 2018, 07:14:54 PM
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:
http://fs5.directupload.net/images/180824/zi5bzv7x.png


Picture 2:
http://fs5.directupload.net/images/180824/zrhlivwu.png

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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 24, 2018, 07:48:39 PM
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?  :)
Probably tomorrow I will release it :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on August 24, 2018, 08:45:14 PM

@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.



Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Mind163 on August 24, 2018, 10:56:29 PM
The higher the core and memory frequencies are on AMD, the greater the hashed.
Пpи 1250 ~ 2150-2200 Kh/s


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on August 24, 2018, 11:32:56 PM
...
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 26, 2018, 07:09:39 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 27, 2018, 03:55:56 AM
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 :D
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  :'(

I back to use version 0.9x. It very stable.

Can you test Mine PURK with kern 3 or 4
Thanks



Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 27, 2018, 06:06:24 AM
I mine with this version over 6 hour.
Hashrate improve 7% (with kernal 3 and 4). Good job :D
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  :'(

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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 27, 2018, 07:00:18 AM
Reverted back submit method, new builds already available and should work now.

IMPORTANT: EVERYONE, please update to new version 0.10.5


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 27, 2018, 09:30:52 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 27, 2018, 11:17:26 AM
what does it mean "--send-stale"  ???


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 27, 2018, 11:23:53 AM
what does it mean "--send-stale"  ???
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 27, 2018, 11:28:24 AM
what does it mean "--send-stale"  ???
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  ;)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 27, 2018, 11:37:56 AM
Thanks,

Now, I mine with ver 0.10.5
Will report result again  ;)
Also, specify please with which build, Windows, Linux or HiveOS? :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 27, 2018, 12:27:36 PM
Thanks,

Now, I mine with ver 0.10.5
Will report result again  ;)
Also, specify please with which build, Windows, Linux or HiveOS? :)

Windows and HiveOS (not show hashrate)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on August 27, 2018, 12:50:39 PM
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.  ;)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 27, 2018, 12:52:21 PM
not show hashrate
Working on that :) 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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 27, 2018, 12:59:40 PM
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.  ;)

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 :) 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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 27, 2018, 01:04:41 PM
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)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 27, 2018, 01:12:21 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 27, 2018, 01:18:40 PM
UPDATE: fairpool now should work with 0.10.4 build too, thanks to admin effort. Anyway, still better to update version and check everything.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on August 27, 2018, 02:40:22 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on August 31, 2018, 07:14:01 PM
Made a discord group (https://discord.gg/RkywAu5) for support/etc. :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Maximdv on September 02, 2018, 01:15:00 AM
П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ты.   


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on September 02, 2018, 07:27:33 AM
П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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Maximdv on September 02, 2018, 07:33:37 AM
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ты?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on September 02, 2018, 07:57:53 AM
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ть.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on September 04, 2018, 10:18:11 AM
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



Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on September 04, 2018, 11:31:39 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on September 04, 2018, 07:23:15 PM

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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on September 10, 2018, 11:52:45 PM
Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  :)
CC +0 mem +1300 = 1000h/s.
0/+1000 = 980-990
What do you get with +150 CC  +1300 mem ?  thx  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tybiboune on September 13, 2018, 03:12:55 PM
Hi! Thanks for this app :)
I just have one question: is it detected as malicious by Antiviruses? Especially KASPERSKY?

Thanks for your help!


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on September 13, 2018, 03:29:56 PM
Hi! Thanks for this app :)
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 (https://www.virustotal.com/#/file/e76f3428d57f133395fa636d83b379453ba684978b7d486f937f03fef90b19b9/detection) results. Some antiviruses recognize it as mining software, so probably they will try to remove it from PC.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on September 13, 2018, 07:57:58 PM

Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  :)

Gigabyte 1050TI 4GB with +590 Memory: 913-915 kh/s


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: skygonga on September 18, 2018, 10:32:46 AM

@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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: oneblagobl on September 18, 2018, 10:40:10 AM
thanks for the new interface
 :o


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on September 18, 2018, 07:24:11 PM

Anyone have a 1050ti mining this algo? Plz what is your hashrate?  thx  :)

Gigabyte 1050TI 4GB with +590 Memory: 913-915 kh/s


Thx  :)   What if you upped your core clock too?  thx


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on September 18, 2018, 07:56:15 PM
nothing with core. only memory.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on September 21, 2018, 09:01:41 PM
nothing with core. only memory.

Are you able to up the core for a test? Thx  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on September 26, 2018, 06:17:40 PM
Please upload version 0.9.9 for HiveOS on github.
I like that version  ;D Thanks


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Anwil on October 15, 2018, 10:30:30 AM
RX Vega 56 4500))) Good


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: rambetiko on October 15, 2018, 10:33:24 PM
my vega 64 hash 5518 kh. how to up 6 mh? i use regedit undervolt


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on October 23, 2018, 03:52:04 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Sharpeich on October 25, 2018, 09:15:33 AM
my vega 64 hash 5518 kh. how to up 6 mh? i use regedit undervolt

my vega64 shows max 5700 k/h. 6000 unreachable


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: menztc6 on October 27, 2018, 06:40:09 AM
How to config scrip mine bbr mix nvidia and amd in my rig ?
2 amd +4 nvidia


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on October 27, 2018, 06:54:53 PM
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)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on October 27, 2018, 06:55:29 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on October 28, 2018, 10:25:25 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on October 28, 2018, 01:01:37 PM
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).


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on October 28, 2018, 06:21:48 PM
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)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Zordon on October 29, 2018, 08:29:19 AM
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Zordon on October 29, 2018, 08:31:43 AM
yжe пpoчитaл пpo peжeкты нa вcex кpoмe kernel 0 :(


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on October 29, 2018, 08:38:34 AM
yжe пpoчитaл пpo peжeкты нa вcex кpoмe kernel 0 :(
Эт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м.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Zordon on October 29, 2018, 08:51:25 AM
andrucrypt
Блaгoдapю. Toгдa мoжнo kernel 4 пpoбoвaть, интeнcивнocть тoлькo yбaвить.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Miner108 on October 31, 2018, 02:57:27 PM
Dear dev, I really look forward to the function of the failover pool in pools.txt file..


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on October 31, 2018, 05:56:55 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on November 01, 2018, 08:55:26 AM
Hi dev,
What about progress "statistics doesn't work in HiveOS GUI(working on that)" ?

I still need it   ;D

Thanks


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on November 01, 2018, 08:57:59 AM
Hi dev,
What about progress "statistics doesn't work in HiveOS GUI(working on that)" ?

I still need it   ;D

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 )


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on November 01, 2018, 09:25:29 AM
Hi dev,
What about progress "statistics doesn't work in HiveOS GUI(working on that)" ?

I still need it   ;D

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  ;D


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: abc-nv on November 02, 2018, 06:49:14 PM
Люди д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://www.directupload.net)
http://fs1.directupload.net/images/181102/owqsqz6j.png (http://www.directupload.net)
http://fs1.directupload.net/images/181102/vkshvtxf.png (http://www.directupload.net)

п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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on November 02, 2018, 08:16:21 PM
Люди д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://www.directupload.net)
http://fs1.directupload.net/images/181102/owqsqz6j.png (http://www.directupload.net)
http://fs1.directupload.net/images/181102/vkshvtxf.png (http://www.directupload.net)

п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" ?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on November 02, 2018, 11:31:20 PM
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.

 ;D ;D ;D

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.

 ;D ;D ;D ;D

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.

 ;D ;D ;D ;D

scrathpadfile_minerrocks_bbr
scrathpadfile_minerrocks_purk
scrathpadfile_luckypoolio_bbr
scrathpadfile_luckypoolio_purk

+Merit :)



Title: Re: WildRig: new miner for Wild Keccak algo
Post by: abc-nv on November 03, 2018, 05:42:18 AM
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 (http://www.directupload.net)

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ти ?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on November 03, 2018, 08:25:07 AM
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 (http://www.directupload.net)

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мню) :) Чтo кacaeтcя cтaты в HiveOS - фикc oжидaeтcя нa этиx выxoдныx.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: abc-nv on November 07, 2018, 04:48:35 PM
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мню) :) Чт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://www.directupload.net)
http://fs1.directupload.net/images/181107/wih7xygn.png (http://www.directupload.net)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on November 08, 2018, 02:39:22 AM

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:
http://fs1.directupload.net/images/181108/2podenfw.png


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: WhyMe on November 09, 2018, 12:29:26 AM
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 ...


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: marcos5872 on November 09, 2018, 07:39:58 AM

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:
http://fs1.directupload.net/images/181108/2podenfw.png

I have the same porblem, a lot of rejected share without reason.... Any help for this?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on November 09, 2018, 07:48:21 AM
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мню) :) Чт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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on November 09, 2018, 07:49:51 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on November 09, 2018, 07:50:46 AM

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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: skygonga on November 09, 2018, 05:50:29 PM
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: WhyMe on November 10, 2018, 02:28:02 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on November 10, 2018, 04:24:38 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: WhyMe on November 10, 2018, 04:58:13 PM
Thanks for explanations :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: koni016 on November 12, 2018, 01:20:14 PM
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on November 12, 2018, 01:24:27 PM
Scratchpad size increased, so now time to try recommended settings as for BBR coin. Set --opencl-launch to 512x32


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: menztc6 on November 13, 2018, 04:52:28 AM
Why job reject "Incorrect Share"
Mine BBR

https://www.img.live/image/vs3wa
https://www.img.live/images/2018/11/13/1542084363365.th.jpg


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on November 13, 2018, 06:10:42 AM
Why job reject "Incorrect Share"
Mine BBR

https://www.img.live/image/vs3wa
https://www.img.live/images/2018/11/13/1542084363365.th.jpg
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on November 14, 2018, 10:25:36 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on November 17, 2018, 09:00:52 PM
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 ?  :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on November 17, 2018, 09:05:41 PM
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  ;D :D


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Juniormkl on November 18, 2018, 12:20:57 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: ManDoneKTM on December 07, 2018, 12:17:39 AM
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 ?!


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on December 13, 2018, 04:27:32 PM
Anyone know what is causing this plz...thx.  :)

 [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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: powerstr on December 23, 2018, 05:18:49 AM
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



Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on December 23, 2018, 12:36:17 PM
is there any news about temp ?
two gpu fans failed and i didnt notice. gpus are out of order now :(


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on December 24, 2018, 05:31:46 AM
is it possiblee to order GPUs acording to hwinfo and or OverDriveNToll order ?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on December 25, 2018, 08:59:58 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on January 07, 2019, 10:44:52 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on January 07, 2019, 10:46:13 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on January 07, 2019, 10:48:38 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on January 07, 2019, 11:05:55 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on January 07, 2019, 12:07:05 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on January 07, 2019, 01:44:21 PM
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 ?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on January 07, 2019, 03:58:38 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on January 07, 2019, 04:50:42 PM

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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on January 07, 2019, 05:41:18 PM

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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: kkkwww on January 07, 2019, 09:19:06 PM
RX 550 2Gb - BBR - 940khs - is it normal or small? ???


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on January 08, 2019, 07:05:22 AM
RX 550 2Gb - BBR - 940khs - is it normal or small? ???
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: kkkwww on January 08, 2019, 04:28:12 PM
RX 550 2Gb - BBR - 940khs - is it normal or small? ???
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!


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: neogeo on January 09, 2019, 06:01:55 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on January 09, 2019, 08:05:57 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: neogeo on January 09, 2019, 09:07:29 AM
Kernel 4 anycase and tried  512x32 with poor results.
All cards have Hynix mem with same clocks 1200/2000. Those 8GB have poorest results...
:(


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on January 11, 2019, 10:44:38 PM
RX 550 2Gb - BBR - 940khs - is it normal or small? ???
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: ustcstone on January 13, 2019, 06:18:45 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on January 13, 2019, 09:33:15 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on January 13, 2019, 12:16:54 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: TerpFan on January 13, 2019, 12:26:40 PM
Anyone have an optimized .bat file for Vega64? I'm trying to run the x16 algo. Thanks!


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on January 13, 2019, 12:58:55 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: ustcstone on January 13, 2019, 02:18:48 PM
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...


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on January 13, 2019, 09:59:02 PM

GPU Driver: Adrenalin 18.6.1 (Compute Mode + Mining Mode)

I use this driver and settings.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: skygonga on January 14, 2019, 08:18:37 PM
Help!
My AMD570-4G, core 1100 memory 2000, bbr 1.7M, how can I run 2m?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: cryptobtcnut on January 15, 2019, 01:22:58 AM
What do I need to put into "Extra config arguments" field when setting up the custom miner in HiveOS to get this to work?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: onecryptoguy on January 15, 2019, 04:30:47 AM
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!


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tale01 on January 15, 2019, 04:49:31 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on January 15, 2019, 09:23:45 AM
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 :)
2. defaul one in cuda-start.bat is fine
3. for NVIDIA mem do the trick


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Jengjeng on January 15, 2019, 11:12:23 AM
RX 550 2Gb - BBR - 940khs - is it normal or small? ???
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?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on January 15, 2019, 11:28:59 AM
my rx550 only doing 830kh/s what went wrong?
Probably not using --opencl-kernel 4, lowered core clock, lowered mem clocks or bad timings.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Jengjeng on January 15, 2019, 12:43:11 PM
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%


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: cryptobtcnut on January 15, 2019, 02:49:35 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on January 15, 2019, 03:50:56 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: skygonga on January 16, 2019, 03:41:49 AM
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 :)
2. defaul one in cuda-start.bat is fine
3. for NVIDIA mem do the trick

Thanks


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: skygonga on January 16, 2019, 04:29:23 AM
What is the best BBR driver for AMD570?


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: neogeo on January 16, 2019, 04:32:19 AM
There is no best driver. Just vga card settings (mem timings) and some miner settings.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: dwarf0 on January 20, 2019, 10:38:42 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: neogeo on January 20, 2019, 10:43:25 AM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on January 20, 2019, 01:23:09 PM
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
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: dwarf0 on January 20, 2019, 01:36:11 PM
setx GPU_MAX_WORKGROUP_SIZE 256 did the trick! Thank you!


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: goodbitprofit on January 26, 2019, 09:31:46 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Funtik85 on February 18, 2019, 10:02:19 AM
Hello! I have a problem!

"wildrig.exe" is not internal or external
command, executable program or batch file.


OS Windows 10x64


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: bigassboy on February 18, 2019, 11:20:22 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on March 19, 2019, 01:55:01 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on April 26, 2019, 07:10:00 AM
do you know P106 hashrate for BBR with wildrig ?
Planning to buy 120 GPU for BBR.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: igotek on April 26, 2019, 07:12:20 AM
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 :) lol


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on April 26, 2019, 08:28:32 AM
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 :)

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 :) 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 :)


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: Keadyar on April 26, 2019, 09:18:42 AM
"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 :)
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: sukey2008 on April 27, 2019, 08:38:18 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: dragonmike on April 27, 2019, 03:46:38 PM
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.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: kral_658 on May 20, 2019, 07:18:14 AM
How to select GPUs ?

I want to use only 11 GPU for mining and i want to use 1 GPU for photoshop.


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on May 20, 2019, 07:43:26 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: tbearhere on July 01, 2019, 11:30:10 PM

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.  :)

http://coinswap.zano.org/


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: kral_658 on November 04, 2019, 07:19:55 PM
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:
https://s19.directupload.net/images/191104/omhauq8k.png


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on November 04, 2019, 08:22:19 PM
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:
https://s19.directupload.net/images/191104/omhauq8k.png

Don't forget to specify --opencl-platform 1


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: kral_658 on November 05, 2019, 04:49:10 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: andrucrypt on November 06, 2019, 06:32:34 AM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: kral_658 on November 23, 2019, 03:02:15 PM
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


Title: Re: WildRig: new miner for Wild Keccak algo
Post by: kral_658 on November 29, 2019, 12:03:37 PM
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