Bitcoin Forum
June 24, 2024, 01:35:37 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2] 3 4 5 »
21  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] Bminer: a fast Equihash miner for CUDA GPUs (6.0.0) on: March 23, 2018, 06:12:48 PM
Could someone explain to me how to use the API? I have tried and I can only see the dashboard of the api from the same miner that is running the .bat, but from another computer I can not see it
Try changing the `api` parameters to

Code:
-api 0.0.0.0:1880

Change 1880 to whatever port you want to listen on. 0.0.0.0 should mean that it binds to all available network interfaces/IPs, or at least it does usually.
Yes, but I can not use it outside the same network? I can not look at the dashboard from another city?

That's more of a networking/firewall problem to solve - nothing related to bminer. It's completely dependent on your networking setup (LAN, DNS, WAN, etc). Too many variables to solve via a forum post...
22  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] Bminer: a fast Equihash miner for CUDA GPUs (6.0.0) on: March 23, 2018, 05:10:46 PM
Could someone explain to me how to use the API? I have tried and I can only see the dashboard of the api from the same miner that is running the .bat, but from another computer I can not see it

Try changing the `api` parameters to

Code:
-api 0.0.0.0:1880

Change 1880 to whatever port you want to listen on. 0.0.0.0 should mean that it binds to all available network interfaces/IPs, or at least it does usually.

23  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows) on: March 23, 2018, 03:26:42 PM
I just announced new mining proxy software, see the BCT post here: https://bitcointalk.org/index.php?topic=3179895

Open source, no devfee, multi coin/algo, just aiming to help miners out. Building it has been a great learning experience in the mining technology ecosystem. I appreciate the feedback - happy mining. Spread the word!

How exactly does a 'proxy' work?

Simply put, it sits in the middle between your miner(s) and your pool(s), in an effort to consolidate multiple miners/rigs through a single connection to the pool. Your miners connect to to the proxy, and the proxy connects to the pool (just once, even for multiple miners), resulting in a single difficulty for all connected miners.

Without a proxy, your miner connects directly to a pool. There's nothing wrong with this, generally speaking - but with miner crashes/restarts due to overclocking or bugs, the miner has to reconnect to the pool. This can mean that your miner is seen by the pool as 'new' after reconnecting, which is generally considered a bad thing (you can lose out on shares/sharerate as you might be treated as a pool hopper). It's important to note that there are multiple factors involved, and over time pools are likely trying to get better at detecting pool hopping more precisely.

With a mining proxy sitting in the middle, the proxy maintains the connection to the pool on miner disconnect, the proxy keeps track of current difficulty and mining job, etc. When miners reconnect, they receive those same values - essentially picking up where they left off. The pool doesn't see any disconnects, and so any impact from pool-hopping isn't attributed to your account.

In the past, others have stated that a 20% improvement in sharerate/shares/reduction in stale/invalid shares have been achieved through the use of a proxy. I'm interested whether this still holds true, assuming that miners and pools have actually improved over the last couple of years, which may not be that true... 🤔
24  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] aiostratum-proxy: next-gen extensible, multi-algo mining proxy (1.0.0) on: March 22, 2018, 09:57:56 PM
Really nice to see new stuff coming out specially open source. I have some time tomorrow so might give it a go. Any ideas on how fast it could be on Equihash algo mining ZEC?

Just to make sure we're on the same page here - this is a mining proxy, not the GPU/CPU mining software itself. Its primary purpose is have multiple mining rigs (each rig running mining software like ewbf, dstm, bminer, etc) proxy pool network communication to a) reduce network requirements and b) stabilize share rates.

Given that it is non-blocking by nature and virtually all operations are networking (ie. I/O-related), it should handle a decent number of rig/miner connections without impact, and overall help both miner share rates and reduce pool resources. There have been claims in the past of 20% improvement in shares just by using a pool proxy like this - but keep in mind that there have been a lot of improvements in protocols, miners, and pools in the past couple of years.

