Skip to content
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

Fix stream_ordered_memory_resource attempt to record event in stream from another device #1333

Merged
merged 14 commits into from
Sep 13, 2023
Merged
Prev Previous commit
Next Next commit
style
harrism committed Sep 6, 2023
commit 28c094d0804d0d2fb01552477d879d60d203442f
2 changes: 1 addition & 1 deletion tests/mr/device/pool_mr_tests.cpp
Original file line number Diff line number Diff line change
@@ -102,7 +102,7 @@ TEST(PoolTest, ForceGrowth)
EXPECT_NO_THROW(mr.allocate(1000));
EXPECT_THROW(mr.allocate(4000), rmm::out_of_memory); // too much
EXPECT_NO_THROW(mr.allocate(500));
EXPECT_NO_THROW(mr.allocate(2000)); // fits
EXPECT_NO_THROW(mr.allocate(2000)); // fits
}
}