-
Notifications
You must be signed in to change notification settings - Fork 20
use qemu on github CI for ppc64le, s390x #230
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -181,11 +181,14 @@ EOF | |||
| export DYLD_LIBRARY_PATH=/usr/local/lib:$DYLD_LIBRARY_PATH | ||||
| ;; | ||||
| *-s390x) | ||||
| # The TargetList.txt has only ZARCH_GENERIC, Z13, Z14. Not worth | ||||
| # messing with dynamic lists and targets. | ||||
| local bitness=64 | ||||
| ;; | ||||
| *-ppc64le) | ||||
| local bitness=64 | ||||
| local target="POWER8" | ||||
| local dynamic_list="POWER8 POWER10" | ||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
ppc64le does not support dynamic list
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The README seems to imply that DYNAMIC_LIST is supported
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. DYNAMIC_ARCH is supported with this list (depending on compiler), but user provided DYNAMIC_LIST is not supported (either on purpose or an oversight) in https://github.com/OpenMathLib/OpenBLAS/blob/develop/Makefile.system
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Strange. Is there an open OpenBLAS issue about the missing |
||||
| ;; | ||||
| Linux-loongarch64) | ||||
| local target="GENERIC" | ||||
|
|
||||
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.
see https://github.com/OpenMathLib/OpenBLAS/blob/f6df9bebbb4259aa61ab5634c0f1269fb152cc0e/README.md?plain=1#L271-L273