To help you with the installation of BioNeMo Inference Runtime (BioIR), system information can be obtained with the commands below.
# Check OS version
cat /etc/os-release
# Example output for Ubuntu:
# NAME="Ubuntu"
# VERSION="24.04.3 LTS (Noble Numbat)"
# ID=ubuntu
# VERSION_ID="24.04"# Set CPU arch as environment variable, on Ubuntu/Debian system
export CPU_ARCH=$(dpkg --print-architecture)
echo "CPU_ARCH: ${CPU_ARCH}"
# Example output:
# amd64
# Set CPU arch as environment variable, on a non-Ubuntu/Debian system
export CPU_ARCH=$(uname -m)
echo "CPU_ARCH: ${CPU_ARCH}"
# Example output:
# x86_64From the root of your BioNeMo-Inference-Runtime clone, run the script below with possible output values:
- (a) DGX
- (b) HGX
- (c) Tesla / datacenter
- (d) GeForce
./scripts/print_gpu_system_category.sh
# Example output
(a) DGX
system : Dell Inc. Dell Pro Max with Station GB300
gpu : NVIDIA GB300 x1 (brand: NVIDIA)
nvswitches : 0
--------------------------# Check GPU model
nvidia-smi --query-gpu=name --format=csv
# Example output:
# name
# NVIDIA GB300If you see a message like Command 'nvidia-smi' not found, then attempt to
determine GPU model with the command below:
# Check GPU model
lspci | grep -Ei "VGA|3D|Display" | grep -i NVIDIA
# Example output:
# 01:00.0 3D controller: NVIDIA Corporation GH100 [H100 SXM5 80GB] (rev a1)If the nvidia-smi command in Item 4 above is successful, then run
the command below. Otherwise, the NVIDIA Driver is not correctly installed.
# Check NVIDIA Driver version
nvidia-smi --query-gpu=driver_version --format=csv
# Example output:
# driver_version
# 580.65.06# Check Docker version
docker --version
# Example output:
# Docker version 29.2.1, build a5c7197Refer to NVIDIA Container Toolkit for version details.
# Check NVIDIA Container Toolkit version
nvidia-ctk --version
# Example output:
# NVIDIA Container Toolkit CLI version 1.19.0
# commit: ec7b4e2fa2caecad6d89be4a26029b831fe7503a