Hi @wuhuangcangg,
I'm not sure about upgrading "libneuralnetworks.so". The problem is related to the operation and Android SDK. For this BSP version, the NNAPI implementation is based on an Android SDK version that doesn't support this operation.
I can suggest using the VX Delegate instead of NNAPI, which could offer better performance and operation. The VX Delegate uses the OpenVX driver via TIM-VX, resulting in better functionality. You can use the VX Delegate by entering the following command line: "--external_delegate_path=/usr/lib/libvx_delegate.so".
Here is an example of running a model in NPU using the VX Delegate:
$ USE_GPU_INFERENCE=0 ./label_image -m mobilenet_v1_1.0_224_quant.tflite -i grace_hopper.bmp -l labels.txt --external_delegate_path=/usr/lib/libvx_delegate.so.
Please try this option and let me know if it works.
Have a great day!