You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In linux system,I try to use Android.mk in Android compiler system to compile an executable file including SVE intrinsics, which is supported in armv8.2, and the system config as follows:
TARGET_ARCH=arm64;
TARGET_ARCH_VARIANT=armv8-2a;
TARGET_CPU_VARIANT=cortex-a76
TARGET_2ND_ARCH=arm;
TARGET_2ND_ARCH_VARIANT=armv8-2a
TARGET_2ND_CPU_VARIANT=cortex-a55
HOST_ARCH=x86_64
HOST_2ND_ARCH=x86
HOST_OS=linux
And here are the steps I build: source build/envsetup.sh lunch, I choose a platform described as above; mm, build the modules in the SVE instrinsics directory,and the Android.mk is in the same deirctory;
In linux system,I try to use Android.mk in Android compiler system to compile an executable file including SVE intrinsics, which is supported in armv8.2, and the system config as follows:
And here are the steps I build:
source build/envsetup.sh
lunch,
I choose a platform described as above;mm
, build the modules in the SVE instrinsics directory,and the Android.mk is in the same deirctory;And the Android.mk is
But some errors I met, it shows thaterror in backend:don't know how to legalize this scalable vector size.
How to solve this problem?
The text was updated successfully, but these errors were encountered: