<?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>topic NPU CORE NOT FOUND ISSUE in Other NXP Products</title>
    <link>https://community.nxp.com/t5/Other-NXP-Products/NPU-CORE-NOT-FOUND-ISSUE/m-p/2246840#M30668</link>
    <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I am working on using the NPU delegate on my iMX8MP board by following the official instructions here:&lt;BR /&gt;&lt;A href="https://docs.mesa3d.org/teflon.html" target="_blank"&gt;https://docs.mesa3d.org/teflon.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;When I run the classification example on CPU, it works fine:&lt;BR /&gt;```&lt;BR /&gt;TEFLON_DEBUG=verbose ETNA_MESA_DEBUG=ml_dbgs python3 classification.py -i grace_hopper.bmp -m mobilenet_v1_1_224_quant.tflite -l labels_mobilenet_quant_v1_224.txt&lt;BR /&gt;INFO: Created TensorFlow Lite XNNPACK delegate for CPU.&lt;BR /&gt;0.878431: military uniform&lt;BR /&gt;0.027451: Windsor tie&lt;BR /&gt;...&lt;BR /&gt;time: 166.804ms&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;However, when I try to run it using the NPU delegate, it fails with the message:&lt;BR /&gt;`We need at least 1 NN core to do anything useful.` and aborts with a core dump.&lt;BR /&gt;The logs show the error originates here in the code when checking NN core count:&lt;BR /&gt;```&lt;BR /&gt;if (nn_core_count &amp;lt; 1) {&lt;BR /&gt;fprintf(stderr, "We need at least 1 NN core to do anything useful.\n");&lt;BR /&gt;abort();&lt;BR /&gt;}&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;Yet, my board does run etnaviv kernel driver and reports the NPU with this dmesg output:&lt;BR /&gt;```&lt;BR /&gt;[ 2.506788] etnaviv-gpu 38500000.npu: model: GC8000, revision: 8002&lt;BR /&gt;[ 2.513079] etnaviv-gpu 38500000.npu: etnaviv has been instantiated on a NPU, for which the UAPI is still experimental&lt;BR /&gt;[ 2.524358] [drm] Initialized etnaviv 1.4.0 for etnaviv on minor 0&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;So, the GPU and NPU drivers appear loaded properly, and the hardware is detected at boot, but the NPU delegate cannot find any usable NN core.&lt;/P&gt;&lt;P&gt;Has anyone encountered this "No NPU found" issue on iMX8MP when using the npu_delegate?&lt;BR /&gt;Could it be related to software configuration, kernel module support, firmware, or the Teflon/Mesa driver versions?&lt;BR /&gt;Any pointers on how to resolve the "We need at least 1 NN core" abort would be appreciated.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Mon, 24 Nov 2025 08:07:24 GMT</pubDate>
    <dc:creator>sandysparkz</dc:creator>
    <dc:date>2025-11-24T08:07:24Z</dc:date>
    <item>
      <title>NPU CORE NOT FOUND ISSUE</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/NPU-CORE-NOT-FOUND-ISSUE/m-p/2246840#M30668</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;I am working on using the NPU delegate on my iMX8MP board by following the official instructions here:&lt;BR /&gt;&lt;A href="https://docs.mesa3d.org/teflon.html" target="_blank"&gt;https://docs.mesa3d.org/teflon.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;When I run the classification example on CPU, it works fine:&lt;BR /&gt;```&lt;BR /&gt;TEFLON_DEBUG=verbose ETNA_MESA_DEBUG=ml_dbgs python3 classification.py -i grace_hopper.bmp -m mobilenet_v1_1_224_quant.tflite -l labels_mobilenet_quant_v1_224.txt&lt;BR /&gt;INFO: Created TensorFlow Lite XNNPACK delegate for CPU.&lt;BR /&gt;0.878431: military uniform&lt;BR /&gt;0.027451: Windsor tie&lt;BR /&gt;...&lt;BR /&gt;time: 166.804ms&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;However, when I try to run it using the NPU delegate, it fails with the message:&lt;BR /&gt;`We need at least 1 NN core to do anything useful.` and aborts with a core dump.&lt;BR /&gt;The logs show the error originates here in the code when checking NN core count:&lt;BR /&gt;```&lt;BR /&gt;if (nn_core_count &amp;lt; 1) {&lt;BR /&gt;fprintf(stderr, "We need at least 1 NN core to do anything useful.\n");&lt;BR /&gt;abort();&lt;BR /&gt;}&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;Yet, my board does run etnaviv kernel driver and reports the NPU with this dmesg output:&lt;BR /&gt;```&lt;BR /&gt;[ 2.506788] etnaviv-gpu 38500000.npu: model: GC8000, revision: 8002&lt;BR /&gt;[ 2.513079] etnaviv-gpu 38500000.npu: etnaviv has been instantiated on a NPU, for which the UAPI is still experimental&lt;BR /&gt;[ 2.524358] [drm] Initialized etnaviv 1.4.0 for etnaviv on minor 0&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;So, the GPU and NPU drivers appear loaded properly, and the hardware is detected at boot, but the NPU delegate cannot find any usable NN core.&lt;/P&gt;&lt;P&gt;Has anyone encountered this "No NPU found" issue on iMX8MP when using the npu_delegate?&lt;BR /&gt;Could it be related to software configuration, kernel module support, firmware, or the Teflon/Mesa driver versions?&lt;BR /&gt;Any pointers on how to resolve the "We need at least 1 NN core" abort would be appreciated.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2025 08:07:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/NPU-CORE-NOT-FOUND-ISSUE/m-p/2246840#M30668</guid>
      <dc:creator>sandysparkz</dc:creator>
      <dc:date>2025-11-24T08:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: NPU CORE NOT FOUND ISSUE</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/NPU-CORE-NOT-FOUND-ISSUE/m-p/2254330#M30763</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/257230"&gt;@sandysparkz&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope you are doing very well.&lt;/P&gt;
&lt;P&gt;Are you using a custom board or the NXP EVK?&lt;/P&gt;
&lt;P&gt;If you are using a custom board, could you please share your device tree?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Salas.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 15:42:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/NPU-CORE-NOT-FOUND-ISSUE/m-p/2254330#M30763</guid>
      <dc:creator>Manuel_Salas</dc:creator>
      <dc:date>2025-12-03T15:42:03Z</dc:date>
    </item>
  </channel>
</rss>

