-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix RPATH in pybind11 module for 0.33 (#543)
* Ensure RPATH isn't stripped away from python module for L-GPU * Move RPATH settings to pybind11 module level definition * Update changelog * Enable CI for RC PR * Lower PL version to 0.33 from master in req * Remove CUQUANTUM_SDK env var to validate RPATH in LGPU builds * Migrate PL 0.33.0-rc to 0.33 in tests * Revert wheel cache for validation
- Loading branch information
Showing
11 changed files
with
34 additions
and
17 deletions.
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