Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support asynchronous memory allocation #248

Closed
eyalroz opened this issue Feb 27, 2021 · 2 comments
Closed

Support asynchronous memory allocation #248

eyalroz opened this issue Feb 27, 2021 · 2 comments

Comments

@eyalroz
Copy link
Owner

eyalroz commented Feb 27, 2021

CUDA 11.2 added asynchronous memory allocation and de-allocation. Let's support that.

API description: here.

​cudaError_t cudaFreeAsync ( void* devPtr, cudaStream_t hStream );
​cudaError_t cudaMallocAsync ( void** devPtr, size_t size, cudaStream_t hStream );
@eyalroz eyalroz added the task label Feb 27, 2021
@eyalroz eyalroz added this to the Full CUDA 11.2 milestone Feb 27, 2021
@eyalroz eyalroz self-assigned this Feb 27, 2021
@eyalroz
Copy link
Owner Author

eyalroz commented Feb 27, 2021

Note: Need some test/example program coverage...

@eyalroz
Copy link
Owner Author

eyalroz commented Jul 23, 2022

Not actually fixed... we had only added allocation, not deallocation :-(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant