<?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: How to use MVNC_DEBUGINFO or MVNC_DEBUG_INFO in Intel® Distribution of OpenVINO™ Toolkit</title>
    <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/How-to-use-MVNC-DEBUGINFO-or-MVNC-DEBUG-INFO/m-p/710888#M6215</link>
    <description>&lt;P&gt;I got debug info using this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;if (ncsCode == MVNC_MYRIAD_ERROR)
{
char* err;
unsigned int len;
mvncGetGraphOption(ncsGraph, MVNC_DEBUG_INFO, (void*)&amp;amp;err, &amp;amp;len);
cout&amp;lt;&amp;lt;string(err, len)&amp;lt;&amp;lt;endl;
}
&lt;/CODE&gt;</description>
    <pubDate>Mon, 22 Jan 2018 17:21:38 GMT</pubDate>
    <dc:creator>idata</dc:creator>
    <dc:date>2018-01-22T17:21:38Z</dc:date>
    <item>
      <title>How to use MVNC_DEBUGINFO or MVNC_DEBUG_INFO</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/How-to-use-MVNC-DEBUGINFO-or-MVNC-DEBUG-INFO/m-p/710885#M6212</link>
      <description>&lt;P&gt;I got an error of MVNC_MYRIAD_ERROR when trying to call mvncGetResult().  Basically, I was running the run.cpp apps in GoogLeNet folder using my own graph file.  The graph file is loaded successfully, but I eventually get an error.  when trying to debug more to see what error is, I got:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;pdo1@degcoeng001:~/workspace/ncsdk/examples/caffe/GoogLeNet/cpp$ ./run_cpp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Successfully opened NCS device!&lt;P&gt;&amp;nbsp;&lt;/P&gt;Successfully allocated graph for ../graph&lt;P&gt;&amp;nbsp;&lt;/P&gt;Successfully loaded the tensor for image ../../../data/images/nps_electric_guitar.png&lt;P&gt;&amp;nbsp;&lt;/P&gt; An error has been reported by Intel® Movidius\u2122 VPU. Use MVNC_DEBUGINFO to get more information&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wonder if anyone has tried to use MVNC_DEBUGINFO or MVNC_DEBUG_INFO (because MVNC_DEBUGINFO is deprecated), and give me some example to see more detail about my error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;Thanks in advance for your help</description>
      <pubDate>Thu, 04 Jan 2018 03:53:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/How-to-use-MVNC-DEBUGINFO-or-MVNC-DEBUG-INFO/m-p/710885#M6212</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-01-04T03:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to use MVNC_DEBUGINFO or MVNC_DEBUG_INFO</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/How-to-use-MVNC-DEBUGINFO-or-MVNC-DEBUG-INFO/m-p/710886#M6213</link>
      <description>&lt;P&gt;@&lt;A href="mailto:phong.do@intel.com"&gt;phong.do@intel.com&lt;/A&gt; After receiving an MYRIAD_ERROR message, you can read MVNC_DEBUG_INFO for more information about the error you encountered. &lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2018 06:04:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/How-to-use-MVNC-DEBUGINFO-or-MVNC-DEBUG-INFO/m-p/710886#M6213</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-01-04T06:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to use MVNC_DEBUGINFO or MVNC_DEBUG_INFO</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/How-to-use-MVNC-DEBUGINFO-or-MVNC-DEBUG-INFO/m-p/710887#M6214</link>
      <description>&lt;P&gt;how do I read MVNC_DEBUG_INFO, can you give me some c++ example?  Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2018 05:20:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/How-to-use-MVNC-DEBUGINFO-or-MVNC-DEBUG-INFO/m-p/710887#M6214</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-01-17T05:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to use MVNC_DEBUGINFO or MVNC_DEBUG_INFO</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/How-to-use-MVNC-DEBUGINFO-or-MVNC-DEBUG-INFO/m-p/710888#M6215</link>
      <description>&lt;P&gt;I got debug info using this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;CODE&gt;if (ncsCode == MVNC_MYRIAD_ERROR)
{
char* err;
unsigned int len;
mvncGetGraphOption(ncsGraph, MVNC_DEBUG_INFO, (void*)&amp;amp;err, &amp;amp;len);
cout&amp;lt;&amp;lt;string(err, len)&amp;lt;&amp;lt;endl;
}
&lt;/CODE&gt;</description>
      <pubDate>Mon, 22 Jan 2018 17:21:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/How-to-use-MVNC-DEBUGINFO-or-MVNC-DEBUG-INFO/m-p/710888#M6215</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-01-22T17:21:38Z</dc:date>
    </item>
  </channel>
</rss>