Edit: I would say there are benefits to running a proxy like this in a single rig environment as well - when your miner software crashes or restarts, the proxy will maintain the connection to the pool, difficulty, etc. The pool doesn't see your miner drop its connection, which (can?) affects your sharerate stats, whether you're considered a pool jumper, etc.

I'd appreciate testing and feedback!
25  Alternate cryptocurrencies / Mining (Altcoins) / Re: EWBF's CUDA Zcash miner on: March 22, 2018, 09:04:37 PM
I just announced new equihash mining proxy software, see the BCT post here: https://bitcointalk.org/index.php?topic=3179895

Open source, no devfee, multi coin/algo, just aiming to help miners out. Building it has been a great learning experience in the mining technology ecosystem. I appreciate the feedback - happy mining. Spread the word!
26  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows) on: March 22, 2018, 08:39:38 PM
I just announced new mining proxy software, see the BCT post here: https://bitcointalk.org/index.php?topic=3179895

Open source, no devfee, multi coin/algo, just aiming to help miners out. Building it has been a great learning experience in the mining technology ecosystem. I appreciate the feedback - happy mining. Spread the word!
27  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] aiostratum-proxy: next-gen extensible, multi-algo mining proxy (1.0.0) on: March 22, 2018, 08:31:26 PM
reserved for version/release notes
28  Alternate cryptocurrencies / Mining (Altcoins) / [ANN] aiostratum-proxy (v1.1): fast, multi-coin mining proxy for 1000s of rigs on: March 22, 2018, 07:33:55 PM
aiostratum-proxy is a new, open source stratum protocol (and altcoin derivatives) mining proxy. Its focus on being extensible/modular is one of its greatest strengths: users can create new aiostratum-proxy coin/algos 'plug-ins' or 'modules' without having to modify aiostratum-proxy itself.

Originally built as a learning exercise to better understand stratum protocol(s) and the mining ecosystem, I now think that others will benefit by making aiostratum-proxy available for everyone to use.

The goal for aiostratum-proxy is to make it the easiest solution for any coin/algorithm pool proxying needs, via the creation of JSONRPC (the stratum base 'language') modules.

More information available at the aiostratum-proxy Github repository.

Current Status:

As mentioned, aiostratum-proxy is new, and is looking for some testing beyond what I've thrown at it. Current coin/algo support is Equihash-only (more to come, given community interest). Constructive feedback is needed and appreciated.

Donations:

There is no dev fee. However, I eat food and need to support those around me - devs need to make money too. Consider it incentive to maintain and continue developing aiostratum-proxy. So if you use this proxy, donate using the addresses below:

  • BTC: 1BS4QYAFiya4tsjyvHeY945biKnDj6bRA4
  • LTC: LTN1LPGnJjHMKq4DcuQYifQgLfT4Phmn9d
  • ETH: 0x4B005e68D323bdABD8eeD1D415117Ff1B57b3EC5
  • BTCP: b1CACK65UTwzmHGw2VvyozdPsRLMb8utGLg
  • ZCL: t1eoqTqyatJzL2rErW83waZLQHZLKuipMbi

Don't have any of the above? I'll look into getting an address in your choice currency.

Features:

The intention for aiostratum-proxy was to be feature-comparable with existing mining proxies, yet extensible without forking to add support for other coins.

  • Configure multiple proxies to run at the same time (ie. mine same/different coins on same/different pools)
  • Each proxy configuration supports multiple fallback pools
  • Each proxy supports up to 65536 miner connections, each mining a separate nonce space (dependent on coin & miner support)
  • Supports plaintext and secure connections (TLS/SSL) for both miner and pool connections
  • Easily implement new coin/algorithm JSONRPC 'stratum-like' protocols as dynamically-loaded (via config file), external Python3 modules

Supported Coins/Algos:

  • Equihash
  • ... it's a bit lonely here, let's add some more maybe?

How you can help:

  • Test!
  • Create coin/algo modules (submit pull requests)
  • Find bugs (File them on Github)
  • Donate (see above!)
  • Spread the word to coin dev teams, pool operators, other miners
  • ... share your ideas for improvement

Requirements & Compatibility:

aiostratum-proxy is written using Python3's non-blocking async/await syntax - so Python 3.5 or greater is required.

It runs on Linux and macOS, and should work on Windows (send in reports, please).

Installation:

Read all of the Installation and Usage sections before proceeding with installing.

It's best to always refer to the aiostratum-proxy Github repository for source code and updated installation and usage instructions - but for the eager miners out there... installation is pretty simple:

Code:
pip install aiostratum-proxy

... but you probably really want to use Python virtual environments to contain the installation, rather than installing globally:

Code:
# this will create a directory 'containing' the Python3 virtual environment
python3 -m venv aiostratum_proxy

cd aiostratum_proxy

# this will install the aiostratum-proxy package
bin/pip install aiostratum-proxy

# verify the installation by checking the package version
bin/aiostratum-proxy --version

# view the built-in command-line help
bin/aiostratum-proxy --help

As you can see, installation creates a new command-line shortcut called aiostratum-proxy.

Usage:

A YAML config file is needed for the proxy to run (learn more about YAML); you can generate one:

Code:
bin/aiostratum-proxy --generate-config > proxy-config.yaml

Open and edit the generated proxy-config.yaml in a text editor. To run aiostratum-proxy, pass it your edited config file:

Code:
bin/aiostratum-proxy --config proxy-config.yaml

While you probably should always generate and edit your own config using the above instructions, here's a couple of sample configs for mining Bitcoin Private (BTCP) - to show you how simple they can be. Remember to modify addresses, usernames, passwords to use your own:

Code:
proxies:
- worker_class: aiostratum_proxy.protocols.equihash.EquihashWorkerProtocol
  pool_class: aiostratum_proxy.protocols.equihash.EquihashPoolProtocol

  listen:
  - host: ''
    port: 10666

  pools:
  - host: pool2.btcprivate.org
    port: 3032
    account_name: b1CACK65UTwzmHGw2VvyozdPsRLMb8utGLg
    account_password: x

The above uses the included Equihash support, defines a single unsecured port for miners to connect to and a single pool to proxy to. Simple, but not very secure or robust. Let's try again, adding in secure connections and a fallback pool:

Code:
proxies:
- worker_class: aiostratum_proxy.protocols.equihash.EquihashWorkerProtocol
  pool_class: aiostratum_proxy.protocols.equihash.EquihashPoolProtocol

  listen:
  - host: ''
    port: 10666
  - host: ''
    port: 10667
    ssl: true
    ssl_cert_file: <full path to your self-signed SSL/TLS cert file>
    ssl_cert_key_file: <full path to your self-signed SSL/TLS cert KEY file>

  pools:
  - host: pool2.btcprivate.org
    port: 3032
    account_name: b1CACK65UTwzmHGw2VvyozdPsRLMb8utGLg
    account_password: x
  - host: btcp.suprnova.cc
    port: 6825
    ssl: true
    account_name: wetblanket
    account_password: mypw

The above uses the included Equihash support, defines 2 ports for miners to connect to (1 of them being SSL/TLS secured) and 2 pools to proxy to (the second being the fallback).

Authorization Setting Notes:

Handily, aiostratum-proxy will automatically extract the worker name from each miner's authorization (when it connects) and appends it to the account_name config setting before authorizing with the pool. This allows you to continue per-miner hash/share rate tracking at the pool level. (Thanks Doftorul for the feedback!)

Step by step explanation:

  • Miner connects to aiostratum-proxy with randomletters.worker1
  • aiostratum-proxy extracts worker1 from the miner's auth
  • aiostratum-proxy appends worker1 to the config file pool account_name setting giving us b1CACK65UTwzmHGw2VvyozdPsRLMb8utGLg.worker1
  • aiostratum-proxy requests authorization from the pool for b1CACK65UTwzmHGw2VvyozdPsRLMb8utGLg.worker1
  • Miner is authorized, stats are tracked at the pool as desired

