-
Notifications
You must be signed in to change notification settings - Fork 190
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
OutOfMemoryError on my P51s #2613
Comments
@k-okada |
@k-okada |
if we add
pool = cp.cuda.MemoryPool(cp.cuda.malloc_managed)
cp.cuda.set_allocator(pool.malloc)
then, it works on my p51s, so question is; Should we put this code on
fcn_object_segmentation.py ?
…--
◉ Kei Okada
2021年7月12日(月) 0:01 Shingo Kitagawa ***@***.***>:
@k-okada <https://github.com/k-okada>
It was my misunderstandings, but unified memory is introduced in Keplar
architecture.
However, cupy's unified memory is enabled from Pascal architecture.
https://developer.nvidia.com/blog/unified-memory-cuda-beginners/
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#2613 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADYNXBXAJG6PFBRD4ASUW3TXGW23ANCNFSM5AE6LHHA>
.
|
in my P50, the code does not work, so it doesnot change my situation. |
I tried to run FCN example on my P51s
and have following error. This error can be avoid by adding following code and I'd like to add this code on source tree instead of adding the code every time.
Is there any why to know if the model fits in current memory before we send to hardware? Or
is enough?
The text was updated successfully, but these errors were encountered: