<?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 Using OpenVINO with GPU reboot automatically the system in Intel® Distribution of OpenVINO™ Toolkit</title>
    <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Using-OpenVINO-with-GPU-reboot-automatically-the-system/m-p/1130120#M8370</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have problem on using OpenVINO with GPU (I use the UP squared board, GPU Intel Gen 9). Very often my system reboot automatically when I execute the inference with GPU. Not always but very often. I thought that it maybe because of overheating but today it reboot directly from the first execution (the board isn't hot at all).&lt;/P&gt;&lt;P&gt;I have just updated OpenVINO to the last release and the problem is still there,&lt;/P&gt;&lt;P&gt;Someone can help me on this,&lt;/P&gt;&lt;P&gt;Thank you so much and best regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Oct 2019 13:07:42 GMT</pubDate>
    <dc:creator>Truong__Dien_Hoa</dc:creator>
    <dc:date>2019-10-28T13:07:42Z</dc:date>
    <item>
      <title>Using OpenVINO with GPU reboot automatically the system</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Using-OpenVINO-with-GPU-reboot-automatically-the-system/m-p/1130120#M8370</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have problem on using OpenVINO with GPU (I use the UP squared board, GPU Intel Gen 9). Very often my system reboot automatically when I execute the inference with GPU. Not always but very often. I thought that it maybe because of overheating but today it reboot directly from the first execution (the board isn't hot at all).&lt;/P&gt;&lt;P&gt;I have just updated OpenVINO to the last release and the problem is still there,&lt;/P&gt;&lt;P&gt;Someone can help me on this,&lt;/P&gt;&lt;P&gt;Thank you so much and best regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 13:07:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Using-OpenVINO-with-GPU-reboot-automatically-the-system/m-p/1130120#M8370</guid>
      <dc:creator>Truong__Dien_Hoa</dc:creator>
      <dc:date>2019-10-28T13:07:42Z</dc:date>
    </item>
    <item>
      <title>[Update] it's likely because</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Using-OpenVINO-with-GPU-reboot-automatically-the-system/m-p/1130121#M8371</link>
      <description>&lt;P&gt;[Update] it's likely because of overheating. I'm using a cooling fan and now it doesn't reboot anymore. When it works, everything is perfect. I removed the fan and now, even at 75°C, it works (before, it can be reboot at 65°C).&lt;/P&gt;&lt;P&gt;Anyone know about this problem ? In my opinion, 65°C is not very hot right ?&lt;/P&gt;&lt;P&gt;Thanks and best regards,&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 13:40:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Using-OpenVINO-with-GPU-reboot-automatically-the-system/m-p/1130121#M8371</guid>
      <dc:creator>Truong__Dien_Hoa</dc:creator>
      <dc:date>2019-10-28T13:40:26Z</dc:date>
    </item>
    <item>
      <title>[Update] It is not really</title>
      <link>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Using-OpenVINO-with-GPU-reboot-automatically-the-system/m-p/1130122#M8372</link>
      <description>&lt;P&gt;[Update] It is not really related to the temperature. I minimize the code so that you can track where the problems is as below.&lt;BR /&gt;```&lt;BR /&gt;import cv2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;import numpy as np&lt;BR /&gt;import time&lt;BR /&gt;from openvino.inference_engine import IENetwork, IEPlugin&lt;BR /&gt;net = IENetwork(model='/home/k/face-detection-retail-0004.xml', weights='/home/k/face-detection-retail-0004.bin')&lt;BR /&gt;plugin = IEPlugin(device="GPU")&lt;BR /&gt;exec_net = plugin.load(network=net)&lt;/P&gt;&lt;P&gt;def _preprocess_face(img, shape=(300,300)):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; origin_shape = img.shape&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; img_processed = cv2.cvtColor(img, cv2.COLOR_RGB2BGR)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; img_processed = cv2.resize(img_processed, (shape[0], shape[1]))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; img_processed = img_processed.transpose((2, 0, 1))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return img_processed&lt;/P&gt;&lt;P&gt;image = cv2.imread('/home/k/_.jpg')&lt;/P&gt;&lt;P&gt;for i in range(100):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; img = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; img = _preprocess_face(img)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; start = time.time()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; res = exec_net.infer({'data': img})&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print(time.time()-start)&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;The output I got is:&lt;BR /&gt;$ python gpu.py&lt;BR /&gt;0.017605304718017578&lt;BR /&gt;0.014819860458374023&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;It ran 2 times then the system reboot. I have tried many differents things that I can imagine: I use different model, run as asynchronous, synchronous but the problems is always there. sometimes it reboots directly from the 1 try, sometimes after several try.&lt;/P&gt;&lt;P&gt;I would really appreciate if someone can help me on that.&lt;/P&gt;&lt;P&gt;The model I downloaded from Openvino pretrained model for face detection&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 12:49:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/Using-OpenVINO-with-GPU-reboot-automatically-the-system/m-p/1130122#M8372</guid>
      <dc:creator>Truong__Dien_Hoa</dc:creator>
      <dc:date>2019-11-12T12:49:53Z</dc:date>
    </item>
  </channel>
</rss>

