-
Notifications
You must be signed in to change notification settings - Fork 0
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
Arm version of CPUID #26
Comments
The way ARM's CPUID works is completely different. What all this means is the CPUID section will need to be reworked significantly. For now, let's just get max building on ARM. |
This commit fixes the ARM compiles. There is still work to be done to get parity to x86: - The Vector unit tests fail because of the call to sqrt(). - The CPUID code needs to be reworked. But this is progress in the right direction. :) Partially fixes #26
This commit fixes the ARM compiles. There is still work to be done to get parity to x86: - The Vector unit tests fail because of the call to sqrt(). - The CPUID code needs to be reworked. But this is progress in the right direction. :) Partially fixes #26
I didn't mean to close this. |
The CPUID code works for x86 using inline assembly and VC intrinsics.
But there is no CPUID code for ARM.
Add one.
The text was updated successfully, but these errors were encountered: