Hi All,
I have a Nexus 7, and wanted to start getting into the SIMD programming. I know that the Nexus 7 has a Tegra 3 chipset inside it, and according to WIkipedia, Tegra 3 supports the NEON instruction set?
I have the following line of code in my program, and it always prints out... suggesting that my Nexus 7 tablet doesn't support NEON?
features = android_getCpuFeatures();
if ((features & ANDROID_CPU_ARM_FEATURE_NEON) == 0) {
__android_log_print(ANDROID_LOG_DEBUG, "VMUL", "cpu doesnt support neon! -- ???");
}
I'm confused? Was there an older version of the nexus 7's that didn't support NEON or something?
Thanks in advance