-
Notifications
You must be signed in to change notification settings - Fork 450
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
UCT/CUDA/CUDA_COPY: Enabled memory attributes query after switching CUDA GPU. #10388
Conversation
d31bb61
to
1adcb5e
Compare
/azp run UCX PR |
Azure Pipelines successfully started running 1 pipeline(s). |
4adf57b
to
6d38f73
Compare
uct_md_mem_attr_t mem_attr = {}; | ||
mem_attr.field_mask = UCT_MD_MEM_ATTR_FIELD_MEM_TYPE; | ||
EXPECT_EQ(uct_md_mem_query(m_md.get(), mem.address, size, &mem_attr), | ||
UCS_OK); | ||
EXPECT_EQ(mem_attr.mem_type, UCS_MEMORY_TYPE_CUDA); | ||
EXPECT_EQ(uct_mem_free(&mem), UCS_OK); |
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.
shall we check different allocation/memory types like VMM, Managed, etc? Can do it using several test functions (cases)
I would allocate memory here using Cuda API directly and not using UCT to test these cases
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.
Added test cases for different memory types.
|
||
void cuda_fabric_mem_buffer::destroy() | ||
{ | ||
switch (m_state) { |
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.
maybe we don't need to save the state as member var: when cuXX api fails during the constructor, rollback the state (using goto) and skip the test after the rollback. then can probably remove init/destroy wrappers and catching of skip exception
@tvegas1 addressed your comment. Deleted by mistake. |
aa78963
to
39f917a
Compare
What?
Enabled memory attributes query by
cuda_cpy
memory domain after switching CUDA GPU.Added test.
Without the changes in
cuda_cpy
memory domain the test fails with the following error: