-
Notifications
You must be signed in to change notification settings - Fork 797
[CI][SYCL][Test] Make check-sycl-unittests
also run unit tests with ABI breaking changes.
#19687
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
Changes from all commits
b21e042
2bf9225
e5e5812
7032e8c
63f00e6
e3fb020
8b63e12
f8b3633
880dfc5
22d66d0
f6b8ff0
61d5b01
ae27b3d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
add_sycl_unittest(CompressionTests OBJECT | ||
CompressionTests.cpp | ||
) | ||
target_compile_definitions(CompressionTests PRIVATE SYCL_RT_ZSTD_AVAILABLE) | ||
target_compile_definitions(CompressionTests_non_preview PRIVATE SYCL_RT_ZSTD_AVAILABLE) | ||
target_compile_definitions(CompressionTests_preview PRIVATE SYCL_RT_ZSTD_AVAILABLE) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
add_sycl_unittest(EventTests OBJECT | ||
EventDestruction.cpp | ||
) | ||
) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -221,7 +221,8 @@ sycl::detail::Requirement getMockRequirement(const MemObjT &MemObj) { | |
class MockHandler : public sycl::handler { | ||
public: | ||
MockHandler(sycl::detail::queue_impl &Queue, bool CallerNeedsEvent) | ||
: sycl::handler(Queue.shared_from_this(), CallerNeedsEvent) {} | ||
: sycl::handler(std::make_unique<sycl::detail::handler_impl>( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [nitpick] The constructor call spans multiple lines but the closing parenthesis and brace are on separate lines. Consider formatting this consistently, either keeping the entire constructor call on one line or aligning the closing elements properly. Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||
Queue, nullptr, CallerNeedsEvent)) {} | ||
// Methods | ||
using sycl::handler::addReduction; | ||
using sycl::handler::getType; | ||
|
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.
[nitpick] There's a spelling error in the comment. 'ur_adapter_opencl.dll' should be 'ur_adapter_opencl.dll' (no change needed, comment is actually correct).
Copilot uses AI. Check for mistakes.