You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we try to run the DYAMOND configuration on central's P100 GPUs, it fails because there isn't enough memory available during the atmos_init call. The same run works fine on clima's A100 GPUs, but in atmos_init we see Effective GPU memory usage: 87.32% (69.114 GiB/79.150 GiB). 70GB memory usage is a lot, so we need to look into where these allocations are coming from.
We can do this by placing CUDA.memory_status calls throughout the code to see where the allocations jump
The text was updated successfully, but these errors were encountered:
Coupler output table shows very similar allocations between atmos-only and coupled simulations, as of 5/1 (on GPU):
coupled simulation allocations: 3.361 GiB
atmos-only simulation allocations: 3.255 GiB
When we try to run the DYAMOND configuration on central's P100 GPUs, it fails because there isn't enough memory available during the
atmos_init
call. The same run works fine on clima's A100 GPUs, but inatmos_init
we seeEffective GPU memory usage: 87.32% (69.114 GiB/79.150 GiB)
. 70GB memory usage is a lot, so we need to look into where these allocations are coming from.We can do this by placing
CUDA.memory_status
calls throughout the code to see where the allocations jumpThe text was updated successfully, but these errors were encountered: