-
Notifications
You must be signed in to change notification settings - Fork 39
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 OpenMP library issues on M1 Macs #166
Conversation
Codecov Report
@@ Coverage Diff @@
## v0.19.0-rc0 #166 +/- ##
===============================================
Coverage ? 100.00%
===============================================
Files ? 4
Lines ? 182
Branches ? 0
===============================================
Hits ? 182
Misses ? 0
Partials ? 0 Continue to review full report at Codecov.
|
darwin_opts = ["-stdlib=libc++"] | ||
|
||
# Used to enable OpenMP only on Intel | ||
# Macs due to CI available of M1 |
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.
# Macs due to CI available of M1 | |
# Macs due to lacking CI availability of M1 hardware. |
* Version Bump `0.19.0` (#163) * Added auto version bump functionality to pl lightning (#159) * Added auto version bump functionality to pl lightning * Update .github/workflows/pre_release_version_bump.yml removed trailing white space * Update .github/workflows/post_release_version_bump.yml Co-authored-by: Jay Soni <jbsoni@uwaterloo.ca> * Update .github/workflows/pre_release_version_bump.yml Co-authored-by: Jay Soni <jbsoni@uwaterloo.ca> * removed flag for pennylane release as it is not required Co-authored-by: antalszava <antalszava@gmail.com> * Update pre_release_version_bump.yml (#160) * Update pre_release_version_bump.yml * Update pre_release_version_bump.yml * Update pre_release_version_bump.yml * Update .github/workflows/pre_release_version_bump.yml * Apply suggestions from code review * Update post_release_version_bump.yml swap main --> master * Update CHANGELOG.md To be consistent with other plugins and not cause errors for the auto version bumping * pre release version bump * updates * Update pennylane_lightning/_version.py * formatting updates to changelog Co-authored-by: Jay Soni <jbsoni@uwaterloo.ca> Co-authored-by: antalszava <antalszava@gmail.com> Co-authored-by: antalszava <antalszava@users.noreply.github.com> * Fix OpenMP library issues on M1 Macs (#166) * Fix OMP issue on M1 macs * Update changelog * Fix CI builder release issues (#168) * Fix OMP issue on M1 macs * Update changelog * Fix CI builder * Trigger CI on release creation * CI wheelbuilder updates (#169) * Fix OMP with ARM MacOS * Ensure wheels uploaded to GH * Separate out noarch wheels * Update .github/CHANGELOG.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jay Soni <jbsoni@uwaterloo.ca> Co-authored-by: antalszava <antalszava@gmail.com> Co-authored-by: antalszava <antalszava@users.noreply.github.com>
Context: This PR disables OpenMP for lightning on M1 Macs due the lack of M1 support on Github Actions.
Description of the Change: OpenMP is disabled for wheels built targeting M1 Macs.
Benefits: No issues with missing symbols.
Possible Drawbacks: OpenMP support would add performance benefits when fully utilised.
Related GitHub Issues: #151