Note that you CAN optionally put a worker name in the config file pool account_name setting (ie. b1CACK65UTwzmHGw2VvyozdPsRLMb8utGLg.worker1, but this will cause miner-specific worker names to be ignored. You might want this in a larger farm setup, perhaps.

Release Notes:

1.0.2 2018/07/13

  • Fixing keepalive issue
  • Added debug statement to help detect miner/proxy misconfiguration

1.0.1 2018/07/12

  • Adding in worker socket keepalive configuration

1.0.0 2018/03/22

  • Initial release

Future Ideas/Thoughts:

This section contains some ideas that may not get implemented - it depends on community feedback.

  • Improve documentation
  • Consider immediate reply to miner share submissions instead of waiting for pool response
  • Complete mining.set_extranonce support
  • Consider additional authentication improvements (currently miners aren't authenticated)
    • authenticate miners locally within proxy via config
    • authenticate miners via passthru to pool; would require per-pool mappings of username/password for fallback pools in config?
  • Add HAProxy PROXY protocol support
  • Collect stats (for console display/API purposes)
  • Create stats JSON API endpoint
  • More coin/algo support
    • Complete Bitcoin/Litecoin/etc stratum module (aiostratum_proxy.protocols.stratum.StratumPoolProtocol & aiostratum_proxy.protocols.stratum.StratumWorkerProtocol)
    • Ethereum (ETH) protocol(s) support?
  • ... share your thoughts/ideas

29  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zclassic, Zcash Fork No Premine, No 20% Founders Tax on: March 21, 2018, 03:10:13 AM

I'd be cautious regarding anyone claiming to continue supporting ZClassic without hearing it from the former ZCL (current BTCP) team directly. Seems like an easy way to scam people into downloading a 'new' wallet/software that lets others steal ZCL balances, etc.

However, if I can add to this on somewhat of a tangent, it would be good if the (ZCL replacement dev team) selection process was made to be transparent. So the public can see who's submitting proposals - in fact, if the proposals were written up as public Github repos/issues/gists, that would be ideal. Keeps all parties honest - otherwise, the BTCP team can just say that 'no one submitted quality proposals' and let ZCL die. Not cool.
30  Alternate cryptocurrencies / Mining (Altcoins) / Re: Owners of GTX 1070, what is your hashrate? on: March 14, 2018, 09:10:59 PM
I have Asus Rog Strix Gaming GTX1070 8Go.

+220 core
+700 mem
120Watt

With the dstm miner, I was achieving similar hashrates with that card:

+200 core
+1050 mem
115Watt

So, a little more efficient, I think? I was doing 490+ a card, but my wattage was jacked up - very inefficient, so I dialled it back to this.

Code:
export XAUTHORITY=/var/run/lightdm/root/:0
export DISPLAY=:0
sudo nvidia-smi -pm 1
sudo nvidia-smi -pl 115
sudo nvidia-settings -a GPUPowerMizerMode=1 -a GPUGraphicsClockOffset[3]=200 -a GPUMemoryTransferRateOffset[3]=1050 -a GPUFanControlState=1 -a GPUTargetFanSpeed=25
31  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] Bminer: a fast Equihash miner for CUDA GPUs (5.4.0) on: February 27, 2018, 11:47:07 PM
Why isn't it possible to set stratum diff multiplier/divider? It's important with autoswitching...

Don't pools (that support this) allow this through the password field or something like that?
32  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] Bminer: a fast Equihash miner for CUDA GPUs (5.4.0) on: February 27, 2018, 11:02:30 PM
I've moved back to dstm for now - not because of performance (I think there are both positive and negative reports with bminer, so many variables, etc) but because there's not really enough transparent communication. I was super keen and supportive here, but I'm pulling back. I didn't notice any particularly nefarious activity, for those who are wondering.

bminer seems like a solid & stable miner, and I suspect that realbminer thinks he/she's been open and transparent enough, but it's obviously not open enough; people have real questions that aren't being answered. Maybe the random connections are all about devfees and are legit, but then again, maybe not. There have been valid concerns raised by others that I don't feel have been adequately addressed.

