-
Notifications
You must be signed in to change notification settings - Fork 102
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
MC/ROCM: ROCm compatibility fixes #858
MC/ROCM: ROCm compatibility fixes #858
Conversation
Can one of the admins verify this patch? |
2968806
to
1c99c0d
Compare
1c99c0d
to
6fa90b0
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. Regarding managed memory support, I think proper memory allocation function is needed to support ROCM_MANAGED for algorithms with scratch buffer e.g. allreduce in TL/UCP
@Sergei-Lebedev thank you, yes, you are correct, it is something that we need to add to our to-do list for the near future. |
Signed-off-by: nileshnegi <[email protected]>
6fa90b0
to
ba93b26
Compare
Signed-off-by: nileshnegi <[email protected]>
Signed-off-by: nileshnegi <[email protected]>
Signed-off-by: nileshnegi <[email protected]>
What
type
instead ofmemoryType
inhipPointerAttribute_t
.hipMemoryTypeManaged
Why ?
memoryType
is deprecated andtype
is used instead inhipPointerAttribute_t
.hipMallocManaged
pointers returnhipMemoryTypeManaged
instead ofhipMemoryTypeHost
.