diff --git a/tldr/linux/amdgpu_top b/tldr/linux/amdgpu_top new file mode 100644 index 00000000..52f8de82 --- /dev/null +++ b/tldr/linux/amdgpu_top @@ -0,0 +1,34 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# amdgpu_top + +> Tool to display AMD GPU utilization and hardware metrics using the AMDGPU driver. +> See also: `nvtop`, `radeontop`. +> More information: . + +- Display a list of AMDGPU devices: + +`amdgpu_top --list` + +- Dump all GPU processes and per-process memory usage: + +`amdgpu_top {{[-p|--process]}}` + +- Select a specific GPU by PCI bus: + +`amdgpu_top --pci "{{0000:01:00.0}}"` + +- Launch the interactive TUI monitor: + +`amdgpu_top` + +- Launch the GUI monitor: + +`amdgpu_top --gui` + +- Launch a simple SMI-like TUI view: + +`amdgpu_top --smi` diff --git a/tldr/linux/nvtop b/tldr/linux/nvtop new file mode 100644 index 00000000..ffcca1c8 --- /dev/null +++ b/tldr/linux/nvtop @@ -0,0 +1,38 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# nvtop + +> Interactive ncurses-based GPU process and status viewer for AMD, Intel, and NVIDIA GPUs. +> See also: `amdgpu_top`, `radeontop`. +> More information: . + +- Launch the interactive GPU monitor: + +`nvtop` + +- Set the update delay in tenths of a second (for example, 2 = 0.2 seconds): + +`nvtop {{[-d|--delay]}} {{2}}` + +- Run in monochrome (no color) mode: + +`nvtop {{[-C|--no-color]}}` + +- Use Fahrenheit for temperature display: + +`nvtop {{[-f|--freedom-unit]}}` + +- Always show encoder/decoder meters, disabling auto-hide: + +`nvtop {{[-E|--encode-hide]}} -1` + +- Show a single combined bar plot instead of per-GPU plots: + +`nvtop {{[-p|--no-plot]}}` + +- Show the program version: + +`nvtop {{[-v|--version]}}` diff --git a/tldr/linux/radeontop b/tldr/linux/radeontop index 20fa1b56..2369ca4b 100644 --- a/tldr/linux/radeontop +++ b/tldr/linux/radeontop @@ -7,6 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Show utilization of AMD GPUs. > May require root privileges depending on your system. +> See also: `nvtop`, `amdgpu_top`. > More information: . - Show the utilization of the default AMD GPU: diff --git a/tldr/ng-run b/tldr/ng-run new file mode 100644 index 00000000..24b21432 --- /dev/null +++ b/tldr/ng-run @@ -0,0 +1,13 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# ng run + +> Run an Architect target with an optional custom builder configuration. +> More information: . + +- Run an Architect target using the format `project:target:configuration`: + +`ng run {{project_name}}:{{build|serve|test|lint|...}}:{{development|production|...}}`