-
Notifications
You must be signed in to change notification settings - Fork 0
SIMD
Quentin Delhaye edited this page Mar 26, 2021
·
20 revisions
- Deactivate any optimisation flag, such as
-O3
,-O2
and so on. - Check the OS architecture. Are you both working on 64 or 32 bits?
- Protect your asm code with
volatile
like this:
__asm__ __volatile__(
/* Your code here */
);
Check that you read/write in binary by specifying rb
and wb
in fread
and fwrite
.