-
Notifications
You must be signed in to change notification settings - Fork 768
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
[UR] Move non-conformance/adapter tests to lit #17580
Open
RossBrunton
wants to merge
1
commit into
intel:sycl
Choose a base branch
from
RossBrunton:ross/morelit
base: sycl
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
b7d3c9d
to
6da2652
Compare
This is a newer version of the PR here. See that for some comments that have hopefully been resolved. |
6da2652
to
695f3ae
Compare
aelovikov-intel
approved these changes
Mar 24, 2025
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.
Changes outside unified-runtime
LGTM.
695f3ae
to
341ac9b
Compare
341ac9b
to
8ed0446
Compare
aarongreig
reviewed
Mar 31, 2025
8ed0446
to
81317a3
Compare
81317a3
to
e8ef3a6
Compare
e8ef3a6
to
78358b8
Compare
kbenzie
reviewed
Apr 4, 2025
78358b8
to
ee08ff3
Compare
This adds support for lit to unified-runtime, in the form of a new target `check-unified-runtime`. This target is available when UR is built standalone and when built as part of dpcpp. In addition, there are targets like `check-unified-runtime-unit` which run a subset of the lit tests. When built standalone, `lit` and `filecheck` must be avilable in the path. A `requirements_testing.txt` file is available to install test dependencies. When built as part of dpcpp, a new cmake variable is available; `SYCL_UR_BUILD_TESTS` which is off by default. When enabled, `check-unified-runtime` will be available as a target and will also run as part of `check-all`. All tests have been ported with the exception of: * Adapter tests * Conformance tests The Python version for macos was also bumped to 3.10 to enable use of a newer filecheck version.
ee08ff3
to
d51d060
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adds support for lit to unified-runtime, in the form
of a new target
check-unified-runtime
. This target is availablewhen UR is built standalone and when built as part of dpcpp.
In addition, there are targets like
check-unified-runtime-unit
which run a subset of the lit tests.
When built standalone,
lit
andfilecheck
must be avilable inthe path. A
requirements_testing.txt
file is available toinstall test dependencies.
When built as part of dpcpp, a new cmake variable is available;
SYCL_UR_BUILD_TESTS
which is off by default. When enabled,check-unified-runtime
will be available as a target and willalso run as part of
check-all
.All tests have been ported with the exception of:
The Python version for macos was also bumped to 3.10 to enable
use of a newer filecheck version.