Hi
I build the last version of the yocto kernel imx-6.12.34-2.1.0
when i launch
python3 label_image.py -e /usr/lib/libneutron_delegate.so
i get
Loading external delegate from /usr/lib/libneutron_delegate.so with args: {}
/usr/lib/python3.13/site-packages/tflite_runtime/interpreter.py:457: UserWarning: Warning: tf.lite.Interpreter is deprecated and is scheduled for deletion in
TF 2.20. Please use the LiteRT interpreter from the ai_edge_litert package.
See the [migration guide](https://ai.google.dev/edge/litert/migration)
for details.
warnings.warn(_INTERPRETER_DELETION_WARNING)
INFO: NeutronDelegate delegate: 0 nodes delegated out of 31 nodes with 0 partitions.
INFO: Created TensorFlow Lite XNNPACK delegate for CPU.
Warm-up time: 94.5 ms
Inference time: 60.2 ms
0.878431: military uniform
0.027451: Windsor tie
0.011765: mortarboard
0.011765: bulletproof vest
0.007843: sax
i modify the python code to correct the warning
python3 label_image2.py -e /usr/lib/libneutron_delegate.so
i get
Loading external delegate from /usr/lib/libneutron_delegate.so with args: {}
INFO: NeutronDelegate delegate: 0 nodes delegated out of 31 nodes with 0 partitions.
INFO: Created TensorFlow Lite XNNPACK delegate for CPU.
Warm-up time: 58.0 ms
Inference time: 55.5 ms
0.878431: military uniform
0.027451: Windsor tie
0.011765: mortarboard
0.011765: bulletproof vest
0.007843: sax
i always get
INFO: Created TensorFlow Lite XNNPACK delegate for CPU.
i must precise that on IMX95
cat /sys/class/remoteproc/remoteproc0/state
return : offline
The same command on the IMX93 board return : running
On IMX95
dmesg | grep remoteproc
return
remoteproc remoteproc0: imx-rproc is available
On IMX93
dmesg | grep remoteproc
return
remoteproc remoteproc0: imx-rproc is available
remoteproc remoteproc0: powering up imx-rproc
remoteproc remoteproc0: Booting fw image ethosu_firmware, size 244744
remoteproc remoteproc0: remote processor imx-rproc is now up
i think that the NPU is not activated
Greetings
Olivier