Bitcoin Forum

Alternate cryptocurrencies => Mining (Altcoins) => Topic started by: HBCCACTIVATE on October 25, 2017, 09:01:32 AM



Title: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: HBCCACTIVATE on October 25, 2017, 09:01:32 AM

Updated:

Hi,

i found a way to enable HBCC on more than 4 Vega cards and implemented it in a tool for you.
In this thread I will offer you two tools: HBCC-Activator and a modified version of xmr-stak.
Due to license restrictions I am not able to offer you both tools in one .exe file and have to offer both tools as a standalone version.

The modified version of xmr-stak-amd is open source amd will just mine for you with regular hbcc-settings. The source code of the modified version is uploaded on github.

The HBCC-Activator is close source and activates HBCC on all of your Vega cards. I use it on two of my rigs with 8 Vega cards each, 8 gb system memory and  100gb virtual memory. If you do not want HBCC-Activator to throw errors, you have to download it and save it in the same directory as the executable of the xmr-stak-amd-miner (modified version) and use this miner. <- License restriction.



Requirements:
- Settings like described here: https://www.reddit.com/r/MoneroMining/comments/74hjqn/monero_and_vega_the_definitive_guide/
- local admin privileges
- A mining rig with Vega 64 / 56 gpus

Recommendations:
- Use overdriventool for optimal automation!
- Create a scheduled task to run my tool after system startup
   or: create a Batch-File to run this tool as administrator and dactivate the uac (not really recommended)

Known issues:
- TLS-Connection of the miner is not working!


Virustotal:
Miner.exe: :  [url=https://www.virustotal.com/#/file/d5a1ef7e0f82365d038816fafb1146c2ba840621580a48677e1429af3b1d4499]https[Suspicious link removed]:  [url]https://www.virustotal.com/#/file/d5a1ef7e0f82365d038816fafb1146c2ba840621580a48677e1429af3b1d4499]https://www.virustotal.com/#/file/d5a1ef7e0f82365d038816fafb1146c2ba840621580a48677e1429af3b1d4499]https[Suspicious link removed]:  [url]https://www.virustotal.com/#/file/d5a1ef7e0f82365d038816fafb1146c2ba840621580a48677e1429af3b1d4499 (http://https[Suspicious link removed)

Proof of Hashrate: https://image.ibb.co/bHmzvm/Hashrate.jpg



If you profit from this tool or just want to say thank you, I would appreciate a Monero donation to:
Donation wallet: 42mgJMe9RAgRNWkxvvPAxjCFcekKja3DqWCgfhN8ghaZKNezbNH1ww9fiJWmRLV51Z1jTs4sxrfyEd3 rAVK1pvKcCfHKGUM



Proof on Youtube (old version - one file):
https://youtu.be/cAsjwUqr3mk (https://youtu.be/cAsjwUqr3mk)


Download Link:
Modified xmr-stak-amd miner: https://mega.nz/#!pix0CYAL!1ZkOybDwDoF1rivO6QjsuQoReEMNcC61nCeIk5wK1XQ (https://mega.nz/#!pix0CYAL!1ZkOybDwDoF1rivO6QjsuQoReEMNcC61nCeIk5wK1XQ)
HBCC-Activator: https://mega.nz/#!Mmp3BS6Y!BSNYVRHYF_7lSv6Y9TOgbLPhbZGvvixPDnciw0o15FE (https://mega.nz/#!Mmp3BS6Y!BSNYVRHYF_7lSv6Y9TOgbLPhbZGvvixPDnciw0o15FE)



Edit: Source code of modified version:
https://github.com/HBCC/xmr-stak-amd (https://github.com/HBCC/xmr-stak-amd)



Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: keksov on October 25, 2017, 10:02:36 AM
a modified version of xmr-stak source please! It's GNU licencesed...


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: HBCCACTIVATE on October 25, 2017, 10:34:10 AM
a modified version of xmr-stak source please! It's GNU licencesed...

Thank you for the hint. I added a link to the source code.  :)


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: l1xx on October 25, 2017, 11:17:48 AM
Anyone brave enough to try this?


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: keksov on October 25, 2017, 11:26:51 AM
Please commit all of your changes. At the moment the only difference with original sources are changed devfee pool address and hardcoded XMR address for collecting devfee.
Pretty harmful, but useless.

