-
Notifications
You must be signed in to change notification settings - Fork 621
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
Integrate RMM #2609
Integrate RMM #2609
Conversation
Signed-off-by: Michał Zientkiewicz <[email protected]>
!build |
CI MESSAGE: [1975053]: BUILD STARTED |
CI MESSAGE: [1975053]: BUILD FAILED |
Use RMM interfaces in dali::mm. Signed-off-by: Michał Zientkiewicz <[email protected]>
CI MESSAGE: [1976929]: BUILD STARTED |
CI MESSAGE: [1976929]: BUILD PASSED |
################################################################## | ||
# RAPIDS Memory Manager | ||
################################################################## | ||
include_directories(SYSTEM ${PROJECT_SOURCE_DIR}/third_party/rmm/include) |
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.
Can you check if that compiler for QNX, aarch64 and SBSA?
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.
QNX passed. I see no reason why SBSA would not, but I can try for CUDA 11 sake.
CI MESSAGE: [1977341]: BUILD STARTED |
dali/core/mm/mm_test_utils.h
Outdated
ret = ua(bytes + sizeof(sentinel_t), alignment); | ||
detail::write_sentinel<sentinel_t>(ret, bytes, std::forward<Extra>(extra)...); | ||
} else { | ||
ret = upstream_->allocate(extra..., bytes, alignment); | ||
ret = upstream_->allocate(bytes, alignment, std::forward<Extra>(extra)...); |
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.
Why use ua
in one place and upstream_
directly in the second?
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.
It's a bug. It should be ua
.
…urce compiles. Signed-off-by: Michał Zientkiewicz <[email protected]>
CI MESSAGE: [1977856]: BUILD STARTED |
CI MESSAGE: [1977935]: BUILD STARTED |
Signed-off-by: Michał Zientkiewicz <[email protected]>
CI MESSAGE: [1977986]: BUILD STARTED |
CI MESSAGE: [1977986]: BUILD FAILED |
Signed-off-by: Michał Zientkiewicz <[email protected]>
CI MESSAGE: [1978196]: BUILD STARTED |
CI MESSAGE: [1978196]: BUILD FAILED |
CI MESSAGE: [1978369]: BUILD STARTED |
CI MESSAGE: [1977935]: BUILD PASSED |
CI MESSAGE: [1978369]: BUILD PASSED |
Why we need this PR?
Pick one, remove the rest
What happened in this PR?
Fill relevant points, put NA otherwise. Replace anything inside []
JIRA TASK: [DALI-1782] [DALI-1783]