GPU-Z कंप्यूटर सॉफ्टवेयर उपयोगिता पीसी के लिए मुफ्त डाउनलोड

[vc_row][vc_column][vc_tta_tabs style=”modern” active_section=”1″][vc_tta_section title=”About” tab_id=”aboutf856-8f346d37-f5d1″][vc_column_text]

GPU-Z is a small-sized software utility that displays information about the computer’s graphics card and sensors while allowing users to supervise temperature, used memory, and other data.

It features support for creating log files and comes in handy to all users looking to upgrade hardware, purchase a high-demanding video game, or simply compare the graphics card configuration with other systems. There is also a specially-themed version for ASUS ROG graphics card owners.GPU-Z picture

Installer and portable package

It is possible to either install GPU-Z or launch it directly. Thanks to its portability, it is possible to save the tool to a USB flash disk or another removable storage unit, in order to run it on any PC easily and without previous installers. Plus, it does not modify Windows registry settings or create additional files on the disk without permission, thus leaving no traces behind after its removal.

Investigate graphics card information

As far as the graphics card is concerned, GPU-Z shows its name, GPU, revision, technology, release date, transistors, BIOS version, device ID, shaders, DirectX support version, pixel and texture fillrate, memory type and size, bus width, bandwidth, driver version, GPU and default clocks, and other details.

The application offers support for OpenCL, CUDA, PhysX, and DirectCompute. If there are multiple graphics cards implemented into the PC unit, it is possible to view all these details for each one.

Examine and export sensors information, customize readings

When it comes to the sensors, GPU-Z shows the GPU temperature, core, memory and shader clocks, fan speed in percentage and RPM, used memory, GPU, memory controller and video engine loads, along with the VDDC (memory voltage).

It is possible to disable any sensor, show a preferred one in the GPU-Z window title to monitor live usage easily, as well as set the tool to display either the actual, lowest, highest or average reading for each sensor. The information refresh rate can be changed (ranging from 100 milliseconds to 10 seconds); the program continues to refresh the screen even when it runs in the background, but this feature may be deactivated. What’s more, all sensor information can be saved to a plain text document; it gets continuously updated by GPU-Z at the frequency set for the sensor refresh rate.

Evaluation and conclusion

GPU-Z has a great response time and minimizes to the system tray area on close; holding the mouse cursor above it shows the live GPU temperature and load, along with used memory. We have not come across any issues throughout our tests, since it did not cause Windows to hang, crash or pop up error messages. To sum it up, GPU-Z is a must-have tool for any self-respectable power user who wants to keep track of their GPU temperature and analyze information in detail.

What’s New In This Latest Version

  • Added support for NVIDIA GeForce GTX 1660, RTX 2060 Mobile (TU106-B), Quadro RTX 5000, Quadro RTX 6000
  • Added Hotspot temperature monitoring for AMD Radeon VII
  • Vega 10 & Vega 20 Hotspot no longer disabled by default
  • Updated PCI vendor database to add new companies and remove unused entries

[/vc_column_text][/vc_tta_section][vc_tta_section title=”Alternatives” tab_id=”1613204936455-cd1a2326-6b56f856-8f346d37-f5d1″][vc_column_text]

[/vc_column_text][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]

GPU-Z For Windows Overview

[/vc_column_text][vc_single_image image=”77724″][vc_column_text css=”.vc_custom_1637068744243{margin-top: 10px !important;}”]

संस्करण2.43
फ़ाइल का साइज़7.1 MB
बोलीEnglish
लाइसेंसमुक्त
डेवलपरtechPowerUp

[/vc_column_text][/vc_column][/vc_row]

// Constants for DOM elements const dropdownTriggers = document.querySelectorAll('.dz-menu-item.dropdown'); const dropdownContent = document.querySelector('.dz-dropdown-content'); const dropdownPanels = document.querySelectorAll('.dz-dropdown-panel'); const header = document.querySelector('.dz-header-wrap');// State to track the currently open menu item element let activeDropdownElement = null; let closeTimer = null; // Timer for delayed closing// Function to close all dropdowns function closeAllDropdowns() { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // Only proceed if the elements exist if (dropdownContent) { dropdownContent.classList.remove('open'); } dropdownPanels.forEach(panel => panel.classList.remove('active')); dropdownTriggers.forEach(item => item.classList.remove('active')); activeDropdownElement = null; }// Function to open a specific dropdown function openDropdown(item, targetPanel) { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } // 1. Close all others closeAllDropdowns(); // 2. Open the new one item.classList.add('active'); targetPanel.classList.add('active'); if (dropdownContent) { dropdownContent.classList.add('open'); } activeDropdownElement = item; }// Event listener for each dropdown menu item dropdownTriggers.forEach(item => { item.addEventListener('click', function(e) { e.preventDefault(); const panelName = this.getAttribute('data-panel'); const targetPanel = document.querySelector(`.${panelName}`); if (!targetPanel) return;const isCurrentlyActive = this === activeDropdownElement;if (isCurrentlyActive) { // If the same dropdown is clicked, close it immediately. closeAllDropdowns(); } else { // Open the new dropdown openDropdown(this, targetPanel); } }); });/* --- MOUSE EVENTS FOR STABILITY FIX --- */ if (header) { // 1. When the mouse leaves the entire header area (menu + dropdown bar), start a timer to close it. header.addEventListener('mouseleave', () => { // Only initiate close if a dropdown is currently active if (activeDropdownElement) { // Set a delay (e.g., 300ms) to allow the user to move the mouse slightly closeTimer = setTimeout(closeAllDropdowns, 300); } });// 2. If the mouse re-enters the header area before the timer fires, cancel the close. header.addEventListener('mouseenter', () => { if (closeTimer) { clearTimeout(closeTimer); closeTimer = null; } }); }// 3. Close when clicking anywhere outside the header (as a fallback) document.addEventListener('click', (e) => { // Check if header exists and if the click is outside the header AND a dropdown is open if (header && !header.contains(e.target) && activeDropdownElement) { closeAllDropdowns(); } });// Initial setup: ensure all are closed on load document.addEventListener('DOMContentLoaded', closeAllDropdowns); window.addEventListener('load', closeAllDropdowns);
ऊपर स्क्रॉल करें