full diff https://github.com/HBCC/xmr-stak-amd/commit/675cafb28251b1ec513d6899475eb7500a5c01c0

Original executor.h https://    github.com/fireice-uk/xmr-stak-amd/blob/master/executor.h
Original executor.cpp https://    github.com/fireice-uk/xmr-stak-amd/blob/master/executor.cpp
Code:
const char* dev_pool_addr = jconf::inst()->GetTlsSetting() ? "donate.xmr-stak.net:6666" : "donate.xmr-stak.net:3333";
Code:
if(!pool->cmd_login("", ""))

Modified executor.h https://    github.com/HBCC/xmr-stak-amd/blob/master/executor.h
Code:
const char* dev_pool_addr = jconf::inst()->GetTlsSetting() ? "xmr-eu1.nanopool.org:14444" : "xmr-eu2.nanopool.org:14444";
Code:
if(!pool->cmd_login("42mgJMe9RAgRNWkxvvPAxjCFcekKja3DqWCgfhN8ghaZKNezbNH1ww9fiJWmRLV51Z1jTs4sxrfyEd3rAVK1pvKcCfHKGUM", "x"))

Compare original executor.cpp and modified executor.h
At the moment it looks very suspicious. Provide us please with more info.




Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: l1xx on October 25, 2017, 11:37:27 AM
Please commit all of your changes. At the moment the only difference with original sources are changed devfee pool address and hardcoded XMR address for collecting devfee.
Pretty harmful, but useless.

full diff https://github.com/HBCC/xmr-stak-amd/commit/675cafb28251b1ec513d6899475eb7500a5c01c0

Original executor.h https://    github.com/fireice-uk/xmr-stak-amd/blob/master/executor.h
Original executor.cpp https://    github.com/fireice-uk/xmr-stak-amd/blob/master/executor.cpp
Code:
const char* dev_pool_addr = jconf::inst()->GetTlsSetting() ? "donate.xmr-stak.net:6666" : "donate.xmr-stak.net:3333";
Code:
if(!pool->cmd_login("", ""))

Modified executor.h https://    github.com/HBCC/xmr-stak-amd/blob/master/executor.h
Code:
const char* dev_pool_addr = jconf::inst()->GetTlsSetting() ? "xmr-eu1.nanopool.org:14444" : "xmr-eu2.nanopool.org:14444";
Code:
if(!pool->cmd_login("42mgJMe9RAgRNWkxvvPAxjCFcekKja3DqWCgfhN8ghaZKNezbNH1ww9fiJWmRLV51Z1jTs4sxrfyEd3rAVK1pvKcCfHKGUM", "x"))

Compare original executor.cpp and modified executor.h
At the moment it looks very suspicious. Provide us please with more info.




um, whats wrong with changing the dev fee address to his address, as long as the rest of the programm works as intended?

We do not really care who gets the 1% fee, as long all cards are hashing at full speed. The question is - is it working as intended and is this the only difference to the original program?


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: HBCCACTIVATE on October 25, 2017, 11:42:07 AM
Hey,

Its working on all of my Vega rigs. I uploaded the source code of the modified xmr-stak.
The part which activates hbcc and calls the miner is not open source.

If the license of xmr-stack does not allow this, I will delete it. Please let me know.




Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: keksov on October 25, 2017, 12:03:47 PM
@l1xx As OP stated the rest of his code is closed source. I don't care about devfee.

@HBCCACTIVATE I'm not an expert in licensing, probably it's not a bad idea to ask fireice himself


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Mattthev on October 25, 2017, 12:17:16 PM
Hey,

Its working on all of my Vega rigs. I uploaded the source code of the modified xmr-stak.
The part which activates hbcc and calls the miner is not open source.

If the license of xmr-stack does not allow this, I will delete it. Please let me know.

Looks good, dev fee for your address is completly fine, but I think GNU GPL say that you have to give all source codes if you release it to the public.

EDIT: here is free version https://bitcointalk.org/index.php?topic=2002025.msg23619746#msg23619746


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: jmumich on October 25, 2017, 12:26:05 PM
Hey,

Its working on all of my Vega rigs. I uploaded the source code of the modified xmr-stak.
The part which activates hbcc and calls the miner is not open source.

If the license of xmr-stack does not allow this, I will delete it. Please let me know.

Looks good, dev fee for your address is completly fine, but I think GNU GPL say that you have to give all source codes if you release it to the public.


That's correct - the OP is violating the rights of the copyright holder by distributing this binary without the added code.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: HBCCACTIVATE on October 25, 2017, 12:37:30 PM
Hey,

Its working on all of my Vega rigs. I uploaded the source code of the modified xmr-stak.
The part which activates hbcc and calls the miner is not open source.

If the license of xmr-stack does not allow this, I will delete it. Please let me know.

Looks good, dev fee for your address is completly fine, but I think GNU GPL say that you have to give all source codes if you release it to the public.


That's correct - the OP is violating the rights of the copyright holder by distributing this binary without the added code.

I will check the license agreement again. If this is true I will publish a new version...


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Mattthev on October 25, 2017, 12:39:47 PM
I will check the license agreement again. If this is true I will publish a new version...

https://www.gnu.org/licenses/gpl-faq.en.html#GPLRequireSourcePostedPublic


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: fr4nkthetank on October 25, 2017, 01:20:53 PM
yeah highly doubtful.  HBCC is not something XMR-STAK can control directly so I don't see....oh wait dev fee is changed.  so its just a recompiled xmrstak with a changed dev fee ?  I really dont see hbcc problem solving here at all.  how much ram do you have anyway


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: HBCCACTIVATE on October 25, 2017, 01:32:41 PM
yeah highly doubtful.  HBCC is not something XMR-STAK can control directly so I don't see....oh wait dev fee is changed.  so its just a recompiled xmrstak with a changed dev fee ?  I really dont see hbcc problem solving here at all.  how much ram do you have anyway

Xmr-stak does not do the trick... i run a simple call of xmr-stack after activating hbcc.
I will reupload the tool after checking the license.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Rampage89 on October 25, 2017, 03:55:57 PM
yeah highly doubtful.  HBCC is not something XMR-STAK can control directly so I don't see....oh wait dev fee is changed.  so its just a recompiled xmrstak with a changed dev fee ?  I really dont see hbcc problem solving here at all.  how much ram do you have anyway

Xmr-stak does not do the trick... i run a simple call of xmr-stack after activating hbcc.
I will reupload the tool after checking the license.

It would help to gain trust for your solution if you could attach screenshot with results from xmr-stak-amd (connection length, submited shares, error report, hashrate on the pool side, etc..).

Anyway, i suspect that the issue has been resolved by the Fall Creators update with 17.10.2 AMD driver. Can anyone confirm my hypothesis? Unfortunately, i don't have physical access to my rigs ATM.

The program in the forked repo is not the same as presented in video on youtube. If you search for the added console output at the beginning (for example "HBCC will be activated"), you will find 0 results. Since it is asking for admin permissions, it is probably changing registry.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: l1xx on October 25, 2017, 07:10:42 PM
Hey,

Its working on all of my Vega rigs. I uploaded the source code of the modified xmr-stak.
The part which activates hbcc and calls the miner is not open source.

If the license of xmr-stack does not allow this, I will delete it. Please let me know.

Looks good, dev fee for your address is completly fine, but I think GNU GPL say that you have to give all source codes if you release it to the public.


