-
Notifications
You must be signed in to change notification settings - Fork 915
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
Remove dependence on managed memory for multimap test #7451
Remove dependence on managed memory for multimap test #7451
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #7451 +/- ##
===============================================
+ Coverage 81.80% 82.26% +0.46%
===============================================
Files 101 101
Lines 16695 17072 +377
===============================================
+ Hits 13658 14045 +387
+ Misses 3037 3027 -10
Continue to review full report at Codecov.
|
@@ -91,12 +96,3 @@ TYPED_TEST(MultimapTest, InitialState) | |||
auto end = this->the_map->end(); | |||
EXPECT_NE(begin, end); | |||
} | |||
|
|||
TYPED_TEST(MultimapTest, CheckUnusedValues) |
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 is this test removed?
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.
To remove the dependence on managed memory. It was accessing it from the host.
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.
Is there a way to add alternate test for this ?
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 not necessary.
@gpucibot merge |
Removes managed memory from the
HASH_MAP_TEST
to allow the test to work on systems that don't support managed memory.