-
Notifications
You must be signed in to change notification settings - Fork 40
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 RPATH in pybind11 module for 0.33 #543
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
14401ea
Ensure RPATH isn't stripped away from python module for L-GPU
mlxd d97e7e1
Move RPATH settings to pybind11 module level definition
mlxd 33af1c9
Update changelog
mlxd 06f590a
Enable CI for RC PR
mlxd 172c369
Lower PL version to 0.33 from master in req
mlxd 22b35ec
Remove CUQUANTUM_SDK env var to validate RPATH in LGPU builds
mlxd f5e6e2c
Migrate PL 0.33.0-rc to 0.33 in tests
mlxd ce36e3d
Revert wheel cache for validation
mlxd 467be44
Update changelog
mlxd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,7 +142,7 @@ jobs: | |
CIBW_TEST_REQUIRES: pytest pytest-cov pytest-mock flaky | ||
|
||
CIBW_BEFORE_TEST: | | ||
python -m pip install git+https://github.com/PennyLaneAI/[email protected]-rc0 | ||
python -m pip install git+https://github.com/PennyLaneAI/[email protected] | ||
if ${{ matrix.pl_backend == 'lightning_kokkos'}}; then SKIP_COMPILATION=True PL_BACKEND="lightning_qubit" pip install -e . -vv; fi | ||
|
||
CIBW_TEST_COMMAND: | | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -153,7 +153,7 @@ jobs: | |
CIBW_TEST_REQUIRES: pytest pytest-cov pytest-mock flaky | ||
|
||
CIBW_BEFORE_TEST: | | ||
python -m pip install git+https://github.com/PennyLaneAI/[email protected]-rc0 | ||
python -m pip install git+https://github.com/PennyLaneAI/[email protected] | ||
if ${{ matrix.pl_backend == 'lightning_kokkos'}}; then SKIP_COMPILATION=True PL_BACKEND="lightning_qubit" pip install -e . -vv; fi | ||
|
||
CIBW_TEST_COMMAND: | | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,7 +93,7 @@ jobs: | |
CIBW_TEST_REQUIRES: pytest pytest-cov pytest-mock flaky | ||
|
||
CIBW_BEFORE_TEST: | | ||
python -m pip install git+https://github.com/PennyLaneAI/[email protected]-rc0 | ||
python -m pip install git+https://github.com/PennyLaneAI/[email protected] | ||
if ${{ matrix.pl_backend == 'lightning_kokkos'}}; then SKIP_COMPILATION=True PL_BACKEND="lightning_qubit" pip install -e . -vv; fi | ||
|
||
CIBW_TEST_COMMAND: | | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,7 +141,7 @@ jobs: | |
CIBW_TEST_REQUIRES: pytest pytest-cov pytest-mock flaky | ||
|
||
CIBW_BEFORE_TEST: | | ||
python -m pip install git+https://github.com/PennyLaneAI/[email protected]-rc0 | ||
python -m pip install git+https://github.com/PennyLaneAI/[email protected] | ||
if ${{ matrix.pl_backend == 'lightning_kokkos'}}; then SKIP_COMPILATION=True PL_BACKEND="lightning_qubit" pip install -e . -vv; fi | ||
|
||
CIBW_TEST_COMMAND: | | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,7 +130,7 @@ jobs: | |
CIBW_TEST_REQUIRES: pytest pytest-cov pytest-mock flaky | ||
|
||
CIBW_BEFORE_TEST: | | ||
python -m pip install git+https://github.com/PennyLaneAI/[email protected]-rc0 | ||
python -m pip install git+https://github.com/PennyLaneAI/[email protected] | ||
|
||
CIBW_TEST_COMMAND: | | ||
pl-device-test --device=lightning.qubit --skip-ops -x --tb=short --no-flaky-report | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,4 @@ | |
Version number (major.minor.patch[-label]) | ||
""" | ||
|
||
__version__ = "0.33.0" | ||
__version__ = "0.33.1-rc0" |
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
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
Oops, something went wrong.
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.
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.
Don't forget to add author to the contributor.
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.
Good call, thanks. I'll update, skip CI, and merge onto the RC branch