1,885
edits
Changes
→Multiple Approaches
# vol4.c uses Single Instruction, Multiple Data (SIMD) instructions accessed through inline assembley (assembly language code inserted into a C program). This program is specific to the AArch64 architecture and will not build for x86_64.
# vol5.c uses SIMD instructions accessed through Complier Intrinsics. This program is also specific to AArch64.
'''Note that vol4.c and vol5.c will build only on AArch64 systems because they use architecture-specific SIMD instructions.'''
=== Don't Compare Across Machines ===