It Is All About BTC, LTC, ETH, DOGE, KAS mining as well as other alternative crypto currencies
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.
If you’ve made a Bitcoin transfer in the last hours you probably are wondering why it still hasn’t gone through. The reason is that that the number of unconfirmed transactions on the Bitcoin blockchain is really large at the moment, so things are moving slowly. The wait time for transactions with standard network fees could take quite some time, so be aware of that when sending payments or transferring BTC between wallets. Increasing the network fee might help in moving your transfer faster than others, but with such high number of unconfirmed transactions it could still take more time than usual. There is no very apparent reason why the number of unconfirmed transaction is over 35 thousand at the moment, so it could as well be somebody testing/flooding the network with many small transactions. Issues like that are bringing up yet again the question about the increase of blocksize over the current limit of 1 MB, even though it has been a few months since we’ve last had too many unconfirmed transactions, it is issues like these that might become more common in the future due to the small block size and larger number of transactions happening.
– To check the number of unconfirmed transactions on the Bitcoin network at the moment…
The Ethereum project has released an official update regarding the next phase called Homestead that will need a hardfork and that will take place at block 1150000 or roughly around Pi Day (March 14th). Homestead is the second major version release of the Ethereum platform, which includes several protocol changes and a networking change that requires the hardfork. This does not mean that Ethereum will be switching to PoS yet, Homestead will continue to rely only on PoW mining with Proof of Stake switch phase planned for a later time in the future. After the Homestead hardfork everything should continue to run normally as it is now.
The Go version of Ethereum (geth) for Homestead will be release 1.3.4 and includes the above mentioned changes to the protocol and network. Following the release of Homestead the Go team will also shortly come with the 1.4 release, which is our big feature release and includes months of work. The C++ version of Ethereum (eth) for Homestead will be version 1.2.0. Apart from the protocol and network changes, it also tries to be as compatible to geth as possible. So make sure you keep track of the development in the newt two weeks as you will have to upgrade your Ethereum client if you are running a local node or have a local wallet when the new versions with support for Homestead become available.