I'll definitely keep tabs on this project though. Lots of potential. Good luck with the community management, realbminer! I think if there's improvement on that front, you'll see a major uptake on bminer.
33  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zclassic, Zcash Fork No Premine, No 20% Founders Tax on: February 27, 2018, 05:44:37 PM
How can this 20 % be removed?

Pardon? There is no 20% founders fee for ZCL. Maybe you misread something?
34  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zclassic, Zcash Fork No Premine, No 20% Founders Tax on: February 27, 2018, 05:43:43 PM
got my coins into the wallet:) finally! Yet I still have no idea how will I claim my btc private:)

There is an FAQ page posted with details on this, and literally thousands of people have quoted it wherever some asks this question.
35  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zclassic, Zcash Fork No Premine, No 20% Founders Tax on: February 27, 2018, 05:40:27 PM
My withdrawal from Bittrex to my Electrum wallet finally went through.  Took a little over 6 hours.

2 hours for me, from Bittrex to Electrum.
36  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zclassic, Zcash Fork No Premine, No 20% Founders Tax on: February 27, 2018, 04:12:30 PM
Can someone explain me how could I claim BTCP?

"How do I claim my BTCP? More information will become available as we get closer to the snapshot date. An official dedicated guide will be released. In summary, users will need to export a copy of their private key for the corresponding wallet/wallet addresses that hold their ZCL funds at the time of the snapshot. Users can then take the private key and import it into the Bitcoin Private Electrum wallet once it is released in order to claim their BTCP coins. The same goes for Bitcoin holders. **In case exchange(es) support will be announced, users will not need to do anything. The exchanges will automatically credit your account with BTCP. This may vary, so again, please stay tuned for official news regarding this."

So if I hold ZCL in my wallet I will not receive them automatically?

If you hold ZCL in a personal wallet like Electrum ZCL, you'll be fine. As your quote above said, you'll need to take an additional step to actually claim your BTCP (using your ZCL wallet private key in the BTCP Wallet, when released). Regardless, in the personal wallet scenario, there's no rush to do anything as you're not particularly time limited.

If holding in an exchange, you'd better make sure it supports the fork, or you won't get the equivalent BTCP at all. Exchanges are taking a while to perform withdrawal requests, so if you need to get it out before the snapshot, you'd better get cooking. If the exchange DOES support the fork, then absolutely no effort is required on you part, apart from being patient! It will take a while before you get your BTCP in this scenario, as I understand it.
37  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zclassic, Zcash Fork No Premine, No 20% Founders Tax on: February 27, 2018, 03:59:38 PM
Seriously? No one cant help about the info of the fork? How will i get them once the coins are in the wallet?
if you have zcl on bittrex and bittrex confirmation fork, you gets automatically BTCP

While I'm really hoping Bittrex announces support, I've decided to be realistic: I've moved my ZCL to a personal wallet (using Electrum ZCL - remember to do your own research on wallets and decided whether to trust some internet rando's link to a wallet!)
38  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows) on: February 23, 2018, 07:05:58 PM
I know about the difficulty adjustments, but...
1. How the pool knows how good is the miner to find solutions? Isn't the hashrate the indicator? So... if the hashrate increseas with 6%, from 1700 to 1800sol/s, there should be a diff adjustement of 6%, so let's say an accepted share drop from 5/min to 4/min. So how can you explain the accepted shares drop from 6 to 2, between the 2 miners?

I'm no pro, but I've done a fair bit of digging into protocols, miners, proxies and pool source code. I think that you shouldn't expect to see the exact same adjustment in share submissions when difficulty changes. Think of difficulties as representing submission speed 'brackets'. You'll be set to difficulty X if you submit between n and (n+m) shares - once you exceed (n+m), you'll be set into the next difficulty bracket Y. That sort of thing.

2. At start, zcash-flypool begines at 2000 diff. If I got this corectly, it's just the starting difficulty, is not a fix difficulty. So the both miners start at the same diff, so the accepted shares must be greater for ZM with the bigger hashrate at least in the first minute, untill new work is received and the diff readjusted. But guess what... EWBF still beats ZM even at the same diff. I see 4-5 accepteds with EWBF, but only 1 or none with ZM in the first minute. Huh

