<?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 report an APEX kernel bug in MBDT for VISION</title>
    <link>https://community.nxp.com/t5/MBDT-for-VISION/report-an-APEX-kernel-bug/m-p/840273#M115</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;report an APEX bug, it doesn't happen in EMU environment.&lt;BR /&gt;Create a very simple project with one input and one output&lt;BR /&gt;matNumberInlet0(512, 512, VSDK_CV_8UC1);&lt;BR /&gt;matNumberOutlet0(512, 512, VSDK_CV_8UC1)&lt;BR /&gt;write only one code in kernel like--&amp;gt;&lt;BR /&gt;static int staticint = 0;&lt;BR /&gt;vec32u* pDst = (vec32u*)dst0;&lt;BR /&gt;pDst[staticint] = staticint++;&lt;BR /&gt;return; &lt;BR /&gt;//expect result, every iteration, only one line's value is set.&lt;BR /&gt;//wrong result, at the first iteration, not only 0, but also 64, 128, ... lines's value is set.&lt;BR /&gt;// then you can see different values(1,3,5,7....) is set is the last rows, although i just expect to see one line is set at the bottom.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jul 2018 04:35:42 GMT</pubDate>
    <dc:creator>1054072686</dc:creator>
    <dc:date>2018-07-23T04:35:42Z</dc:date>
    <item>
      <title>report an APEX kernel bug</title>
      <link>https://community.nxp.com/t5/MBDT-for-VISION/report-an-APEX-kernel-bug/m-p/840273#M115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;report an APEX bug, it doesn't happen in EMU environment.&lt;BR /&gt;Create a very simple project with one input and one output&lt;BR /&gt;matNumberInlet0(512, 512, VSDK_CV_8UC1);&lt;BR /&gt;matNumberOutlet0(512, 512, VSDK_CV_8UC1)&lt;BR /&gt;write only one code in kernel like--&amp;gt;&lt;BR /&gt;static int staticint = 0;&lt;BR /&gt;vec32u* pDst = (vec32u*)dst0;&lt;BR /&gt;pDst[staticint] = staticint++;&lt;BR /&gt;return; &lt;BR /&gt;//expect result, every iteration, only one line's value is set.&lt;BR /&gt;//wrong result, at the first iteration, not only 0, but also 64, 128, ... lines's value is set.&lt;BR /&gt;// then you can see different values(1,3,5,7....) is set is the last rows, although i just expect to see one line is set at the bottom.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2018 04:35:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MBDT-for-VISION/report-an-APEX-kernel-bug/m-p/840273#M115</guid>
      <dc:creator>1054072686</dc:creator>
      <dc:date>2018-07-23T04:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: report an APEX kernel bug</title>
      <link>https://community.nxp.com/t5/MBDT-for-VISION/report-an-APEX-kernel-bug/m-p/840274#M116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/christinaxu"&gt;christinaxu&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of bug reports for the Vision SDK via NXP Community, what is the preferred way to handle these subjects?&lt;/P&gt;&lt;P&gt;Do you know is there is a dedicated person for support VSDK issues on the community?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;In general, this community space was created to handle MATLAB Vision Toolbox related issues but if we can help users in generic Vision SDK topics we will be happy to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 08:24:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MBDT-for-VISION/report-an-APEX-kernel-bug/m-p/840274#M116</guid>
      <dc:creator>Daniel_Popa</dc:creator>
      <dc:date>2018-07-25T08:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: report an APEX kernel bug</title>
      <link>https://community.nxp.com/t5/MBDT-for-VISION/report-an-APEX-kernel-bug/m-p/840275#M117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I already got the answer for this issue.&lt;BR /&gt;It's due to APEX will copy CMEM buffer to output matrix repeatedly by default even if you did nothing during some of the iterations.&lt;BR /&gt;that means if you change a value in the first iteration, but you did nothing in all other following iterations.&lt;BR /&gt;because the CMEM buffer may include several iteration contents, so the first iteration result will be copied to some other iterations.&lt;BR /&gt;thus you will get a wrong impression, you assign value once, but many lines are assinged.&lt;/P&gt;&lt;P&gt;you can say it is an apex bug, also you can say it's not.&lt;/P&gt;&lt;P&gt;--Smith Ou&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 10:21:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MBDT-for-VISION/report-an-APEX-kernel-bug/m-p/840275#M117</guid>
      <dc:creator>1054072686</dc:creator>
      <dc:date>2018-07-25T10:21:42Z</dc:date>
    </item>
  </channel>
</rss>

