-
Notifications
You must be signed in to change notification settings - Fork 646
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
Illegal Instruction in amd64 .sif
on macOS/aarch64 rosetta
#3195
Comments
Without having the app or preferably a small reproducer, it is hard to known why it is crashing in emulation. For instance, it was discovered that AVX-512 returns SIGILL when running on macOS - see #3022 (comment) But most apps should not try to run that (v4) without explicitly being asked to? https://www.phoronix.com/news/Linus-Torvalds-On-AVX-512 Even the AVX (v3) doesn't seem to make much of a difference, performance-wise... https://www.phoronix.com/news/RedHat-RHEL10-x86-64-v3-Explore
|
Running a simple program using avx is enough to reproduce... afb@lima-apptainer:~$ sudo apt install -y g++-x86-64-linux-gnu
afb@lima-apptainer:~$ x86_64-linux-gnu-g++ -O3 -march=x86-64-v4 -static test.cpp
afb@lima-apptainer:~$ ./a.out
Illegal instruction (core dumped) While your problem might be different, it is the suspected reason. It behaves the same way, when running on older real hardware. Real code is supposed to be able to target the current architecture at runtime, but the emulation complicates things. |
Example CPU capabilities (
|
Apparently macOS 15 adds support for AVX2 (v3) but not for AVX512 (v4) https://en.wikipedia.org/wiki/Rosetta_(software) - "macOS Sequoia" Here are some code examples that uses AVX or AVX2, for testing with: |
As a workaround for the older Rosetta, you can disable it and use qemu instead:
That will give you more CPU features, but AVX-512 is not yet supported by QEMU:
i.e. the AVX/AVX2 programs will now run, but the AVX-512 will continue to crash:
|
I managed to dig a bit deeper, and the error occurs during a python import:
I found the underlying .so file, but The avx2-examples you mentioned above don't work with either the |
I noticed in |
I don't think this means that Rosetta supports it. The MachO file format supports "universal binaries" that can contain multiple versions of the same program, compiled for different architectures. The |
This seems related to https://sdk.cerebras.net/installation-guide#apple-silicon-mac-installation, maybe ask the vendor? "Running the Cerebras SDK on an Apple Silicon Mac or other ARM machine requires x86 emulation. It might be as simple as adding The VZ/Rosetta support is new, so maybe it didn't exist when created. |
It might seem related to https://bugs.launchpad.net/lxml/+bug/2059910 I'm interested in getting vz to work for performance reasons. It all works fine with qemu as mentioned above, but is, well, sluggish. |
But fixing vz is something for Apple, no? Like the additions in macOS 15 |
Ultimately, yes. It didn't work out of the box with qemu, but there was a workaround. I suppose my question was if a similar workaround might exist for vz, in case there is anything that can be configured in lima, but I understand this might be an upstream issue instead. Thanks for taking the time btw! |
Description
I encountered
Illegal instruction (core dumped)
when running apps from an sdk that's provided in a.sif
file. The sif is built for amd64, and my system is a aarch64 (M2) machine with macOS 15.3. This is what I'm running:Using these commands, I can set up my lima vm with apptainer, get shell access to the sif, and can browse around to view files. However, running any of the sdk apps (python apps) will error as shown above. I'm trying to use rosetta/vz for performance reasons.
I get the same error when running with qemu in system-mode, where I can also get shell access to the sif and browse around, but running bigger apps will crash in the exact same way as shown above (replace the first line with
limactl start template://apptainer --vm-type=qemu --arch=x86_64 --mount-writable --name apptainer
).However, the error disappears when adding
--set '.cpuType.x86_64="max"'
.Please could you advise if there is a similar work-around for rosetta/vz?
The text was updated successfully, but these errors were encountered: