-
-
Save denji/ece738b03d44f8fa64da23e47f6c5e39 to your computer and use it in GitHub Desktop.
Revisions
-
zrruziev revised this gist
Apr 27, 2022 . 1 changed file with 18 additions and 13 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,38 +5,43 @@ In other words, it is a technology to increase memory access efficiency while us ## 1. Check Nodes ```bash lspci | grep -i nvidia 01:00.0 VGA compatible controller: NVIDIA Corporation TU106 [GeForce RTX 2060 12GB] (rev a1) 01:00.1 Audio device: NVIDIA Corporation TU106 High Definition Audio Controller (rev a1) ``` The first line shows the address of the VGA compatible device, NVIDIA Geforce, as **01:00** . Each one will be different, so let's change this part carefully. ## 2. Check and change NUMA setting values If you go to `/sys/bus/pci/devicecs/`, you can see the following list: ```bash ls /sys/bus/pci/devices/ 0000:00:00.0 0000:00:06.0 0000:00:15.0 0000:00:1c.0 0000:00:1f.3 0000:00:1f.6 0000:02:00.0 0000:00:01.0 0000:00:14.0 0000:00:16.0 0000:00:1d.0 0000:00:1f.4 0000:01:00.0 0000:00:02.0 0000:00:14.2 0000:00:17.0 0000:00:1f.0 0000:00:1f.5 0000:01:00.1 ``` 01:00.0 checked above is visible. However, 0000: is attached in front. ## 3. Check if it is connected. ```bash cat /sys/bus/pci/devices/0000\:01\:00.0/numa_node -1 ``` -1 means no connection, 0 means connected. ## 4. Fix it with the command below. ```bash sudo echo 0 | sudo tee -a /sys/bus/pci/devices/0000\:01\:00.0/numa_node 0 ``` It shows 0 which means connected! ## 5. Check again: ```bash cat /sys/bus/pci/devices/0000\:01\:00.0/numa_node 0 ``` That's it! -
zrruziev revised this gist
Apr 7, 2022 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -29,12 +29,14 @@ $ cat /sys/bus/pci/devices/0000\:01\:00.0/numa_node ## 4. Fix it with the command below. ```bash $ sudo echo 0 | sudo tee -a /sys/bus/pci/devices/0000\:01\:00.0/numa_node 0 ``` It shows 0 which means connected! ## 5. Check again: ```bash $ cat /sys/bus/pci/devices/0000\:01\:00.0/numa_node 0 ``` That's it! -
zrruziev revised this gist
Apr 7, 2022 . No changes.There are no files selected for viewing
-
zrruziev created this gist
Apr 7, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,40 @@ # What is NUMA (Non-Uniformed Memory Access) **Non-Uniform Memory Access (NUMA)** is one of the computer memory design methods used in multiprocessor systems, and the time to access the memory varies depending on the relative position between the memory and the processor. In the NUMA architecture, when a processor accesses its local memory, it is faster than when it accesses the remote memory. Remote memory refers to memory that is connected to another processor, and local memory refers to memory that is connected to its own processor. In other words, it is a technology to increase memory access efficiency while using multiple processors on one motherboard. When a specific processor runs out of memory, it monopolizes the bus by itself, so other processors have to play. , and designate 'access only here', and call it a NUMA node. ## 1. Check Nodes ```bash $ lspci | grep -i nvidia 01:00.0 VGA compatible controller: NVIDIA Corporation TU106 [GeForce RTX 2060 12GB] (rev a1) 01:00.1 Audio device: NVIDIA Corporation TU106 High Definition Audio Controller (rev a1) ``` The first line shows the address of the VGA compatible device, NVIDIA Geforce, as **01:00** . Each one will be different, so let's change this part carefully. ## 2. Check and change NUMA setting values If you go to `/sys/bus/pci/devicecs/`, you can see the following list: ```bash $ ls /sys/bus/pci/devices/ 0000:00:00.0 0000:00:06.0 0000:00:15.0 0000:00:1c.0 0000:00:1f.3 0000:00:1f.6 0000:02:00.0 0000:00:01.0 0000:00:14.0 0000:00:16.0 0000:00:1d.0 0000:00:1f.4 0000:01:00.0 0000:00:02.0 0000:00:14.2 0000:00:17.0 0000:00:1f.0 0000:00:1f.5 0000:01:00.1 ``` 01:00.0 checked above is visible. However, 0000: is attached in front. ## 3. Check if it is connected. ```bash $ cat /sys/bus/pci/devices/0000\:01\:00.0/numa_node -1 ``` -1 means no connection, 0 means connected. ## 4. Fix it with the command below. ```bash echo 0 | sudo tee -a /sys/bus/pci/devices/0000\:01\:00.0/numa_node ``` ## 5. Check again: ```bash $ cat /sys/bus/pci/devices/0000\:01\:00.0/numa_node 0 ``` It shows 0 which means connected!