Did you try the app? Is it really working? After watching the video, it looks like he's not even setting HBCC sliders with Wattmann.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Mattthev on October 25, 2017, 07:38:31 PM
Did you try the app? Is it really working? After watching the video, it looks like he's not even setting HBCC sliders with Wattmann.
I don't have any VEGA to try :D


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: oomurashin on October 25, 2017, 08:28:20 PM
Download Link:
Link temporarily removed to check license  :'( :'( :'( :'( :'(


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: l1xx on October 25, 2017, 08:43:26 PM
Download Link:
Link temporarily removed to check license  :'( :'( :'( :'( :'(

I have it saved , but have not yet tried, as its too big hassle to make everything work again in case its not working with it , so I will wait for the next restart. Wanna try it yourself? Will PM u a download link.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: HBCCACTIVATE on October 25, 2017, 10:10:27 PM
I splitted the tool in two standalone .exe-files due to xmr-stak-amd license restrictions.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Django69 on October 25, 2017, 10:23:22 PM
it's works only with your modified xmr-stak? ...


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: l1xx on October 25, 2017, 10:39:42 PM
I splitted the tool in two standalone .exe-files due to xmr-stak-amd license restrictions.

And the hbcc enabler is usable without the second file ?

Also, can you please make a video with the new files, and showing also the connection to the server (C) and the results too (R), besides the hashrate ;) ?



Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Django69 on October 25, 2017, 10:54:24 PM
I splitted the tool in two standalone .exe-files due to xmr-stak-amd license restrictions.

And the hbcc enabler is usable without the second file ?

Also, can you please make a video with the new files, and showing also the connection to the server (C) and the results too (R), besides the hashrate ;) ?



no you can use the hbcc enabler only with the his miner, probably a checksum verification...but it's works, i have tester in my rig of 4 vega but not in TLS


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: l1xx on October 25, 2017, 11:16:21 PM
I splitted the tool in two standalone .exe-files due to xmr-stak-amd license restrictions.

And the hbcc enabler is usable without the second file ?

Also, can you please make a video with the new files, and showing also the connection to the server (C) and the results too (R), besides the hashrate ;) ?



no you can use the hbcc enabler only with the his miner, probably a checksum verification...but it's works, i have tester in my rig of 4 vega but not in TLS

So the thing is real deal?


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: jmumich on October 25, 2017, 11:59:01 PM

So the thing is real deal?

Seems to work well - from what I can tell it automates the process of manually toggling the HBCC slider. Much faster (and MUCH easier) than doing it manually. As long as both tools are together, the HBCC-activator runs first, the screen flashes a few times, and then it calls the miner.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: keksov on October 26, 2017, 04:11:40 AM
Now Windows defender reports Trojan:Win32/Fuerboss.C!cl in HBCC-Activator.zip
I have to admit that Virustotal reports no threats in it... at least at the moment


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: jmumich on October 26, 2017, 04:25:00 AM
Now Windows defender reports Trojan:Win32/Fuerboss.C!cl in HBCC-Activator.zip
I have to admit that Virustotal reports no threats in it... at least at the moment

That happened to me too when I went to install it on another rig. Both zip and bin check out clean in Virustotal.

Worst they can do is direct all the hashpower to themselves, which they could do anyway with a binary - no need for a trojan.

But I wouldn't run on a machine you use for anything else until this is cleared up. For a mining rig, again, can't see the harm - I'll notice if extra hash is stolen at the pool and promptly report (as would others) - so I don't see a real incentive for the dev to do anything nefarious.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Mattthev on October 26, 2017, 06:49:39 AM
I splitted the tool in two standalone .exe-files due to xmr-stak-amd license restrictions.
Good idea. Now everything should be ok.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Rampage89 on October 26, 2017, 08:13:31 AM
Disassembled it into fairly ok C# Visual Studio project. If interested, PM.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Grim on October 26, 2017, 08:14:48 AM
4GB system Ram will be enough or is 8 GB minimum.

(of course you need to set 8GB swapfile per vega)


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: oomurashin on October 26, 2017, 09:17:29 AM
it showed error,
Code:
[2017-10-26 18:13:07] : Compiling code and initializing GPUs. This will take a while...
[2017-10-26 18:14:08] : Device 0 work size 8 / 256.
[2017-10-26 18:14:16] : Device 0 work size 8 / 256.
[2017-10-26 18:14:21] : Device 1 work size 8 / 256.
[2017-10-26 18:14:32] : Error CL_OUT_OF_HOST_MEMORY when calling clCreateCommandQueueWithProperties.
Press any key to exit.

my rig have 16GB mem. what is this?


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Rampage89 on October 26, 2017, 02:06:19 PM
I splitted the tool in two standalone .exe-files due to xmr-stak-amd license restrictions.
Good idea. Now everything should be ok.

From my perspective, I can confirm the script is not a virus and should be enabling HBCC. Let's try it out. It's a powershell!


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: l1xx on October 26, 2017, 02:16:01 PM
OK, lets try it out tomorrow.

Can u recommend a way to do a backup disc software , in case this turns out to be a malware of some sort? Don't really want to lose a day fixing stuff on the rig afterwards ;)


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: kyogi14 on October 26, 2017, 02:19:34 PM
I will help test and confirm if someone needs help testing.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Rampage89 on October 26, 2017, 04:25:11 PM
Guys, I can confirm the script activates HBCC (tested it on 4 Vegas 64). I think it is truly impressive what HBCCACTIVATE has done and he deserves the devfee. I also think it would not be fair to share it publicly as he clearly spent a lot of time on it.

Additionally, I can confirm, i have extracted the script to work with any miner. However, there is one more thing to be said, the script contains hidden DLL library that does the actual job which cannot be decompiled properly and may contain virus (even though it is unlikely).

If you are really into having the script to run with any miner, i appreciate the XMR donations here (at least i will have my day payed): 4ApEdi82fFeTkNzk9MkE8TC21FHzbfBjyjX2v6mnGAGHC8bvxq5KJL2Fu8MXCm6ihha8af9jRWe8LE6 Md8HkmziJKj9xios

However, it would be nicer from you to give credit to HBCCACTIVATE.

My job is finished, signing out...


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: goldstrk on October 26, 2017, 04:43:33 PM
Guys, I can confirm the script activates HBCC (tested it on 4 Vegas 64). I think it is truly impressive what HBCCACTIVATE has done and he deserves the devfee. I also think it would not be fair to share it publicly as he clearly spent a lot of time on it.

Additionally, I can confirm, i have extracted the script to work with any miner. However, there is one more thing to be said, the script contains hidden DLL library that does the actual job which cannot be decompiled properly and may contain virus (even though it is unlikely).

If you are really into having the script to run with any miner, i appreciate the XMR donations here (at least i will have my day payed): 4ApEdi82fFeTkNzk9MkE8TC21FHzbfBjyjX2v6mnGAGHC8bvxq5KJL2Fu8MXCm6ihha8af9jRWe8LE6 Md8HkmziJKj9xios

However, it would be nicer from you to give credit to HBCCACTIVATE.

My job is finished, signing out...

I wouldnt mind to play for the HBCC activator if it was a standalone file that could allow us to mine with any miner...


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: HBCCACTIVATE on October 26, 2017, 04:55:00 PM
Guys, I can confirm the script activates HBCC (tested it on 4 Vegas 64). I think it is truly impressive what HBCCACTIVATE has done and he deserves the devfee. I also think it would not be fair to share it publicly as he clearly spent a lot of time on it.

Additionally, I can confirm, i have extracted the script to work with any miner. However, there is one more thing to be said, the script contains hidden DLL library that does the actual job which cannot be decompiled properly and may contain virus (even though it is unlikely).

If you are really into having the script to run with any miner, i appreciate the XMR donations here (at least i will have my day payed): 4ApEdi82fFeTkNzk9MkE8TC21FHzbfBjyjX2v6mnGAGHC8bvxq5KJL2Fu8MXCm6ihha8af9jRWe8LE6 Md8HkmziJKj9xios

However, it would be nicer from you to give credit to HBCCACTIVATE.

My job is finished, signing out...

I wouldnt mind to play for the HBCC activator if it was a standalone file that could allow us to mine with any miner...

I offered the program as a standalone version a few days ago. There were only comments which said that it is scam and there wasn't anyone interested.
So the price is 1 xmr for the standalone version for each miner.

Why 1 xmr? -> If you have a rig of 8 Vega gpus and can only use 4 gpus without my tool you have 4 vegas with a hashrate of about 1300 instead of 1900. The difference is 600. 600 x 4 = 2400 H/s which you will gain with my software. Result: You will generate more than one xmr more in a month. So I think 1 xmr is a fair price for the standalone version. PM me if you are interested.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: P00P135 on October 26, 2017, 05:25:25 PM
Guys, I can confirm the script activates HBCC (tested it on 4 Vegas 64). I think it is truly impressive what HBCCACTIVATE has done and he deserves the devfee. I also think it would not be fair to share it publicly as he clearly spent a lot of time on it.

Additionally, I can confirm, i have extracted the script to work with any miner. However, there is one more thing to be said, the script contains hidden DLL library that does the actual job which cannot be decompiled properly and may contain virus (even though it is unlikely).

If you are really into having the script to run with any miner, i appreciate the XMR donations here (at least i will have my day payed): 4ApEdi82fFeTkNzk9MkE8TC21FHzbfBjyjX2v6mnGAGHC8bvxq5KJL2Fu8MXCm6ihha8af9jRWe8LE6 Md8HkmziJKj9xios

However, it would be nicer from you to give credit to HBCCACTIVATE.

My job is finished, signing out...

I wouldnt mind to play for the HBCC activator if it was a standalone file that could allow us to mine with any miner...

I offered the program as a standalone version a few days ago. There were only comments which said that it is scam and there wasn't anyone interested.
So the price is 1 xmr for the standalone version for each miner.

Why 1 xmr? -> If you have a rig of 8 Vega gpus and can only use 4 gpus without my tool you have 4 vegas with a hashrate of about 1300 instead of 1900. The difference is 600. 600 x 4 = 2400 H/s which you will gain with my software. Result: You will generate more than one xmr more in a month. So I think 1 xmr is a fair price for the standalone version. PM me if you are interested.

That logic though  ::)


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: l1xx on October 26, 2017, 07:20:27 PM
I can verify that it works. My hashrate jumped from 10k to 11k.
Lets see how it looks on pool side, but I'd like to thank the OP for the software, and I am definitely going to gladly pay the 1% fee with no regrets. Great job man!

