It Is All About BTC, LTC, ETH, DOGE, KAS mining as well as other alternative crypto currencies
It seems that the HWiNFO tool is no longer the only software that allows you to check the GDDR6X video memory temperature on Nvidia RTX 3080 and RTX 3090 GPUs. The latest TechPowerUp GPU-Z 2.37.0 apparently also supports the display of the temperature of the hot GDDR6X memory chips and not only that, but also features support and reports the GPU Hot Spot temperature as well. It is interesting to note however that these two features apparently were left unannounced as getting added in the changelog of the latest version that has been released about two weeks ago. Frankly it was by luck that we found out that the GDDR6X Memory Operating Temperature and Hot Spot monitoring support has been introduced in the latest GPU-Z software.
GPU-Z v2.37.0 Changelog:
– Added memory vendor detection on Navi 1x and Navi 2x
– Added workaround for NVIDIA Ampere PCIe hardware bug
– Added filter to avoid misreadings on EVGA iCX
– Fixed fake detection for some GT218 variants
– Improved Russian translation
– Added preliminary support for Radeon RX 6700 and RX 6600 Series
– Added support for NVIDIA GeForce RTX 3060, RTX 3080 Mobile, RTX 3070 Mobile, RTX 3060 Mobile, RTX A6000, A40, A100-SXM4-40GB, Drive PX2, P106M, Quadro K510M, modded Quadro K6000
– Added support for additional variants of NVIDIA GTX 1650 Max-Q, Quadro P1000, GTX 650, GT 430
– Added support for AMD Cezanne, Radeon Pro V520, R9 290X ES, Barco MXRT 2600
– Added support for Intel Comet Lake Graphics (Celeron 5205U and i7-10810U)
– Added vendor detection for Yeston
The comparison between the values reported by the two useful tools is inevitable and they report the values for GPU Temperature, GPU Hot Spot and Memory Temperature very close to each other. So, using either of the two programs will be fine in order to get you the needed information. Going for either GPU-Z or HWiNFO will provide you with the data you need to know how hot your GPU and video memory is on GeForce RTX 3080 and RTX 3090 video cards when used for mining. Ethereum mining on these particular GPUs is very popular due to the high mining hashrate they provide, but it also comes at the cost of high operating temperature for the memory chips especially. Keeping an eye on the GDDR6X memory temperatures and the GPU Hot Spots can be useful in detecting possible issues you might have with proper cooling of your mining video cards.
– To download and try the latest TechPowerUp GPU-Z 2.37.0 software…
There are a number of tools available that can allow you to monitor and control various aspects of your GPU and most fo them do come with nice graphical user interface to make things simple. When mining however you might want to have easy console command control over the GPU behavior to be able to execute commands that change things from a Batch file fro example right before a given miner software is stated. For Nvidia GPUs there is the Nvidia System Management Interface (nvidia-smi) command line utility that can help you do that in a simple and effective way, we have already showed an example using it to control the power state of the GPUs for getting some extra performance with non-overclocked video cards that are not running at the maximum power state when doing compute tasks such as mining for crypto currencies. Now it is time to show you some more useful tricks for using the nvidia-smi to check and modify the maximum TDP (Power Limit) that a given GPU can use as well as how to monitor constantly the GPU temperature and power usage and possibly log them in a file if you need that recorded for some further analysis.
The nvidia-smi utility is part of the video drivers and you can find it installed in the folder “C:\Program Files\NVIDIA Corporation\NVSMI\” on Windows, so you need to run the command line (cmd) and navigate to that folder in order to be able to issue commands. You then need to run nvidia-smi with some specific parameters based on what you need it to do such as specifying which GPU you need to play with by ID and then the command that needs to be sent or the data read from it.
So if you want to see what is the power limit of the first Nvidia GPU in the system:
nvidia-smi -i 0 --format=csv --query-gpu=power.limit
If you do not include the i parameter followed by the GPU ID you will get the power limit of all of the available video cards, respectively with a different number you get the details for the specified GPU. Then comes the fun part, changing the power limit to a lower value in order to reduce power consumption without affecting the performance or with slight decrease to get better power efficiency while mining. So in the following example we set the power limit to 175W for the first GPU down from the maximum of 275W that is has preset in the BIOS:
nvidia-smi -i 0 -pl 175
The next useful thing we want to be able to do via the console is to check the temperature of an Nvidia GPU and have it reported each second with the ability to also save the results in a text file should we need to do some additional analysis of the results. Using nvidia-smi to read the temperature of the first GPU each 1000 ms (1 second) can be done with the following command:
nvidia-smi -i 0 --loop-ms=1000 --format=csv,noheader --query-gpu=temperature.gpu
In order to stop the reporting of the temperature in degrees Celsius you need to press CTRL + C. If you need to have the result recorded to a text file you can run the following command:
nvidia-smi -i 0 --loop-ms=1000 --format=csv,noheader --query-gpu=temperature.gpu > temperature.txt
The same way you can get the temperature of a GPU in the system reported you can also have a report on the current power draw of each Nvidia GPU in Watts for example every second. The reporting of power usage is very accurate and does not require any hardware as it is already implemented on a hardware level in the more recent Nvidia-based video cards. What you need to do is to run the following command:
nvidia-smi -i 0 --loop-ms=1000 --format=csv,noheader --query-gpu=power.draw
In order to stop the reporting of the temperature in degrees Celisus you need to press CTRL + C. If you need to have the result recorded to a text file you can run the following command:
nvidia-smi -i 0 --loop-ms=1000 --format=csv,noheader --query-gpu=power.draw > powerusage.txt
The reporting of the current power usage can be very helpful when tweaking your Nvidia-based video card for achieving the best power usage / mining performance ratio and also in order to compare power usage between different crypto algorithms. The nvidia-smi tool has some other useful features that may be handy for users, do note however that the changes you make with it are not permanent, they will need reapplying if you restart your computer, but you can automate them with a simple batch file by running a command right before you start up your miner software.