I'm not positive, but it looks like flypool (zcash at least?) isn't vardiff-enabled (variable difficulty)? Meaning, it doesn't dynamically adjust the miner's difficulty, although it allows you to set your own difficulty on miner startup via the password field (defaults to 2000). Can someone correct me if I'm wrong?

Either way, I'm not sure on this. I do know that you shouldn't try to calculate stats on only a minute or two, however. All the advice I've seen is to run a 24+ hour test - even that isn't precise unless you can it on the same hardware at the same time!  Undecided

3.The "more rejecteds" and "more crashes" problems still remains for ZM.
4.With the dev fee on, in ZM (EWBF fee off) difficulty will loose the optimal value with each pool switch (dev fee means ZM switches to dev's pool to mine for him from time to time). So flypool will start readjusting the difficulty after each dev fee, like a new start. How is this more productive?

As I mentioned, I'm not sure on flypool being vardiff... I'm interested to hear what you find out, as you dig though!

These are questions from a noob (me). I really want to understand this mining better, not to have online disputes. I hope I'm not missunderstood.
Thanks!

These are good questions! Keep asking them!
39  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows) on: February 23, 2018, 04:38:52 AM
Why the accepted shares are fewer then EWBF's, even though the hashrate is bigger?

My OC settings are not so high, just core +100, power 85, temp 83, mem 0, on 6 GTX 1060 3GB hynix. Core stays under 2000MHz.
My hashrate is around 1800 with DSTM and around 1700 with EWBF. The ping time 63ms, on ZEC-flypool and ZCL-suprnova.
In EWBF I don't get rejected shares aven after 24h, no crashes, and constant acceped shares, around 5 per minute.
In DSTM I see from time to time a rejected, but the main problem is that there are very few accepted shares, like 1-2 per minute.
Why is that? I can't compare the profits because they varry from day to day. I should have 2 rigs with the same setup, but I only have 1 with cards from 3 brands.

You can't compare share counts/frequency from the miner itself. Depending on a variety of factors (mostly the speed at which you send shares to the pool), the pool will increase the difficulty for your connected miner. Increased difficulty means you find fewer shares, BUT the shares you do find are 'worth more' to the pool (because they were more difficult to find). The overall value of the shares you submit ought to be the same, and the payout the same in those circumstances.

If a miner is better at finding solutions (like dstm is, compared to ewbf), its difficulty will be raised such that it submits fewer shares (lowering the networking requirements) - I'd say this is why when visually comparing ewbf to dstm, you'll see fewer shares being submitted by dstm.
40  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows) on: February 19, 2018, 08:42:11 PM
Can someone please explain me one thing.
When I run DSTM or EWBF I have one card that starts ok but then goes down very fast to 1/2 hashrate.
NVIDIA Inspector shows very small (about 30-40%) usage of MCU on that card.
If I run ccminer (any algo) - all is fine, all cards are equal. So it seems to me that this is an equihash issue.
Please check card 1. Sometimes it shows shares like .. That card is totally equal with 7.8.9 GPUs, so it must give 750 h/s

Defective card?