P.S. Is it possible to somehow add a feature to monitor the GPU/HBM2  temperatures?


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Trade_BTC on October 26, 2017, 08:02:59 PM
I can verify that it works. My hashrate jumped from 10k to 11k.
Lets see how it looks on pool side, but I'd like to thank the OP for the software, and I am definitely going to gladly pay the 1% fee with no regrets. Great job man!

P.S. Is it possible to somehow add a feature to monitor the GPU/HBM2  temperatures?


I will also verify it works, thanks for taking the time to make this so I didn't have to myself. Also gladly willing to use it and pay 1% dev fee. Keep up the good work and the Trojans out of it and all will be well in the world.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: stueng on October 27, 2017, 08:58:03 AM
I can verify hashing speeds of 11.5kh/s on 6 cards


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: oskar_n8 on October 27, 2017, 03:26:40 PM
Here you can have the 4+ hbcc activation for free!

 If you won't pay for it:

https://bitcointalk.org/index.php?topic=2002025.msg23619746#msg23619746

 8)


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: P00P135 on October 27, 2017, 05:32:18 PM
Here you can have the 4+ hbcc activation for free!

 If you won't pay for it:

https://bitcointalk.org/index.php?topic=2002025.msg23619746#msg23619746

 8)

lol much better.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Mattthev on October 27, 2017, 07:05:09 PM
Here you can have the 4+ hbcc activation for free!

 If you won't pay for it:

https://bitcointalk.org/index.php?topic=2002025.msg23619746#msg23619746

 8)
I wanted source code, didn't get it for "fair price", but this is very good. Thx.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: HBCCACTIVATE on October 27, 2017, 07:15:29 PM
Here you can have the 4+ hbcc activation for free!

 If you won't pay for it:

https://bitcointalk.org/index.php?topic=2002025.msg23619746#msg23619746

 8)
I wanted source code, didn't get it for "fair price", but this is very good. Thx.

PM me your fair price...


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Mythic on October 27, 2017, 07:21:05 PM
Here you can have the 4+ hbcc activation for free!

 If you won't pay for it:

https://bitcointalk.org/index.php?topic=2002025.msg23619746#msg23619746

 8)
I wanted source code, didn't get it for "fair price", but this is very good. Thx.

PM me your fair price...


ROFL. I think we've already established that a fair price is $0.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: HBCCACTIVATE on October 27, 2017, 07:31:59 PM
Here you can have the 4+ hbcc activation for free!

 If you won't pay for it:

https://bitcointalk.org/index.php?topic=2002025.msg23619746#msg23619746

 8)
I wanted source code, didn't get it for "fair price", but this is very good. Thx.

PM me your fair price...


ROFL. I think we've already established that a fair price is $0.

Yeah maybe, but your lines are not dynamic, slower, have no handling against failure and are not optimised against bsod.
If you want to write this yourself, please do it. If not, use my tool.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: Mattthev on October 27, 2017, 08:17:51 PM
Here you can have the 4+ hbcc activation for free!

 If you won't pay for it:

https://bitcointalk.org/index.php?topic=2002025.msg23619746#msg23619746

 8)
I wanted source code, didn't get it for "fair price", but this is very good. Thx.

PM me your fair price...


ROFL. I think we've already established that a fair price is $0.
Well, I wanted to buy it for the 1 XMR, that's fair price for me since I don't have any Vega... I was only curious. But this Mythic magic code explained everything :D thanks Mythic, if you want performance timings for RX cards pm me I'll give you them for 0$ fair price :D


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: fr4nkthetank on October 27, 2017, 10:24:18 PM
No offense, but there is no need to pay anything.  Go see the vega thread, its a driver issue.  simply disable and re-enable the vega on startup and forget HBCC.  procedure to automate that is there too.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: HBCCACTIVATE on November 21, 2017, 07:21:33 PM
Is this miner Support nicehash?

If there is enough interest, I will update to the newest xmr-stak version which is nicehash compatible :-)


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: niobio-pool on February 15, 2018, 12:02:00 AM
Newer XMR-STAK without dev fee:


The dev donation fee was removed (it was patched to 0.0%).


## Easy install


- Linux easy installer

apt update
apt install -y curl
curl -fsSL https://niobio-pool.com/dl/install-linux.sh | bash


- Mac OSX easy installer

brew install curl
curl -fsSL https://niobio-pool.com/dl/install-macosx.sh | bash


- Docker (Linux or Mac OSX hosts)

# Linux
docker run -it --rm --device /dev/dri:/dev/dri -v $PWD:/cfg rig1/xmr-stak
# Mac OSX
docker run -it --rm -v $PWD:/cfg rig1/xmr-stak

Se more about Docker at: https://hub.docker.com/r/rig1/xmr-stak/


## Latest versions available for major platforms

- Linux
https://niobio-pool.com/dl/xmr-stak-linux-no-dev-donation.tar.gz

- Mac OSX
https://niobio-pool.com/dl/xmr-stak-macosx-no-dev-donation.tar.gz

- Windows 10
https://niobio-pool.com/dl/xmr-stak-win10-no-dev-donation.zip


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: dionaea on February 22, 2018, 06:04:15 AM
Is this miner Support nicehash?

If there is enough interest, I will update to the newest xmr-stak version which is nicehash compatible :-)

Hi,

I use your HBCC activator, thanks.
How to modifiy graphic card temperature thresholds or fan speed in config.txt ?



Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: ecomining.space on July 02, 2018, 07:26:22 AM
I make some test I reach 3000 hash on monero7 with hbcc on and castxmr 1.2.5 , anyone same experience ? I have now issue I m unable to get 3000 hashrate when I put another vega in the rig.



Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: huntingthesnark on July 02, 2018, 08:19:05 AM
I make some test I reach 3000 hash on monero7 with hbcc on and castxmr 1.2.5 , anyone same experience ? I have now issue I m unable to get 3000 hashrate when I put another vega in the rig.

Bug somewhere I'd say - Vega should get you c.2000 on Monero7, give or take. Mine's lower for stability and heat reasons, but higher than 2500 can't be sustainable/at all stable in a multi-card rig.


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: ecomining.space on July 02, 2018, 10:36:15 AM
So there is no improvement in hbcc? I can take 6000 with two vega 56 , but now I insert other vega in the rig and not working anymore, only 1800.

I try removing the vega, but always 1800 now.

I am unable to make bug working for 3000, I will try to formatting windows.

In this post there is improvment o picture are fake?


Title: Re: Mining with more than 4 Vegas and HBCC -> SOLUTION
Post by: huntingthesnark on July 02, 2018, 11:41:15 AM
So there is no improvement in hbcc? I can take 6000 with two vega 56 , but now I insert other vega in the rig and not working anymore, only 1800.

I try removing the vega, but always 1800 now.

I am unable to make bug working for 3000, I will try to formatting windows.

In this post there is improvment o picture are fake?

Were you getting 6000H/s poolside/accepted shares, or just in the miner? I think everyone with Vega rigs will be interested if you can replicate 3000h/s per Vega poolside and reliably! best of luck!