Unverified Commit a5dc230a authored by Jinjing Zhou's avatar Jinjing Zhou Committed by GitHub
Browse files

Fix shared memory in unit test (#3204)

parent 6f93c6aa
......@@ -12,9 +12,14 @@ spec:
requests:
cpu: 8
volumeMounts:
- name: persistent-storage
mountPath: /tmp/dataset
- name: persistent-storage
mountPath: /tmp/dataset
- name: dshm
mountPath: /dev/shm
volumes:
- name: persistent-storage
persistentVolumeClaim:
claimName: ogb-efs-claim
\ No newline at end of file
claimName: ogb-efs-claim
- name: dshm
emptyDir:
medium: Memory
......@@ -11,6 +11,13 @@ spec:
resources:
limits:
nvidia.com/gpu: 1 # requesting 1 GPU
volumeMounts:
- name: dshm
mountPath: /dev/shm
volumes:
- name: dshm
emptyDir:
medium: Memory
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment