<?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 Re: C++ OpenVino simple matrix multiplication works on CPU and GPU, but crashes on NPU on exit. in Intel® Distribution of OpenVINO™ Toolkit</title>
    <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1659449#M31762</link>
    <description>&lt;P&gt;Hi yanny,&lt;BR /&gt;&lt;BR /&gt;I am currently getting started to write kernels for NPU, I would like to know what OpenVINO version are you curently using and is it helpful for writing kernels?&lt;/P&gt;</description>
    <pubDate>Wed, 22 Jan 2025 10:08:39 GMT</pubDate>
    <dc:creator>Martin_HZK</dc:creator>
    <dc:date>2025-01-22T10:08:39Z</dc:date>
    <item>
      <title>C++ OpenVino simple matrix multiplication works on CPU and GPU, but crashes on NPU on exit.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1633693#M31507</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a simple program for matrix multiplication using OpenVINO (Version: 2024.4.0) on Windows 11. It works fine on CPU and GPU, but it crashes on NPU upon exit. If anyone has any clues on how to fix this, I would really appreciate it. Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;-yanny&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;#include &amp;lt;openvino/openvino.hpp&amp;gt; 
#include &amp;lt;openvino/op/matmul.hpp&amp;gt;

#include &amp;lt;iostream&amp;gt;

int main() {
    try
    {
        ov::Core core;

        ov::Shape input_shape_A{ 1, 1024 };
        ov::Shape input_shape_B{ 1024, 1024 };

        auto input_A = std::make_shared&amp;lt;ov::op::v0::Parameter&amp;gt;(ov::element::f32, input_shape_A);
        auto input_B = std::make_shared&amp;lt;ov::op::v0::Parameter&amp;gt;(ov::element::f32, input_shape_B);

        bool transpose_A = false;
        bool transpose_B = true;

        auto matmul_op = std::make_shared&amp;lt;ov::op::v0::MatMul&amp;gt;(input_A, input_B, transpose_A, transpose_B);

        auto result = std::make_shared&amp;lt;ov::op::v0::Result&amp;gt;(matmul_op);

        ov::ParameterVector inputs{ input_A, input_B };
        ov::ResultVector results{ result };
        auto model = std::make_shared&amp;lt;ov::Model&amp;gt;(results, inputs, "MatMulModel");

        // This works on CPU and GPU
        auto compiled_model = core.compile_model(model, "NPU");

        auto infer_request = compiled_model.create_infer_request();

        std::vector&amp;lt;float&amp;gt; input_data_A(1 * 1024, 2.0f);
        std::vector&amp;lt;float&amp;gt; input_data_B(1024 * 1024, 1.0f);

        infer_request.set_tensor(input_A, ov::Tensor(ov::element::f32, input_shape_A, input_data_A.data()));
        infer_request.set_tensor(input_B, ov::Tensor(ov::element::f32, input_shape_B, input_data_B.data()));

        infer_request.infer();
        infer_request.wait();

        auto output_tensor = infer_request.get_output_tensor();
        const float* output_data = output_tensor.data&amp;lt;float&amp;gt;();

        std::cout &amp;lt;&amp;lt; "MatMul result: ";
        for (size_t i = 0; i &amp;lt; 1024; ++i) {
            std::cout &amp;lt;&amp;lt; output_data[i] &amp;lt;&amp;lt; " ";
        }
        std::cout &amp;lt;&amp;lt; std::endl;
    }
    catch (std::exception e)
    {
        std::cout &amp;lt;&amp;lt; "Exception: " &amp;lt;&amp;lt; e.what() &amp;lt;&amp;lt; std::endl;
    }

    return 0;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 23:02:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1633693#M31507</guid>
      <dc:creator>yanny</dc:creator>
      <dc:date>2024-09-26T23:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: C++ OpenVino simple matrix multiplication works on CPU and GPU, but crashes on NPU on exit.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1634155#M31508</link>
      <description>&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Hi yanny,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Thanks for reaching out to us.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;I've built your application in Release mode and run the application with OpenVINO™ Toolkit 2024.4 on a Ubuntu 22.04 LTS machine. The application ran on the NPU plugin successfully and the output results are similar to your output results as shown as follows:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="loaded to NPU.jpg" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/59318iB3FF13AE9B637E79/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="loaded to NPU.jpg" alt="loaded to NPU.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;However, I didn't receive the call stack messages. Could you please take a screenshot and share the screenshot with us for further investigation?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Wan&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 12:02:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1634155#M31508</guid>
      <dc:creator>Wan_Intel</dc:creator>
      <dc:date>2024-09-30T12:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: C++ OpenVino simple matrix multiplication works on CPU and GPU, but crashes on NPU on exit.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1634263#M31509</link>
      <description>&lt;P&gt;Hi Wan,&lt;BR /&gt;&lt;BR /&gt;Thank you so much for testing out the code for me.&amp;nbsp; I am delighted to know that the code works on a different machine.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Here is the callstack and output on my NPU crash. Please let me know if you need more information, I am happy to provide more information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="none"&gt;Exception thrown at 0x00007FF9FBAFFABC in intel-openvino-sample.exe: Microsoft C++ exception: std::runtime_error at memory location 0x000000A9AF6FEB70.
'intel-openvino-sample.exe' (Win32): Loaded 'C:\Program Files (x86)\Common Files\intel\Shared Libraries\bin\tbbbind_2_5.dll'. 
The thread 23256 has exited with code 0 (0x0).
'intel-openvino-sample.exe' (Win32): Loaded 'C:\Windows\System32\cryptbase.dll'. Symbols loaded without source information.
The thread 32368 has exited with code 0 (0x0).
The thread 31828 has exited with code 0 (0x0).


 	npu_level_zero_umd.dll!00007ff955607a4b()	Unknown
 	npu_level_zero_umd.dll!00007ff95558cfb5()	Unknown
 	npu_level_zero_umd.dll!00007ff955576a3a()	Unknown
 	npu_level_zero_umd.dll!00007ff9555f3193()	Unknown
 	npu_level_zero_umd.dll!00007ff9555f2f41()	Unknown
 	npu_level_zero_umd.dll!00007ff9555f326d()	Unknown
 	npu_level_zero_umd.dll!00007ff9555f2457()	Unknown
 	npu_level_zero_umd.dll!00007ff9555f23d5()	Unknown
 	npu_level_zero_umd.dll!00007ff9555f2557()	Unknown
 	npu_level_zero_umd.dll!00007ff9555e15a3()	Unknown
 	npu_level_zero_umd.dll!00007ff9555e1a1d()	Unknown
 	npu_level_zero_umd.dll!00007ff9555e1b42()	Unknown
 	ntdll.dll!LdrpCallInitRoutine()	Unknown
 	ntdll.dll!LdrShutdownProcess()	Unknown
 	ntdll.dll!RtlExitUserProcess()	Unknown
 	kernel32.dll!ExitProcessImplementation()	Unknown
 	ucrtbase.dll!exit_or_terminate_process()	Unknown
 	ucrtbase.dll!common_exit()	Unknown
&amp;gt;	intel-openvino-sample.exe!__scrt_common_main_seh() Line 295	C++
 	kernel32.dll!BaseThreadInitThunk()	Unknown
 	ntdll.dll!RtlUserThreadStart()	Unknown&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 30 Sep 2024 17:53:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1634263#M31509</guid>
      <dc:creator>yanny</dc:creator>
      <dc:date>2024-09-30T17:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: C++ OpenVino simple matrix multiplication works on CPU and GPU, but crashes on NPU on exit.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1634340#M31512</link>
      <description>&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Hi yanny,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Thanks for the information.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Let me check with relevant team and we'll provide an update as soon as possible.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;On the other hand, could you please share the following information with us?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Hardware Specification&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Version of Intel® NPU Driver&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Wan&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2024 02:28:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1634340#M31512</guid>
      <dc:creator>Wan_Intel</dc:creator>
      <dc:date>2024-10-01T02:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: C++ OpenVino simple matrix multiplication works on CPU and GPU, but crashes on NPU on exit.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1634460#M31513</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="none"&gt;Device name MSI
Prestige 16 AI Evo B1MG
Processor Intel(R) Core(TM) Ultra 7 155H 3.80 GHz
Installed RAM 32.0 GB (31.7 GB usable)
System type 64-bit operating system, x64-based processor&lt;/LI-CODE&gt;&lt;LI-CODE lang="none"&gt;Intel(R) AI Boost
Driver Version: 32.0.100.2714&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2024 18:15:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1634460#M31513</guid>
      <dc:creator>yanny</dc:creator>
      <dc:date>2024-10-01T18:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: C++ OpenVino simple matrix multiplication works on CPU and GPU, but crashes on NPU on exit.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1635610#M31519</link>
      <description>&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Hi yanny,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Thanks for your patience.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;To further investigate the issue, could you please install the OpenVINO™ 2023.3 LTS from an Archive file via the following link and see if you encounter the same issue when running the C++ application with the NPU plugin?&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;&lt;A href="https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.3/windows" target="_blank" rel="noopener"&gt;https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.3/windows&lt;/A&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Steps to install the OpenVINO™ 2023.3 LTS on Windows from an Archive File is available here:&lt;BR /&gt;&lt;A href="https://docs.openvino.ai/2023.3/openvino_docs_install_guides_installing_openvino_from_archive_windows.html" target="_blank" rel="noopener"&gt;https://docs.openvino.ai/2023.3/openvino_docs_install_guides_installing_openvino_from_archive_windows.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Wan&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Oct 2024 23:09:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1635610#M31519</guid>
      <dc:creator>Wan_Intel</dc:creator>
      <dc:date>2024-10-06T23:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: C++ OpenVino simple matrix multiplication works on CPU and GPU, but crashes on NPU on exit.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1635826#M31521</link>
      <description>&lt;P&gt;Hi Wan,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;OpenVINO™ 2023.3 works on my machine.&amp;nbsp; Thank you very much for your&amp;nbsp; help!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-yanny&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 14:45:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1635826#M31521</guid>
      <dc:creator>yanny</dc:creator>
      <dc:date>2024-10-07T14:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: C++ OpenVino simple matrix multiplication works on CPU and GPU, but crashes on NPU on exit.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1635931#M31523</link>
      <description>&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Hi yanny,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;I'm glad to know that the NPU plugin worked on your machine when using OpenVINO™ 2023.3 LTS. &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;If you need additional information from Intel, please submit a new question as this thread will no longer be monitored.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="helvetica"&gt;&lt;SPAN&gt;Wan&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 00:55:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1635931#M31523</guid>
      <dc:creator>Wan_Intel</dc:creator>
      <dc:date>2024-10-08T00:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: C++ OpenVino simple matrix multiplication works on CPU and GPU, but crashes on NPU on exit.</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1659449#M31762</link>
      <description>&lt;P&gt;Hi yanny,&lt;BR /&gt;&lt;BR /&gt;I am currently getting started to write kernels for NPU, I would like to know what OpenVINO version are you curently using and is it helpful for writing kernels?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2025 10:08:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/C-OpenVino-simple-matrix-multiplication-works-on-CPU-and-GPU-but/m-p/1659449#M31762</guid>
      <dc:creator>Martin_HZK</dc:creator>
      <dc:date>2025-01-22T10:08:39Z</dc:date>
    </item>
  </channel>
</rss>

