1578921 : max-hzgg014¶
Created: 2026-02-23T13:07:32Z - current status: new¶
**
Anonymized Summary:¶
A user reports a CUDA-related error in MATLAB when running on node max-hzgg014 (part of the Maxwell cluster). The error suggests a potential issue with CUDA drivers or compatibility.
Possible Solution:¶
- Check MATLAB-CUDA Compatibility:
- MATLAB requires specific CUDA versions. Verify if the installed CUDA version on
max-hzgg014matches MATLAB’s requirements. -
Use
module avail cudato list available CUDA versions and load the correct one (e.g.,module load cuda/11.2). -
Node-Specific GPU Hardware:
max-hzgg014is part of the HPC Gateway GPU nodes (H200-NVL). These nodes enforce commercial-use-only software policies, and MATLAB is not available on partitionshpcgwgpuorcompgpu(see 2025-09-29 update).-
If the job is running on
compgpuorhpcgwgpu, MATLAB will fail due to licensing restrictions. -
Alternative Partitions:
- Run MATLAB on non-HPC Gateway partitions (e.g.,
allgpuor standard CPU nodes) where MATLAB is supported. -
Example:
bash #SBATCH --partition=allgpu #SBATCH --constraint="V100|P100" # Use older GPUs if needed -
Debugging Steps:
- Test CUDA functionality outside MATLAB:
bash module load cuda/11.2 nvidia-smi # Check GPU visibility - Verify MATLAB’s GPU support:
matlab gpuDevice # Check if MATLAB detects the GPU
Sources:¶
- Maxwell Cluster News: HPC Gateway GPUs (2025-09-29)
- Maxwell TensorFlow Documentation (for CUDA module examples)