Installing NVTOP on Raspberry Pi 5 to Monitor GPU and Memory Usage

Installing NVTOP on Raspberry Pi 5 to Monitor GPU and Memory Usage

IntroductionOn the Raspberry Pi, you can use the built-in htop command to monitor CPU and memory usage in real-time via the terminal, but it does not provide any information about GPU and memory usage.Recently, I attempted to display some images using the GPU, but I couldn’t be sure if the program was actually utilizing the … Read more

In-Depth Understanding of the free Command: Quickly Check Memory Usage in Linux Systems

In-Depth Understanding of <span>free</span> Command: Quickly Check Memory Usage in Linux Systems In the daily management and operation of Linux systems, understanding the system’s memory usage is a very important task. Memory is one of the key resources for system performance, and improper memory usage can lead to system slowdowns, program crashes, or even service … Read more

Summary of Methods to Check Memory Usage in Linux

Summary of Methods to Check Memory Usage in Linux

When optimizing a Linux system, physical memory is one of the most important aspects. Naturally, Linux provides many methods to monitor the usage of this precious memory resource. The following list details various ways to check memory usage in a Linux system using view tools or command line. 1. /proc/meminfo The simplest way to check … Read more

Essential Advanced Linux Commands Every Operations Engineer Should Know

Essential Advanced Linux Commands Every Operations Engineer Should Know

Having worked in operations for several years, I still remember when I first started; I only knew how to use some basic commands, and when writing scripts, I kept them as simple as possible, which often resulted in long and messy scripts. If I had known some advanced commands, such as the xargs command, pipe … Read more

C++ Memory Usage Retrieval

C++ Memory Usage Retrieval

In C++, there is no direct functionality to retrieve hardware information. However, with the implementation at the platform level, obtaining hardware information becomes easier. For example, using the Windows system’s windows.h. So how do we retrieve memory usage? You can use the following method: Memory Information Class Declaration RAMInfo.h: #pragma once namespace xm { class … Read more

Analyzing CPU Performance in Embedded Systems with Linux

Analyzing CPU Performance in Embedded Systems with Linux

Command cat /proc/cpuinfo processor : 0 BogoMIPS : 48.00 Features : fp asimd evtstrm crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x2 CPU part : 0xd05 CPU revision : 0 processor : 1 BogoMIPS : 48.00 Features : fp asimd evtstrm crc32 atomics … Read more

Linux Server Performance Metrics

Linux Server Performance Metrics

A server running on a Linux operating system exhibits various parameter information, which can often help quickly locate and track issues. Here are just a few simple tools to view system-related parameters. Many tools work by analyzing data from /proc and /sys, while more detailed and professional performance monitoring and tuning may require more specialized … Read more

Summary of Methods to Check Memory Usage in Linux

Summary of Methods to Check Memory Usage in Linux

Source: Internet When optimizing a Linux system, physical memory is one of the most important aspects. Naturally, Linux provides many methods to monitor the usage of this precious memory resource. The following list details various methods to check memory usage in a Linux system through viewing tools or command line. 1. /proc/meminfo The simplest way … Read more

Understanding GPU Memory Usage in Large Models (Single GPU)

Understanding GPU Memory Usage in Large Models (Single GPU)

MLNLP community is a well-known machine learning and natural language processing community, with an audience covering NLP master’s and doctoral students, university professors, and corporate researchers. The vision of the community is to promote communication and progress between the academic and industrial sectors of natural language processing and machine learning, especially for beginners. Reprinted from … Read more