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

Add test coverage for LKokkos #485

Merged
merged 37 commits into from
Sep 6, 2023
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
4add853
[skip ci] Fix pylint.
vincentmr Aug 23, 2023
1406999
[skip ci] Update changelog.
vincentmr Aug 23, 2023
b11fb1c
Add tests for Identity and Hadamard expvals.
vincentmr Aug 25, 2023
7cdd80f
Auto update version
github-actions[bot] Aug 25, 2023
7b3417b
Add applyCY test and parametrize few tests over 'inverse'.
vincentmr Aug 25, 2023
923b368
Parametrize applyGeneratorMultiRZ test over inverse.
vincentmr Aug 25, 2023
7fc25ef
Add inverse coverage for Hadamard, T, PhaseShift, and 2-qubit expval.
vincentmr Aug 25, 2023
d1d3057
Add inverse parametrization on SingleExcitation* and ControlledPhaseS…
vincentmr Aug 25, 2023
29f93e4
Param applyMultiQubitOp test over inverse.
vincentmr Aug 25, 2023
3526f2e
Add some coverage to lightning_kokkos.py. In particular, parametrize …
vincentmr Aug 25, 2023
eede366
Bump pennylane version.
vincentmr Aug 29, 2023
633cb50
Merge remote-tracking branch 'origin/master' into testing/codecov
vincentmr Aug 29, 2023
2ea2d30
Auto update version
github-actions[bot] Aug 29, 2023
6d95132
Version Bump (#488)
vincentmr Aug 29, 2023
a814855
Update changelog.
vincentmr Aug 29, 2023
d9645f1
Merge branch 'master' into testing/codecov
vincentmr Aug 29, 2023
5dfc03e
Auto update version
github-actions[bot] Aug 29, 2023
7a39b9e
trigger CI
vincentmr Aug 29, 2023
ef2e381
Fix nobin test.
vincentmr Aug 29, 2023
a328b9e
Merge remote-tracking branch 'origin/feature/pre-commit-hook' into te…
vincentmr Aug 29, 2023
6898a17
Fix CodeFactor warnings.
vincentmr Aug 29, 2023
c43d58f
Increment Pennylane::Gates BEGIN. Fix magic zeros in LQubit code. Add…
vincentmr Aug 30, 2023
1c544d4
Auto update version
github-actions[bot] Aug 30, 2023
713510c
Merge branch 'master' into testing/codecov
vincentmr Aug 30, 2023
45c9a8c
Revert tests_without_binary
vincentmr Aug 30, 2023
0c9401e
Fix adjoint tests when no-binary + lkokkos.
vincentmr Aug 30, 2023
b3c2cc4
Update tests/test_adjoint_jacobian.py
vincentmr Aug 31, 2023
f8ef8a1
Update CHANGELOG.md
vincentmr Aug 31, 2023
12371c6
Add test for throw non-existent expval op.
vincentmr Aug 31, 2023
de43bf0
Update CHANGELOG.md
vincentmr Aug 31, 2023
17f8c41
Update ExpValFunctors.hpp
vincentmr Aug 31, 2023
dbaabf7
Increase doubleexcitation coverage.
vincentmr Aug 31, 2023
97b395d
Increase doubleexcitation generator coverage.
vincentmr Aug 31, 2023
c2e931b
Add applyOperation+matrix coverage.
vincentmr Aug 31, 2023
dc7c9e7
Merge branch 'master' into testing/codecov
vincentmr Sep 6, 2023
c210d56
Auto update version
github-actions[bot] Sep 6, 2023
3d0d6ce
trigger CI
vincentmr Sep 6, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert tests_without_binary
  • Loading branch information
vincentmr committed Aug 30, 2023
commit 45c9a8c95482dcff49510ed5afe38f7cba7b5f31
8 changes: 7 additions & 1 deletion .github/workflows/tests_without_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-22.04]
pl_backend: ["lightning_qubit"]
pl_backend: ["lightning_qubit", "lightning_kokkos"]

steps:
- name: Checkout PennyLane-Lightning
Expand All @@ -45,6 +45,12 @@ jobs:
cd main
python -m pip install -e . -vv

- name: Install the new pennylane_lightning package
if: ${{ matrix.pl_backend == 'lightning_kokkos'}}
run: |
cd main
SKIP_COMPILATION=True PL_BACKEND="lightning_qubit" pip install -e . -vv

- name: Run PennyLane-Lightning unit tests
run: |
cd main/
Expand Down