Skip to content

Commit 0f5c808

Browse files
authored
Document a known GPU out-of-memory bug caused by file caches residing in GPU memory. (#216)
1 parent e52047c commit 0f5c808

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

docs/running/known-issues.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[](){#ref-known-issues}
2+
# Known Issues
3+
4+
## Out of Memory on GH200 nodes
5+
There is a known issue with Nvidia GPU driver version R550.54.15, currently installed on all GH200 nodes, that can reduce the amount of available GPU memory.
6+
7+
Under normal conditions, Linux in-memory file caches may migrate from CPU to GPU memory. Allocating GPU memory should trigger the eviction of these caches, freeing up GPU memory. However, due to this bug, eviction does not occur, leading to out-of-memory errors.
8+
9+
Applications with heavy I/O workloads are especially affected, as increased I/O generates more cached data. While we currently ensure that at least 90% of GPU memory is available when a node is allocated to a job, available memory may still decrease during the job’s execution.
10+
11+
This issue is fixed in driver version R570, which will be deployed during a future system maintenance.
12+

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ nav:
112112
- running/index.md
113113
- 'Slurm': running/slurm.md
114114
- 'Job report': running/jobreport.md
115+
- 'Known issues': running/known-issues.md
115116
- 'Data Management and Storage':
116117
- storage/index.md
117118
- 'File Systems': storage/filesystems.md

0 commit comments

Comments
 (0)