<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>MCX MicrocontrollersのトピックRe: example application from sdk i.e. ethosu_apps is not running as expected</title>
    <link>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2023826#M2312</link>
    <description>&lt;P&gt;Its pleasing to see quick responses.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;In your step #3 I'm afraid , you need to pass &lt;STRONG&gt;external_delegate&lt;/STRONG&gt; argument to &lt;STRONG&gt;label_image&lt;/STRONG&gt;&lt;BR /&gt;for the inference to run on ETHOSU, else the inference runs on A55, that is why the inference results are in A55 lines.&lt;BR /&gt;(Please forgive me for confusing you with label_image_release vs label_image, it is actually label_image )&lt;BR /&gt;If you provide external delegate argument to label_image, logs on M33 console would be seen, ref to &lt;A href="https://www.nxp.com/docs/en/user-guide/IMX-MACHINE-LEARNING-UG.pdf?_gl=1*a5ejk6*_ga*MTY0MjQxOTczMi4xNjgyNTI1ODYw*_ga_WM5LE0KMSH*MTczNjE1NzQ5Ny42OC4xLjE3MzYxNTc3ODcuMC4wLjA." target="_self"&gt;section-2.7.2&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;(you might have to provide vela model if the command doesnt work -- for me it works only with vela model)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;gt; cd /usr/bin/tensorflow-lite-2.16.2/examples
&amp;gt; vela mobilenet_v1_1.0_224_quant.tflite
&amp;gt; ./label_image -m output/mobilenet_v1_1.0_224_quant_vela.tflite -i grace_hopper.bmp -l labels.txt --external_delegate_path=/usr/lib/libethosu_delegate.so&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above procedure works okay(below) for me with default/original ethosu_firmware,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;/usr/bin/tensorflow-lite-2.16.2/examples# ./label_image -m output/mobilenet_v1_1.0_224_quant_vela.tflite -i grace_hopper.bmp -l labels.txt  -external_delegate_path=/usr/lib/libethosu_delegate.so
INFO: Loaded model output/mobilenet_v1_1.0_224_quant_vela.tflite
INFO: resolved reporter
INFO: before CreateAllDelegates 
INFO: Ethosu delegate: device_name set to /dev/ethosu0.
INFO: Ethosu delegate: cache_file_path set to .
INFO: Ethosu delegate: timeout set to 60000000000.
INFO: Ethosu delegate: enable_cycle_counter set to 0.
INFO: Ethosu delegate: enable_profiling set to 0.
INFO: Ethosu delegate: profiling_buffer_size set to 2048.
INFO: Ethosu delegate: pmu_event0 set to 0.
INFO: Ethosu delegate: pmu_event1 set to 0.
INFO: Ethosu delegate: pmu_event2 set to 0.
INFO: Ethosu delegate: pmu_event3 set to 0.
INFO: EXTERNAL delegate created.
INFO: EthosuDelegate: 1 nodes delegated out of 1 nodes with 1 partitions.
INFO: Applied EXTERNAL delegate.
INFO: settings-&amp;gt;number_of_warmup_runs 2
INFO: invoked
INFO: average time: 3.762 ms
INFO: Predicted label = 907&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But If I replace default one with compiled one I see error(below) and can see logs in M33 console, &lt;U&gt;&lt;STRONG&gt;My expectation is that with compiled ethosu_firmware inference should be successful&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;/lib/firmware/# reboot
/lib/firmware/# cp ethosu_apps_rpmsg.elf ethosu_firmware

/usr/bin/tensorflow-lite-2.16.2/examples# ./label_image -m output/mobilenet_v1_1.0_224_quant_vela.tflite -i grace_hopper.bmp -l labels.txt  -external_delegate_path=/usr/lib/libethosu_delegate.so

INFO: Loaded model output/mobilenet_v1_1.0_224_quant_vela.tflite
INFO: resolved reporter
INFO: before CreateAllDelegates 
INFO: Ethosu delegate: device_name set to /dev/ethosu0.
INFO: Ethosu delegate: cache_file_path set to .
INFO: Ethosu delegate: timeout set to 60000000000.
INFO: Ethosu delegate: enable_cycle_counter set to 0.
INFO: Ethosu delegate: enable_profiling set to 0.
INFO: Ethosu delegate: profiling_buffer_size set to 2048.
INFO: Ethosu delegate: pmu_event0 set to 0.
INFO: Ethosu delegate: pmu_event1 set to 0.
INFO: Ethosu delegate: pmu_event2 set to 0.
INFO: Ethosu delegate: pmu_event3 set to 0.
INFO: EXTERNAL delegate created.
INFO: EthosuDelegate: 1 nodes delegated out of 1 nodes with 1 partitions.
INFO: Applied EXTERNAL delegate.
INFO: settings-&amp;gt;number_of_warmup_runs 2
ERROR: Ethos_u inference failed

ERROR: Node number 1 (EthosuDelegate) failed to invoke.
ERROR: Failed to invoke tflite&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*** In both the cases Im seeing expected logs on M33 COM port&lt;BR /&gt;&lt;BR /&gt;2. My observations of running M33 executables from linux i.e. by using "remoteproc0" are exactly same as yours.&lt;BR /&gt;3. Inference runner is different example that runs inference on ethosu. This example seems to work with both firmwares in step#1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;#cd /usr/bin/ethosu/examples
#./inference_runner -d /dev/ethosu0 -n output/mobilenet_v1_1.0_224_quant_vela.tflite -i grace_hopper.bmp -l labels.txt -o output_data_detection -t 1080000000&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Jan 2025 07:53:39 GMT</pubDate>
    <dc:creator>phanichinimilli</dc:creator>
    <dc:date>2025-01-08T07:53:39Z</dc:date>
    <item>
      <title>example application from sdk i.e. ethosu_apps is not running as expected</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2022552#M2298</link>
      <description>&lt;P&gt;I'm trying to following instructions (from &lt;A href="https://www.nxp.com/docs/en/user-guide/IMX-MACHINE-LEARNING-UG.pdf?_gl=1*a5ejk6*_ga*MTY0MjQxOTczMi4xNjgyNTI1ODYw*_ga_WM5LE0KMSH*MTczNjE1NzQ5Ny42OC4xLjE3MzYxNTc3ODcuMC4wLjA." target="_self"&gt;section&amp;nbsp;6.2.7&lt;/A&gt; ) on building Cortex-M33 firmware from the SDK downloaded.&lt;BR /&gt;using GNU arm toolchain 13.x , I'm able to compile the demo application&lt;BR /&gt;ethosu_apps&lt;BR /&gt;But from uboot when I ran it, I'm seeing error logs in COM/serial port of Cortex M33&lt;/P&gt;&lt;P&gt;==================&lt;BR /&gt;Initialize Arm Ethos-U&lt;BR /&gt;E: NPU error(s) occured during inference. (ethosu_driver.c:542)&lt;BR /&gt;E: NPU status=0x00000804, qread=0, cmd_end_reached=0 (ethosu_device_u55_u65.c:182)&lt;BR /&gt;Node ethos-u (number 0) failed to invoke with status 1&lt;BR /&gt;E: Invoke failed for inference: job=job (inference_process.cpp:281)&lt;BR /&gt;Inference status: failed&lt;BR /&gt;==================&lt;BR /&gt;I expected it to work as is, can someone help me here ?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 11:42:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2022552#M2298</guid>
      <dc:creator>phanichinimilli</dc:creator>
      <dc:date>2025-01-06T11:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: example application from sdk i.e. ethosu_apps is not running as expected</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2022709#M2300</link>
      <description>&lt;P&gt;HI &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/244535"&gt;@phanichinimilli&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;Thank you for contacting NXP Support!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried with the iMX93-QSB and I didn't see errors.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Chavira_0-1736185330010.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/318254i67BDC3C0A312E2E4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Chavira_0-1736185330010.png" alt="Chavira_0-1736185330010.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Chavira_1-1736185346898.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/318255i8851FD5290057FE4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Chavira_1-1736185346898.png" alt="Chavira_1-1736185346898.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I compiled the example using MCUXPRESSO for VS CODE the version of the SDK that I am using is 2.16.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards!&lt;/P&gt;
&lt;P&gt;Chavira&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 17:44:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2022709#M2300</guid>
      <dc:creator>Chavira</dc:creator>
      <dc:date>2025-01-06T17:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: example application from sdk i.e. ethosu_apps is not running as expected</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2023205#M2305</link>
      <description>&lt;P&gt;Thanks for the response.&lt;BR /&gt;I'm using sdk of imx93_evk (not imx93_qsb), Im not sure if it makes any difference.&lt;BR /&gt;&lt;EM&gt;&amp;gt;tftp 0x80000000 ethosu_apps.bin&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;gt;cp.b 0x80000000 0x201e0000 0x20000&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;gt;bootaux 0x1ffe0000 0&lt;/EM&gt;&lt;BR /&gt;Do I have set any env variables in uboot ? Please let me know if I'm missing any step.&lt;BR /&gt;P.S:&amp;nbsp;&lt;BR /&gt;The ethosu_apps_rpmsg application from sdk is not behaving, similar to ethosu_firmware&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 10:04:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2023205#M2305</guid>
      <dc:creator>phanichinimilli</dc:creator>
      <dc:date>2025-01-07T10:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: example application from sdk i.e. ethosu_apps is not running as expected</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2023326#M2306</link>
      <description>&lt;P&gt;HI &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/244535"&gt;@phanichinimilli&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was thinking that you have the problem on iMX93-QSB board.&lt;/P&gt;
&lt;P&gt;I tried with the iMX93-EVK and the &lt;STRONG&gt;ethosu_apps_rpmsg &lt;/STRONG&gt;is working as expected but the &lt;STRONG&gt;ethosu_apps&lt;/STRONG&gt; have an issue in iMX93-EVK.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will report this issue to our internal team and I will update this community post as soon as possible with the solution of the apps&amp;nbsp; team.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards!&lt;/P&gt;
&lt;P&gt;Chavira&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 13:37:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2023326#M2306</guid>
      <dc:creator>Chavira</dc:creator>
      <dc:date>2025-01-07T13:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: example application from sdk i.e. ethosu_apps is not running as expected</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2023373#M2307</link>
      <description>&lt;P&gt;Chavira, Thanks for confirmation. on &lt;STRONG&gt;ethosu_apps&lt;/STRONG&gt;&lt;BR /&gt;A small clarification is needed on &lt;STRONG&gt;ethosu_apps_rpmsg,&amp;nbsp;&lt;/STRONG&gt;can you please confirm at your side?&lt;BR /&gt;What I have done ?&lt;BR /&gt;1. using 2.16 sdk build ethosu_apps_rpmsg application&lt;BR /&gt;2. boot linux, replace ethosu_firmware with elf of #1&lt;BR /&gt;3. run default inference test on ethosu from linux&lt;/P&gt;&lt;P&gt;./label_image_release -m output/mobilenet_v1_1.0_224_quant_vela.tflite -i grace_hopper.bmp -l lab&lt;BR /&gt;INFO: Loaded model output/mobilenet_v1_1.0_224_quant_vela.tflite&lt;BR /&gt;INFO: resolved reporter&lt;BR /&gt;INFO: before CreateAllDelegates&lt;BR /&gt;INFO: Ethosu delegate: device_name set to /dev/ethosu0.&lt;BR /&gt;INFO: Ethosu delegate: cache_file_path set to .&lt;BR /&gt;INFO: Ethosu delegate: timeout set to 60000000000.&lt;BR /&gt;INFO: Ethosu delegate: enable_cycle_counter set to 0.&lt;BR /&gt;INFO: Ethosu delegate: enable_profiling set to 0.&lt;BR /&gt;INFO: Ethosu delegate: profiling_buffer_size set to 2048.&lt;BR /&gt;INFO: Ethosu delegate: pmu_event0 set to 0.&lt;BR /&gt;INFO: Ethosu delegate: pmu_event1 set to 0.&lt;BR /&gt;INFO: Ethosu delegate: pmu_event2 set to 0.&lt;BR /&gt;INFO: Ethosu delegate: pmu_event3 set to 0.&lt;BR /&gt;INFO: EXTERNAL delegate created.&lt;BR /&gt;INFO: EthosuDelegate: 1 nodes delegated out of 1 nodes with 1 partitions.&lt;BR /&gt;INFO: Applied EXTERNAL delegate.&lt;BR /&gt;INFO: settings-&amp;gt;number_of_warmup_runs 2&lt;BR /&gt;&lt;STRONG&gt;ERROR: Ethos_u inference failed&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR: Node number 1 (EthosuDelegate) failed to invoke.&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;ERROR: Failed to invoke tflite!&lt;/STRONG&gt;&lt;BR /&gt;4. observe logs in M33 com-port&lt;BR /&gt;&lt;STRONG&gt;I can see logs are same , when compared to default ethosu_firmware executable&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;P.S:&lt;BR /&gt;while inference_runner command works fine with my ethosu_firmware&lt;BR /&gt;./inference_runner -d /dev/ethosu0 -n output/mobilenet_v1_1.0_224_quant_vela.tflite -i grace_hopper.bmp -l labels.txt -o output_data_detection -t 1080000000&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 15:11:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2023373#M2307</guid>
      <dc:creator>phanichinimilli</dc:creator>
      <dc:date>2025-01-07T15:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: example application from sdk i.e. ethosu_apps is not running as expected</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2023536#M2309</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/244535"&gt;@phanichinimilli&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;I got the next response from the apps team:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can reproduce identical &lt;EM&gt;ethosu_apps_rpmsg.bin&lt;/EM&gt; startup success from U-Boot (I assume because the rpmsg app doesn't attempt any inferences) and the same &lt;EM&gt;ethosu_apps.bin&lt;/EM&gt; failure on SDK 2.16.000, gcc-arm-eabi-none-10-2020-q4-major (as noted in UG10166) and BSP LF6.6.52-2.2.0. I launched it from U-Boot as follows (the &lt;CODE style="background-color: #fec; color: #3e3e3e; white-space: pre;"&gt;bootaux 0x201e0000 0&lt;/CODE&gt; address in UG10166 is suspect):&lt;/P&gt;
&lt;DIV style="background-color: #ffe; border: thin solid #555; color: #3e3e3e; font-size: 14px; line-height: 140%; margin: 0.5em 0; overflow-x: auto; padding: 0.5em;"&gt;
&lt;PRE style="background-color: transparent; border: none; font-size: inherit; line-height: 140%; margin: 0.5em 0; padding: 0;"&gt;&lt;CODE style="background-color: transparent; color: #3e3e3e; white-space: pre;"&gt;&lt;SPAN&gt;u-boot&lt;/SPAN&gt;=&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt; fatload mmc 1:1 &lt;SPAN&gt;${loadaddr}&lt;/SPAN&gt; ethosu_apps.bin
&lt;SPAN&gt;49800&lt;/SPAN&gt; bytes read in 3 ms (15.8 MiB/s)
&lt;SPAN&gt;u-boot&lt;/SPAN&gt;=&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt; cp.b &lt;SPAN&gt;${loadaddr}&lt;/SPAN&gt; 0x201e0000 &lt;SPAN&gt;${filesize}&lt;/SPAN&gt;
&lt;SPAN&gt;u-boot&lt;/SPAN&gt;=&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt; bootaux 0x1ffe0000 0
&lt;SPAN&gt;## Starting auxiliary core addr = 0x1FFE0000...&lt;/SPAN&gt;
&lt;SPAN&gt;u-boot&lt;/SPAN&gt;=&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt; █&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;Just as you observed on the Cortex-M33 console:&lt;/P&gt;
&lt;DIV style="background-color: #ffe; border: thin solid #555; color: #3e3e3e; font-size: 14px; line-height: 140%; margin: 0.5em 0; overflow-x: auto; padding: 0.5em;"&gt;
&lt;PRE style="background-color: transparent; border: none; font-size: inherit; line-height: 140%; margin: 0.5em 0; padding: 0;"&gt;&lt;CODE style="background-color: transparent; color: #3e3e3e; white-space: pre;"&gt;&lt;SPAN&gt;Initialize&lt;/SPAN&gt; Arm Ethos-U
&lt;SPAN&gt;E&lt;/SPAN&gt;: NPU error(s) &lt;SPAN&gt;occured&lt;/SPAN&gt; during inference. (ethosu_driver.c:542)
&lt;SPAN&gt;E&lt;/SPAN&gt;: NPU status=0x00000804, qread=0, cmd_end_reached=0 (ethosu_device_u55_u65.c:182)
&lt;SPAN&gt;Node&lt;/SPAN&gt; ethos-u (number 0) &lt;SPAN&gt;failed&lt;/SPAN&gt; to invoke with status 1
&lt;SPAN&gt;E&lt;/SPAN&gt;: Invoke failed for inference: job=job (inference_process.cpp:281)
&lt;SPAN&gt;Inference&lt;/SPAN&gt; status: failed&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;However, I find some of the steps in UG10166 a bit confusing. Lack of familiarity isn't helping matters. E.g., there is no middleware/ethos-u-core-software/examples directory. E.g., &lt;CODE style="background-color: #fec; color: #3e3e3e; white-space: pre;"&gt;.out&lt;/CODE&gt; vs. &lt;CODE style="background-color: #fec; color: #3e3e3e; white-space: pre;"&gt;.bin&lt;/CODE&gt;.&lt;/P&gt;
&lt;P&gt;Repeating your steps:&lt;/P&gt;
&lt;BLOCKQUOTE style="background-color: #fafafa; border-left: thick solid #777; color: black; margin: 1em 1em 1em 0; padding: 0 0 0 1em;"&gt;
&lt;OL type="1"&gt;
&lt;LI&gt;using 2.16 sdk build ethosu_apps_rpmsg application&lt;/LI&gt;
&lt;LI&gt;boot linux, replace ethosu_firmware with elf of #1&lt;/LI&gt;
&lt;/OL&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yikes…parameters would make this software less fiddly. Before replacing anything in the imx-image-full YP build it behaved as demonstratred in §2.7. Then I replaced ethosu_firmware as in steps 1-2:&lt;/P&gt;
&lt;DIV style="background-color: #ffe; border: thin solid #555; color: #3e3e3e; font-size: 14px; line-height: 140%; margin: 0.5em 0; overflow-x: auto; padding: 0.5em;"&gt;
&lt;PRE style="background-color: transparent; border: none; font-size: inherit; line-height: 140%; margin: 0.5em 0; padding: 0;"&gt;&lt;CODE style="background-color: transparent; color: #3e3e3e; white-space: pre;"&gt;$ &lt;SPAN&gt;cd&lt;/SPAN&gt; /lib/firmware
$ &lt;SPAN&gt;mv&lt;/SPAN&gt; ethosu_firmware ethosu_firmware.orig
$ &lt;SPAN&gt;ln&lt;/SPAN&gt; -s ethosu_apps_rpmsg.elf ethosu_firmware&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;EM&gt;Note:&lt;/EM&gt; Booting Linux with the rpmsg device tree: &lt;CODE style="background-color: #fec; color: #3e3e3e; white-space: pre;"&gt;setenv fdtfile imx93-11x11-evk-rpmsg.dtb; boot&lt;/CODE&gt;.&lt;/P&gt;
&lt;BLOCKQUOTE style="background-color: #fafafa; border-left: thick solid #777; color: black; margin: 1em 1em 1em 0; padding: 0 0 0 1em;"&gt;
&lt;OL start="3" type="1"&gt;
&lt;LI&gt;run default inference test on ethosu from linux&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;./label_image_release -m output/mobilenet_v1_1.0_224_quant_vela.tflite -i grace_hopper.bmp -l lab&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I was stymied for a bit finding &lt;CODE style="background-color: #fec; color: #3e3e3e; white-space: pre;"&gt;label_image_release&lt;/CODE&gt; in UG10166. (Replacing the obnoxiously long default shell prompt with &lt;CODE style="background-color: #fec; color: #3e3e3e; white-space: pre;"&gt;$␣&lt;/CODE&gt; in my examples for readability.)&lt;/P&gt;
&lt;P&gt;Then returning to run label_image again…success. Just to be certain, I rebooted and &lt;EM&gt;power cycled&lt;/EM&gt; and tried again.&lt;/P&gt;
&lt;DIV style="background-color: #ffe; border: thin solid #555; color: #3e3e3e; font-size: 14px; line-height: 140%; margin: 0.5em 0; overflow-x: auto; padding: 0.5em;"&gt;
&lt;PRE style="background-color: transparent; border: none; font-size: inherit; line-height: 140%; margin: 0.5em 0; padding: 0;"&gt;&lt;CODE style="background-color: transparent; color: #3e3e3e; white-space: pre;"&gt;$ &lt;SPAN&gt;cd&lt;/SPAN&gt; /usr/bin/tensorflow-lite-2.16.2/examples/
$ &lt;SPAN&gt;./label_image&lt;/SPAN&gt; -m mobilenet_v1_1.0_224_quant.tflite -i grace_hopper.bmp -l labels.txt
&lt;SPAN&gt;INFO&lt;/SPAN&gt;: Loaded model mobilenet_v1_1.0_224_quant.tflite
&lt;SPAN&gt;INFO&lt;/SPAN&gt;: resolved reporter
&lt;SPAN&gt;INFO&lt;/SPAN&gt;: Created TensorFlow Lite XNNPACK delegate for CPU.
&lt;SPAN&gt;INFO&lt;/SPAN&gt;: invoked
&lt;SPAN&gt;INFO&lt;/SPAN&gt;: average time: 153.342 ms
&lt;SPAN&gt;INFO&lt;/SPAN&gt;: 0.768627: 653 military uniform
&lt;SPAN&gt;INFO&lt;/SPAN&gt;: 0.105882: 907 Windsor tie
&lt;SPAN&gt;INFO&lt;/SPAN&gt;: 0.0196078: 458 bow tie
&lt;SPAN&gt;INFO&lt;/SPAN&gt;: 0.0117647: 466 bulletproof vest
&lt;SPAN&gt;INFO&lt;/SPAN&gt;: 0.00784314: 835 suit&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;BLOCKQUOTE style="background-color: #fafafa; border-left: thick solid #777; color: black; margin: 1em 1em 1em 0; padding: 0 0 0 1em;"&gt;
&lt;OL start="4" type="1"&gt;
&lt;LI&gt;observe logs in M33 com-port&lt;/LI&gt;
&lt;/OL&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;No output. Was the Linux &lt;EM&gt;label_image&lt;/EM&gt; program supposed to do something with &lt;EM&gt;ethosu_firmware&lt;/EM&gt;? I don't see it or the sysfs paths referenced in a dump of the program's string table. E.g.,&lt;/P&gt;
&lt;DIV style="background-color: #ffe; border: thin solid #555; color: #3e3e3e; font-size: 14px; line-height: 140%; margin: 0.5em 0; overflow-x: auto; padding: 0.5em;"&gt;
&lt;PRE style="background-color: transparent; border: none; font-size: inherit; line-height: 140%; margin: 0.5em 0; padding: 0;"&gt;&lt;CODE style="background-color: transparent; color: #3e3e3e; white-space: pre;"&gt;$ &lt;SPAN&gt;strings&lt;/SPAN&gt; label_image &lt;SPAN&gt;|&lt;/SPAN&gt; &lt;SPAN&gt;grep&lt;/SPAN&gt; remoteproc                     
$ &lt;SPAN&gt;strings&lt;/SPAN&gt; label_image &lt;SPAN&gt;|&lt;/SPAN&gt; &lt;SPAN&gt;grep&lt;/SPAN&gt; ethosu
$ █&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;So I'm not sure what steps 1 &amp;amp; 2 have to do with &lt;EM&gt;label_image&lt;/EM&gt;. The CM33 isn't running. I saw nothing in the CM33 serial console. Remoteproc reports offline. So I tried running my symlinked &lt;EM&gt;ethosu_firmware&lt;/EM&gt; from step 2 above:&lt;/P&gt;
&lt;DIV style="background-color: #ffe; border: thin solid #555; color: #3e3e3e; font-size: 14px; line-height: 140%; margin: 0.5em 0; overflow-x: auto; padding: 0.5em;"&gt;
&lt;PRE style="background-color: transparent; border: none; font-size: inherit; line-height: 140%; margin: 0.5em 0; padding: 0;"&gt;&lt;CODE style="background-color: transparent; color: #3e3e3e; white-space: pre;"&gt;$ &lt;SPAN&gt;cd&lt;/SPAN&gt; /sys/devices/platform/remoteproc-cm33/remoteproc/remoteproc0
$ &lt;SPAN&gt;cat&lt;/SPAN&gt; state
&lt;SPAN&gt;offline&lt;/SPAN&gt;
$ &lt;SPAN&gt;cat&lt;/SPAN&gt; firmware
&lt;SPAN&gt;rproc-imx-rproc-fw&lt;/SPAN&gt;
$ &lt;SPAN&gt;echo&lt;/SPAN&gt; /lib/firmware/ethosu_firmware &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt; firmware
$ &lt;SPAN&gt;cat&lt;/SPAN&gt; firmware
&lt;SPAN&gt;/lib/firmware/ethosu_firmware&lt;/SPAN&gt;
$ &lt;SPAN&gt;echo&lt;/SPAN&gt; start &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt; state&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;I observed the expected &lt;CODE style="background-color: #fec; color: #3e3e3e; white-space: pre;"&gt;Initialize Arm Ethos-U&lt;/CODE&gt; on the CM33 serial console. Re-running step 3 gave the same results as above with nothing more printer on the CM33 serial console — it's not interacting with &lt;EM&gt;ethosu_firmware&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;Where am I out of sync with you? I've tried to be &lt;EM&gt;copy-paste&lt;/EM&gt; exact in my procedure.&lt;/P&gt;
&lt;BLOCKQUOTE style="background-color: #fafafa; border-left: thick solid #777; color: black; margin: 1em 1em 1em 0; padding: 0 0 0 1em;"&gt;
&lt;P&gt;P.S: while inference_runner command works fine with my ethosu_firmware ./inference_runner -d /dev/ethosu0 -n output/mobilenet_v1_1.0_224_quant_vela.tflite -i grace_hopper.bmp -l labels.txt -o output_data_detection -t 1080000000&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Did your postscript get cut off while you were composing this message?&lt;/P&gt;
&lt;P&gt;FWIW, my attempt to run &lt;EM&gt;ethosu_apps.elf&lt;/EM&gt; from remoteproc failed:&lt;/P&gt;
&lt;DIV style="background-color: #ffe; border: thin solid #555; color: #3e3e3e; font-size: 14px; line-height: 140%; margin: 0.5em 0; overflow-x: auto; padding: 0.5em;"&gt;
&lt;PRE style="background-color: transparent; border: none; font-size: inherit; line-height: 140%; margin: 0.5em 0; padding: 0;"&gt;&lt;CODE style="background-color: transparent; color: #3e3e3e; white-space: pre;"&gt;$ &lt;SPAN&gt;echo&lt;/SPAN&gt; /lib/firmware/ethosu_apps.elf &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;firmware 
$ &lt;SPAN&gt;cat&lt;/SPAN&gt; state
&lt;SPAN&gt;offline&lt;/SPAN&gt;
$ &lt;SPAN&gt;echo&lt;/SPAN&gt; start &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;state
&lt;SPAN&gt;-bash&lt;/SPAN&gt;: echo: write error: Invalid argument
$ &lt;SPAN&gt;cat&lt;/SPAN&gt; state
&lt;SPAN&gt;offline&lt;/SPAN&gt;
$ &lt;SPAN&gt;dmesg&lt;/SPAN&gt; &lt;SPAN&gt;|&lt;/SPAN&gt; &lt;SPAN&gt;tail&lt;/SPAN&gt;
&lt;SPAN&gt;[&lt;/SPAN&gt;   61.593023] audit: type=1327 audit(1709089028.676:26): proctitle=&lt;SPAN&gt;"(systemd)"&lt;/SPAN&gt;
[   61.593650] audit: type=1334 audit(1709089028.676:27): prog-id=22 op=LOAD
[  252.292643] remoteproc remoteproc0: powering up imx-rproc
[  252.292727] remoteproc remoteproc0: Direct firmware load for /lib/firmware/ethosu_apps.elf failed with error -2
[  252.292737] remoteproc remoteproc0: Falling back to sysfs fallback for: /lib/firmware/ethosu_apps.elf
[  252.295520] remoteproc remoteproc0: Booting fw image /lib/firmware/ethosu_apps.elf, size 227536
[  252.308739] imx-rproc remoteproc-cm33: Translation failed: da &lt;SPAN&gt;=&lt;/SPAN&gt; 0xffec288 len &lt;SPAN&gt;=&lt;/SPAN&gt; 0x60000
[  252.308761] remoteproc remoteproc0: bad phdr da 0xffec288 mem 0x60000
[  252.308766] remoteproc remoteproc0: Failed to load program segments: -22
[  252.309016] remoteproc remoteproc0: Boot failed: -22&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 07 Jan 2025 23:59:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2023536#M2309</guid>
      <dc:creator>Chavira</dc:creator>
      <dc:date>2025-01-07T23:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: example application from sdk i.e. ethosu_apps is not running as expected</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2023826#M2312</link>
      <description>&lt;P&gt;Its pleasing to see quick responses.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;In your step #3 I'm afraid , you need to pass &lt;STRONG&gt;external_delegate&lt;/STRONG&gt; argument to &lt;STRONG&gt;label_image&lt;/STRONG&gt;&lt;BR /&gt;for the inference to run on ETHOSU, else the inference runs on A55, that is why the inference results are in A55 lines.&lt;BR /&gt;(Please forgive me for confusing you with label_image_release vs label_image, it is actually label_image )&lt;BR /&gt;If you provide external delegate argument to label_image, logs on M33 console would be seen, ref to &lt;A href="https://www.nxp.com/docs/en/user-guide/IMX-MACHINE-LEARNING-UG.pdf?_gl=1*a5ejk6*_ga*MTY0MjQxOTczMi4xNjgyNTI1ODYw*_ga_WM5LE0KMSH*MTczNjE1NzQ5Ny42OC4xLjE3MzYxNTc3ODcuMC4wLjA." target="_self"&gt;section-2.7.2&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;(you might have to provide vela model if the command doesnt work -- for me it works only with vela model)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;gt; cd /usr/bin/tensorflow-lite-2.16.2/examples
&amp;gt; vela mobilenet_v1_1.0_224_quant.tflite
&amp;gt; ./label_image -m output/mobilenet_v1_1.0_224_quant_vela.tflite -i grace_hopper.bmp -l labels.txt --external_delegate_path=/usr/lib/libethosu_delegate.so&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above procedure works okay(below) for me with default/original ethosu_firmware,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;/usr/bin/tensorflow-lite-2.16.2/examples# ./label_image -m output/mobilenet_v1_1.0_224_quant_vela.tflite -i grace_hopper.bmp -l labels.txt  -external_delegate_path=/usr/lib/libethosu_delegate.so
INFO: Loaded model output/mobilenet_v1_1.0_224_quant_vela.tflite
INFO: resolved reporter
INFO: before CreateAllDelegates 
INFO: Ethosu delegate: device_name set to /dev/ethosu0.
INFO: Ethosu delegate: cache_file_path set to .
INFO: Ethosu delegate: timeout set to 60000000000.
INFO: Ethosu delegate: enable_cycle_counter set to 0.
INFO: Ethosu delegate: enable_profiling set to 0.
INFO: Ethosu delegate: profiling_buffer_size set to 2048.
INFO: Ethosu delegate: pmu_event0 set to 0.
INFO: Ethosu delegate: pmu_event1 set to 0.
INFO: Ethosu delegate: pmu_event2 set to 0.
INFO: Ethosu delegate: pmu_event3 set to 0.
INFO: EXTERNAL delegate created.
INFO: EthosuDelegate: 1 nodes delegated out of 1 nodes with 1 partitions.
INFO: Applied EXTERNAL delegate.
INFO: settings-&amp;gt;number_of_warmup_runs 2
INFO: invoked
INFO: average time: 3.762 ms
INFO: Predicted label = 907&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But If I replace default one with compiled one I see error(below) and can see logs in M33 console, &lt;U&gt;&lt;STRONG&gt;My expectation is that with compiled ethosu_firmware inference should be successful&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;/lib/firmware/# reboot
/lib/firmware/# cp ethosu_apps_rpmsg.elf ethosu_firmware

/usr/bin/tensorflow-lite-2.16.2/examples# ./label_image -m output/mobilenet_v1_1.0_224_quant_vela.tflite -i grace_hopper.bmp -l labels.txt  -external_delegate_path=/usr/lib/libethosu_delegate.so

INFO: Loaded model output/mobilenet_v1_1.0_224_quant_vela.tflite
INFO: resolved reporter
INFO: before CreateAllDelegates 
INFO: Ethosu delegate: device_name set to /dev/ethosu0.
INFO: Ethosu delegate: cache_file_path set to .
INFO: Ethosu delegate: timeout set to 60000000000.
INFO: Ethosu delegate: enable_cycle_counter set to 0.
INFO: Ethosu delegate: enable_profiling set to 0.
INFO: Ethosu delegate: profiling_buffer_size set to 2048.
INFO: Ethosu delegate: pmu_event0 set to 0.
INFO: Ethosu delegate: pmu_event1 set to 0.
INFO: Ethosu delegate: pmu_event2 set to 0.
INFO: Ethosu delegate: pmu_event3 set to 0.
INFO: EXTERNAL delegate created.
INFO: EthosuDelegate: 1 nodes delegated out of 1 nodes with 1 partitions.
INFO: Applied EXTERNAL delegate.
INFO: settings-&amp;gt;number_of_warmup_runs 2
ERROR: Ethos_u inference failed

