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
{{ message }}
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
Test environment
GA102 (48 GB GPU memory)
CUDA 11.4
Thrust 1.15.0
The code below fails with cudaErrorIllegalAddress
It seems like this works up to size_t{2} * 1024 * 1024 * 1024 + small number (didn't crash, haven't verified the results), but fails with size_t{3} * 1024 * 1024 * 1024 and size_t{4} * 1024 * 1024 * 1024. I suspect some sort of an integer overflow issue.
terminate called after throwing an instance of 'thrust::system::system_error'
what(): CUDA free failed: cudaErrorIllegalAddress: an illegal memory access was encountered
The text was updated successfully, but these errors were encountered:
Test environment
GA102 (48 GB GPU memory)
CUDA 11.4
Thrust 1.15.0
The code below fails with
cudaErrorIllegalAddress
It seems like this works up to size_t{2} * 1024 * 1024 * 1024 + small number (didn't crash, haven't verified the results), but fails with size_t{3} * 1024 * 1024 * 1024 and size_t{4} * 1024 * 1024 * 1024. I suspect some sort of an integer overflow issue.
The text was updated successfully, but these errors were encountered: