<?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: slight delay when a console application exit in Intel® oneAPI DPC++/C++ Compiler</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622997#M4035</link>
    <description>&lt;P&gt;What is&amp;nbsp;&lt;SPAN&gt;VRA.c&amp;nbsp;?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 13 Aug 2024 19:09:14 GMT</pubDate>
    <dc:creator>Alex_Y_Intel</dc:creator>
    <dc:date>2024-08-13T19:09:14Z</dc:date>
    <item>
      <title>slight delay when a console application exit</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622510#M4024</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I made a console application which print something and then exit, after printing instead of exit immediately, like the same application compiled with other compilers it delays the exit, what would be the reason for that?&lt;/P&gt;</description>
      <pubDate>Sun, 11 Aug 2024 21:56:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622510#M4024</guid>
      <dc:creator>mrusso</dc:creator>
      <dc:date>2024-08-11T21:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: slight delay when a console application exit</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622974#M4029</link>
      <description>&lt;P&gt;Why is it related to Intel DPC++/C++ compiler?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 18:12:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622974#M4029</guid>
      <dc:creator>Alex_Y_Intel</dc:creator>
      <dc:date>2024-08-13T18:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: slight delay when a console application exit</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622981#M4030</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The issue seems related to optimization, when turned off, works fine, when turn on, sometime got output and sometime no output but always delay in exit.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 18:29:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622981#M4030</guid>
      <dc:creator>mrusso</dc:creator>
      <dc:date>2024-08-13T18:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: slight delay when a console application exit</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622984#M4031</link>
      <description>&lt;P&gt;A reproducer and exact commands used need to be provided for understanding your issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 18:31:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622984#M4031</guid>
      <dc:creator>Alex_Y_Intel</dc:creator>
      <dc:date>2024-08-13T18:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: slight delay when a console application exit</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622991#M4032</link>
      <description>&lt;P&gt;These are the commands:&lt;/P&gt;&lt;P&gt;icx /QxHOST /Ot /Qansi-alias -Qipo VRA.c -o VRASPEED&lt;BR /&gt;icx /QxHOST /O1 /Qansi-alias VRA.c -o VRASIZE&lt;BR /&gt;icx /QxHOST /O2 /Qansi-alias -Qipo VRA.c -o VRASPEED1&lt;BR /&gt;icx /QxHOST /O3 /Qansi-alias -Qipo VRA.c -o VRAMAXSPEED&lt;BR /&gt;icx /QxHOST /Os /Qansi-alias VRA.c -o VRASIZE2&lt;BR /&gt;icx /QxHOST /Ot /Qiiansi-alias -Qipo VRA.c -o VRASPEED2&lt;BR /&gt;icx /QxHOST /Od /Qansi-alias -Qipo VRA.c -o VRADISABLE ; THIS IS THE ONLY ONE THAT WORKS FINE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and also tried:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;icx /QxHOST /Ot /Qansi-alias -Qipo VRA.c -o VRASPEED -fprofile-instr-generate&lt;BR /&gt;VRASPEED 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /Ot /Qansi-alias -Qipo VRA.c -o VRASPEED -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;icx /QxHOST /O1 /Qansi-alias VRA.c -o VRASIZE -fprofile-instr-generate&lt;BR /&gt;VRASIZE 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /O1 /Qansi-alias VRA.c -o VRASIZE -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;icx /QxHOST /O2 /Qansi-alias -Qipo VRA.c -o VRASPEED1 -fprofile-instr-generate&lt;BR /&gt;VRASPEED1 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /O2 /Qansi-alias -Qipo VRA.c -o VRASPEED1 -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;icx /QxHOST /O3 /Qansi-alias -Qipo VRA.c -o VRAMAXSPEED -fprofile-instr-generate&lt;BR /&gt;VRAMAXSPEED 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /O3 /Qansi-alias -Qipo VRA.c -o VRAMAXSPEED -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;icx /QxHOST /Os /Qansi-alias VRA.c -o VRASIZE2 -fprofile-instr-generate&lt;BR /&gt;VRASIZE2 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /Os /Qansi-alias VRA.c -o VRASIZE2 -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;icx /QxHOST /Ot /Qiiansi-alias -Qipo VRA.c -o VRASPEED2 -fprofile-instr-generate&lt;BR /&gt;VRASPEED2 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /Ot /Qansi-alias -Qipo VRA.c -o VRASPEED2 -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;icx /QxHOST /Od /Qansi-alias -Qipo VRA.c -o VRADISABLE -fprofile-instr-generate&lt;BR /&gt;VRADISABLE 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /Od /Qansi-alias -Qipo VRA.c -o VRADISABLE -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 18:49:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622991#M4032</guid>
      <dc:creator>mrusso</dc:creator>
      <dc:date>2024-08-13T18:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: slight delay when a console application exit</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622993#M4033</link>
      <description>&lt;P&gt;icx /QxHOST /Ot /Qansi-alias -Qipo VRA.c -o VRASPEED&lt;BR /&gt;icx /QxHOST /O1 /Qansi-alias VRA.c -o VRASIZE&lt;BR /&gt;icx /QxHOST /O2 /Qansi-alias -Qipo VRA.c -o VRASPEED1&lt;BR /&gt;icx /QxHOST /O3 /Qansi-alias -Qipo VRA.c -o VRAMAXSPEED&lt;BR /&gt;icx /QxHOST /Os /Qansi-alias VRA.c -o VRASIZE2&lt;BR /&gt;icx /QxHOST /Ot /Qiiansi-alias -Qipo VRA.c -o VRASPEED2&lt;BR /&gt;icx /QxHOST /Od /Qansi-alias -Qipo VRA.c -o VRADISABLE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;icx /QxHOST /Ot /Qansi-alias -Qipo VRA.c -o VRASPEED -fprofile-instr-generate&lt;BR /&gt;VRASPEED 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /Ot /Qansi-alias -Qipo VRA.c -o VRASPEED -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;icx /QxHOST /O1 /Qansi-alias VRA.c -o VRASIZE -fprofile-instr-generate&lt;BR /&gt;VRASIZE 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /O1 /Qansi-alias VRA.c -o VRASIZE -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;icx /QxHOST /O2 /Qansi-alias -Qipo VRA.c -o VRASPEED1 -fprofile-instr-generate&lt;BR /&gt;VRASPEED1 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /O2 /Qansi-alias -Qipo VRA.c -o VRASPEED1 -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;icx /QxHOST /O3 /Qansi-alias -Qipo VRA.c -o VRAMAXSPEED -fprofile-instr-generate&lt;BR /&gt;VRAMAXSPEED 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /O3 /Qansi-alias -Qipo VRA.c -o VRAMAXSPEED -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;icx /QxHOST /Os /Qansi-alias VRA.c -o VRASIZE2 -fprofile-instr-generate&lt;BR /&gt;VRASIZE2 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /Os /Qansi-alias VRA.c -o VRASIZE2 -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;icx /QxHOST /Ot /Qiiansi-alias -Qipo VRA.c -o VRASPEED2 -fprofile-instr-generate&lt;BR /&gt;VRASPEED2 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /Ot /Qansi-alias -Qipo VRA.c -o VRASPEED2 -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;icx /QxHOST /Od /Qansi-alias -Qipo VRA.c -o VRADISABLE -fprofile-instr-generate&lt;BR /&gt;VRADISABLE 1.txt 3 2&lt;BR /&gt;llvm-profdata merge -output=code.profdata default.profraw&lt;BR /&gt;icx /QxHOST /Od /Qansi-alias -Qipo VRA.c -o VRADISABLE -fprofile-instr-use=code.profdata&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 18:55:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622993#M4033</guid>
      <dc:creator>mrusso</dc:creator>
      <dc:date>2024-08-13T18:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: slight delay when a console application exit</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622994#M4034</link>
      <description>&lt;P&gt;icx /QxHOST /Ot /Qansi-alias -Qipo VRA.c -o VRASPEED&lt;BR /&gt;icx /QxHOST /O1 /Qansi-alias VRA.c -o VRASIZE&lt;BR /&gt;icx /QxHOST /O2 /Qansi-alias -Qipo VRA.c -o VRASPEED1&lt;BR /&gt;icx /QxHOST /O3 /Qansi-alias -Qipo VRA.c -o VRAMAXSPEED&lt;BR /&gt;icx /QxHOST /Os /Qansi-alias VRA.c -o VRASIZE2&lt;BR /&gt;icx /QxHOST /Ot /Qiiansi-alias -Qipo VRA.c -o VRASPEED2&lt;BR /&gt;icx /QxHOST /Od /Qansi-alias -Qipo VRA.c -o VRADISABLE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 18:56:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622994#M4034</guid>
      <dc:creator>mrusso</dc:creator>
      <dc:date>2024-08-13T18:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: slight delay when a console application exit</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622997#M4035</link>
      <description>&lt;P&gt;What is&amp;nbsp;&lt;SPAN&gt;VRA.c&amp;nbsp;?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 19:09:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622997#M4035</guid>
      <dc:creator>Alex_Y_Intel</dc:creator>
      <dc:date>2024-08-13T19:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: slight delay when a console application exit</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622998#M4036</link>
      <description>&lt;P&gt;is a source c file.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 19:15:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622998#M4036</guid>
      <dc:creator>mrusso</dc:creator>
      <dc:date>2024-08-13T19:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: slight delay when a console application exit</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622999#M4037</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak"&gt;We need to have your VRA.c source file to duplicate your observation and investigate it.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 19:25:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1622999#M4037</guid>
      <dc:creator>Alex_Y_Intel</dc:creator>
      <dc:date>2024-08-13T19:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: slight delay when a console application exit</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1623001#M4038</link>
      <description>&lt;P&gt;to run as vra.exe 1.txt 3 2&lt;/P&gt;&lt;P&gt;Also please note that it works only if optimizations are disabled.&lt;/P&gt;&lt;P&gt;On same other compilers it works even with optimizations.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 19:32:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1623001#M4038</guid>
      <dc:creator>mrusso</dc:creator>
      <dc:date>2024-08-13T19:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: slight delay when a console application exit</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1623212#M4041</link>
      <description>&lt;P&gt;Ok I found the issue:&lt;/P&gt;&lt;P&gt;Basically before the loop that follows, I have:&lt;/P&gt;&lt;P&gt;v85 = v5 + 1;&lt;/P&gt;&lt;P&gt;v87 = 1;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;for ( j = v87; j &amp;lt;= v83; ++j ) //V87 TRAIN FROM, V83 PREDICT TO &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{ &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; *(int *)(handle + sizeof(int) * j) = *(int *)(byte_4BC818 + sizeof(int) * j);&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;so I had to move the line v85 = v5 + 1; after the scanf that counts how many values are in the data file, v5 is the counter.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2024 16:48:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/slight-delay-when-a-console-application-exit/m-p/1623212#M4041</guid>
      <dc:creator>mrusso</dc:creator>
      <dc:date>2024-08-14T16:48:39Z</dc:date>
    </item>
  </channel>
</rss>

