liam_sun
liam_sun
@MrSherish Yes, I wrote test.cpp with ArmNN's C++ API and got inaccurate results. How do I understand 'standalone' you mentioned? Also, a naive question, what does AFAIK represent? I am...
Hi @james-conroy-arm , My understanding is that, no matter tflite parser or delegate, both ways are supposed to have similar inference results. According to your comment, for tflite parser use...
Hi @MrSherish, Yes, I got it. ^_^
Hi James, Thanks. I believe I've learned a lot. Before this issue is resolved, I will keep trying tflite delegate in C++. As https://github.com/ARM-software/armnn/issues/659 I posted, I'm being tortured by...
Hi @james-conroy-arm,@catcor01 , I have conducted some tests these days against several models. In particular, with a few local modifications, I generated the sample code for pose estimation. My tests...
Hi James, Big thanks for your so quick reply. In fact, I am referring to: https://github.com/ARM-software/armnn to study armnn. And I git checkout branches 22.05 which is a fairly new...
Hi James, Thanks for your so kindly help. I think it's clear enough. I will do some tests and let you know in case of any questions. B.R Liam
Hi James, I followed https://github.com/ARM-software/armnn/blob/branches/armnn_22_05/BuildGuideAndroidNDK.md to build armnn libraries and succeeded in generating some .so files such as libarmnnSerializer.so and libarmnn.so etc. Furtherly, I tried to build tflite delegate and...
The command line I used to configure armnn is shown as follows: CXX=armv7a-linux-androideabi30-clang++ CC=armv7a-linux-androideabi30-clang CXX_FLAGS="-fPIE -fPIC -I/home2/liam/armnn-devenv/armnn/src/armnn" cmake .. -DCMAKE_ANDROID_NDK=$NDK -DCMAKE_SYSTEM_NAME=Android -DCMAKE_SYSTEM_VERSION=30 -DCMAKE_ANDROID_ARCH_ABI=armeabi-v7a -DCMAKE_EXE_LINKER_FLAGS="-pie -llog -lz" -DARMCOMPUTE_ROOT=/home2/liam/armnn-devenv/ComputeLibrary/ -DARMCOMPUTE_BUILD_DIR=/home2/liam/armnn-devenv/ComputeLibrary/build -DARMCOMPUTENEON=1 -DARMCOMPUTECL=1...
Hi James, Following is my development enviornment: Target platform: Arm cortex A55, android R with api version being 30 Host: Distributor ID: Ubuntu Description: Ubuntu 18.04.6 LTS Release: 18.04 Codename:...