2018-02-19 17:47:37|   ========== Sol/s: 7020.9 Sol/W: 2.65  Avg: 7058.2 I/s: 3777.9 Sh: 3.89   1.00 184
2018-02-19 17:47:42|   GPU0  53C  Sol/s: 700.6  Sol/W: 3.29  Avg: 698.9  I/s: 370.6  Sh: 0.18   1.00 172
2018-02-19 17:47:43|   GPU1  53C  Sol/s: 371.2  Sol/W: 1.96  Avg: 370.1  I/s: 199.0  Sh: 0.00   . .
2018-02-19 17:47:45|   GPU2  68C  Sol/s: 756.9  Sol/W: 2.57  Avg: 755.6  I/s: 405.2  Sh: 0.54   1.00 187 +
2018-02-19 17:47:47|   GPU3  64C  Sol/s: 735.8  Sol/W: 2.70  Avg: 742.6  I/s: 398.2  Sh: 0.18   1.00 188
2018-02-19 17:47:48|   GPU4  66C  Sol/s: 761.2  Sol/W: 2.71  Avg: 759.7  I/s: 405.8  Sh: 0.36   1.00 188 +
2018-02-19 17:47:50|   GPU5  61C  Sol/s: 754.7  Sol/W: 2.61  Avg: 760.5  I/s: 408.4  Sh: 0.73   1.00 187
2018-02-19 17:47:53|   GPU6  66C  Sol/s: 690.1  Sol/W: 2.83  Avg: 694.7  I/s: 372.7  Sh: 0.36   1.00 172
2018-02-19 17:47:54|   GPU7  56C  Sol/s: 758.7  Sol/W: 2.50  Avg: 761.1  I/s: 407.2  Sh: 0.18   1.00 187
2018-02-19 17:47:57|   GPU8  55C  Sol/s: 751.9  Sol/W: 2.76  Avg: 754.9  I/s: 404.9  Sh: 0.54   1.00 187
2018-02-19 17:47:59|   GPU9  62C  Sol/s: 769.0  Sol/W: 2.56  Avg: 759.6  I/s: 406.4  Sh: 0.91   1.00 188
2018-02-19 17:47:59|   ========== Sol/s: 7050.1 Sol/W: 2.65  Avg: 7057.6 I/s: 3778.4 Sh: 3.99   1.00 184
2018-02-19 17:48:04|   GPU0  53C  Sol/s: 693.4  Sol/W: 3.29  Avg: 698.6  I/s: 370.9  Sh: 0.17   1.00 172
2018-02-19 17:48:05|   GPU1  54C  Sol/s: 370.9  Sol/W: 1.96  Avg: 370.2  I/s: 199.0  Sh: 0.00   . .
2018-02-19 17:48:07|   GPU2  69C  Sol/s: 748.8  Sol/W: 2.56  Avg: 755.2  I/s: 405.2  Sh: 0.51   1.00 187
2018-02-19 17:48:09|   GPU3  65C  Sol/s: 742.9  Sol/W: 2.70  Avg: 742.6  I/s: 398.2  Sh: 0.17   1.00 188
2018-02-19 17:48:10|   GPU4  66C  Sol/s: 753.4  Sol/W: 2.71  Avg: 759.3  I/s: 405.8  Sh: 0.34   1.00 188
2018-02-19 17:48:13|>  GPU5  61C  Sol/s: 745.9  Sol/W: 2.60  Avg: 759.6  I/s: 408.4  Sh: 0.68   1.00 187
2018-02-19 17:48:15|>  GPU6  66C  Sol/s: 701.3  Sol/W: 2.83  Avg: 695.1  I/s: 373.0  Sh: 0.34   1.00 172
2018-02-19 17:48:16|>  GPU7  57C  Sol/s: 759.3  Sol/W: 2.50  Avg: 761.0  I/s: 406.9  Sh: 0.34   1.00 188 +
2018-02-19 17:48:19|>  GPU8  55C  Sol/s: 758.9  Sol/W: 2.76  Avg: 755.1  I/s: 404.9  Sh: 0.51   1.00 187
2018-02-19 17:48:21|>  GPU9  62C  Sol/s: 758.5  Sol/W: 2.56  Avg: 759.5  I/s: 406.1  Sh: 0.85   1.00 188
2018-02-19 17:48:21|   ========== Sol/s: 7033.5 Sol/W: 2.65  Avg: 7056.1 I/s: 3778.3 Sh: 3.92   1.00 184


Hash will drop one one card in my rigs whenever I'm connected via an app remotely in Windows 10.  Not sure if this is the same scenario you're seeing.

Sounds like it's pretty common? Maybe Remote Desktop uses the GPU itself as well. (see https://www.reddit.com/r/gpumining/comments/7eattb/mining_causes_poor_remote_desktop_teamviewer/)
Pages: « 1 [2] 3 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!