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

Change PPC wheel builder image to have C++17 compatible compiler #120

Merged
merged 4 commits into from
Jul 29, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
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
29 changes: 20 additions & 9 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,45 @@

### New features

* C++ layer now supports float (32-bit) and double (64-bit) templated complex data ([#113](https://github.com/PennyLaneAI/pennylane-lightning/pull/113))
* C++ layer now supports float (32-bit) and double (64-bit) templated complex data
[#113](https://github.com/PennyLaneAI/pennylane-lightning/pull/113)

### Improvements

* Static versions of jQuery and Bootstrap are no longer included in the CSS theme. [(118)](https://github.com/PennyLaneAI/pennylane-lightning/pull/118)
* Static versions of jQuery and Bootstrap are no longer included in the CSS theme.
[(118)](https://github.com/PennyLaneAI/pennylane-lightning/pull/118)

* C++ tests have been ported to use Catch2 framework. ([#115](https://github.com/PennyLaneAI/pennylane-lightning/pull/115))
* C++ tests have been ported to use Catch2 framework.
[#115](https://github.com/PennyLaneAI/pennylane-lightning/pull/115)

* Testing now exists for both float and double precision methods in C++ layer. ([#113](https://github.com/PennyLaneAI/pennylane-lightning/pull/113),[#115](https://github.com/PennyLaneAI/pennylane-lightning/pull/115))
* Testing now exists for both float and double precision methods in C++ layer.
[#113](https://github.com/PennyLaneAI/pennylane-lightning/pull/113)
[#115](https://github.com/PennyLaneAI/pennylane-lightning/pull/115)

* Compile-time utility methods with `constexpr` have been added. ([#113](https://github.com/PennyLaneAI/pennylane-lightning/pull/113))
* Compile-time utility methods with `constexpr` have been added.
[#113](https://github.com/PennyLaneAI/pennylane-lightning/pull/113)

* Wheel-build support for ARM64 (Linux and MacOS) and PowerPC (Linux) added. ([#110](https://github.com/PennyLaneAI/pennylane-lightning/pull/110))
* Wheel-build support for ARM64 (Linux and MacOS) and PowerPC (Linux) added.
[#110](https://github.com/PennyLaneAI/pennylane-lightning/pull/110)

* Add support for Controlled Phase Gate (CPhaseShift).
[(#112)](https://github.com/PennyLaneAI/pennylane-lightning/issues/112)

* Move changelog to `.github` and add a changelog reminder.


### Breaking changes

* Compilers with C++17 support are now required to build C++ module. ([#113](https://github.com/PennyLaneAI/pennylane-lightning/pull/113))
* Compilers with C++17 support are now required to build C++ module.
[#113](https://github.com/PennyLaneAI/pennylane-lightning/pull/113)

* Gate classes have been removed with functionality added to StateVector class. ([#113](https://github.com/PennyLaneAI/pennylane-lightning/pull/113))
* Gate classes have been removed with functionality added to StateVector class.
[#113](https://github.com/PennyLaneAI/pennylane-lightning/pull/113)

### Bug fixes

* PowerPC wheel-builder now successfully compiles modules.
[#120](https://github.com/PennyLaneAI/pennylane-lightning/pull/120)

### Contributors

This release contains contributions from (in alphabetical order):
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheel_linux_ppc64le.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ env:
# Skip PPC tests due to lack of numpy/scipy wheel support
CIBW_TEST_SKIP: "*-manylinux_{ppc64le}"

# Use Debian image for PPC
CIBW_MANYLINUX_PPC64LE_IMAGE: manylinux_2_24
# Use CentOS 7 image for PPC
CIBW_MANYLINUX_PPC64LE_IMAGE: manylinux2014

jobs:
linux-wheels-ppc64le:
Expand Down