ERROR: Node number 1 (EthosuDelegate) failed to invoke.
ERROR: Failed to invoke tflite&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*** In both the cases Im seeing expected logs on M33 COM port&lt;BR /&gt;&lt;BR /&gt;2. My observations of running M33 executables from linux i.e. by using "remoteproc0" are exactly same as yours.&lt;BR /&gt;3. Inference runner is different example that runs inference on ethosu. This example seems to work with both firmwares in step#1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;#cd /usr/bin/ethosu/examples
#./inference_runner -d /dev/ethosu0 -n output/mobilenet_v1_1.0_224_quant_vela.tflite -i grace_hopper.bmp -l labels.txt -o output_data_detection -t 1080000000&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 07:53:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2023826#M2312</guid>
      <dc:creator>phanichinimilli</dc:creator>
      <dc:date>2025-01-08T07:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: example application from sdk i.e. ethosu_apps is not running as expected</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2029198#M2361</link>
      <description>&lt;P&gt;HI &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/244535"&gt;@phanichinimilli&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;Please try below change.&lt;/P&gt;
&lt;P&gt;--- a/boards/mcimx93evk/demo_apps/ethosu_apps/source/ethosu_apps.cpp&lt;BR /&gt;+++ b/boards/mcimx93evk/demo_apps/ethosu_apps/source/ethosu_apps.cpp&lt;BR /&gt;@@ -36,7 +36,7 @@&lt;BR /&gt;#endif&lt;/P&gt;
&lt;P&gt;#define DDR_MEMORY_ADDRESS 0x8C000000&lt;BR /&gt;-#define OCRAM_MEMORY_ADDRESS 0x204E0000&lt;BR /&gt;+#define OCRAM_MEMORY_ADDRESS 0x204D0000&lt;/P&gt;
&lt;P&gt;#define BYTES_TOPRINT 0x30000&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2025 18:21:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2029198#M2361</guid>
      <dc:creator>Chavira</dc:creator>
      <dc:date>2025-01-16T18:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: example application from sdk i.e. ethosu_apps is not running as expected</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2029469#M2364</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/206761"&gt;@Chavira&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;With the suggested change I can see ethosu_apps.bin seems to be working as expected when launched from uboot.&lt;BR /&gt;Have you got a chance to look into the issue I've mentioned in &lt;A href="https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2023826/highlight/true#" target="_self"&gt;post ?&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2025 05:07:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2029469#M2364</guid>
      <dc:creator>phanichinimilli</dc:creator>
      <dc:date>2025-01-17T05:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: example application from sdk i.e. ethosu_apps is not running as expected</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2029981#M2366</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/244535"&gt;@phanichinimilli&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try attached patch.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2025 21:33:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2029981#M2366</guid>
      <dc:creator>Chavira</dc:creator>
      <dc:date>2025-01-17T21:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: example application from sdk i.e. ethosu_apps is not running as expected</title>
      <link>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2030632#M2380</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/206761"&gt;@Chavira&lt;/a&gt;&amp;nbsp;.&lt;BR /&gt;with the supplied patch I can see label_image working as expected.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2025 11:22:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCX-Microcontrollers/example-application-from-sdk-i-e-ethosu-apps-is-not-running-as/m-p/2030632#M2380</guid>
      <dc:creator>phanichinimilli</dc:creator>
      <dc:date>2025-01-20T11:22:21Z</dc:date>
    </item>
  </channel>
</rss>

