<?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:cant generate LLVM IR using dpcpp in Intel® oneAPI DPC++/C++ Compiler</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1377106#M2046</link>
    <description>&lt;P&gt;Please could you provide an update whether the issue was fixed using the previous advice, thanks.&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 14 Apr 2022 13:04:12 GMT</pubDate>
    <dc:creator>Klaus-Dieter_O_Intel</dc:creator>
    <dc:date>2022-04-14T13:04:12Z</dc:date>
    <item>
      <title>cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1359302#M1880</link>
      <description>&lt;P&gt;doing&lt;/P&gt;
&lt;P&gt;&amp;nbsp; dpcpp -emit-llvm -o x.ll -S x.cpp&lt;/P&gt;
&lt;P&gt;generates:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; error: IR output is not supported.&lt;/P&gt;
&lt;P&gt;Setting&lt;/P&gt;
&lt;P&gt;&amp;nbsp; export IGC_DumpLLVMIR=1&lt;/P&gt;
&lt;P&gt;( as suggested in one of the posts ) doesn't help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;David&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 20:07:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1359302#M1880</guid>
      <dc:creator>DavidLivshin</dc:creator>
      <dc:date>2022-02-10T20:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1359485#M1881</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to us.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please try using the below command for generating the LLVM IR using dpcpp&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;dpcpp -emit-llvm -fsycl-device-only -o x.ll sample.cpp&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have tried using the attached sample vector add program using the latest Intel oneAPI(2022.0) and we are able to generate LLVM IR code. Please find the below screenshot for more information.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LLVM.png" style="width: 999px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/26508iE4E80DE8EE5DB538/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="LLVM.png" alt="LLVM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Could you please try and let us know if your issue resolves? If not, could you please provide us with the OS details, Intel DPCPP version along with the sample reproducer code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Varsha&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Feb 2022 10:10:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1359485#M1881</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-02-11T10:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1359493#M1882</link>
      <description>&lt;P&gt;Hi Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your advice - adding '--fsycl-device-only' indeed generate llvm IR file.&lt;/P&gt;
&lt;P&gt;However the file is wrong. Compiling the following simple program ( x.c )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;void foo( double *a, double *b, double *c, double d, unsigned int cnt )&lt;BR /&gt;{&lt;BR /&gt;unsigned int i;&lt;/P&gt;
&lt;P&gt;for ( i = 0; i &amp;lt; cnt; i++ )&lt;BR /&gt;{&lt;BR /&gt;c[i] = a[i] + b[i];&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;generated the attached IR file x.ll ( inside x.zip ).&lt;/P&gt;
&lt;P&gt;Performing llvm-dis on this file shows that this IR file doesn't have any code included:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;; ModuleID = 'x.ll'&lt;BR /&gt;source_filename = "x.c"&lt;BR /&gt;target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-n8:16:32:64"&lt;BR /&gt;target triple = "spir64-unknown-unknown"&lt;/P&gt;
&lt;P&gt;!llvm.module.flags = !{!0, !1}&lt;BR /&gt;!opencl.spir.version = !{!2}&lt;BR /&gt;!spirv.Source = !{!3}&lt;BR /&gt;!opencl.used.extensions = !{!4}&lt;BR /&gt;!opencl.used.optional.core.features = !{!4}&lt;BR /&gt;!opencl.compiler.options = !{!4}&lt;BR /&gt;!llvm.ident = !{!5}&lt;/P&gt;
&lt;P&gt;!0 = !{i32 1, !"wchar_size", i32 4}&lt;BR /&gt;!1 = !{i32 7, !"frame-pointer", i32 2}&lt;BR /&gt;!2 = !{i32 1, i32 2}&lt;BR /&gt;!3 = !{i32 4, i32 100000}&lt;BR /&gt;!4 = !{}&lt;BR /&gt;!5 = !{!"Intel(R) oneAPI DPC++/C++ Compiler 2022.0.0 (2022.0.0.20211123)"}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, it seems that compiler generates bit-code output. Is there a way to generate llvm assembly file ( the way clang does )?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;David&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Feb 2022 10:59:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1359493#M1882</guid>
      <dc:creator>DavidLivshin</dc:creator>
      <dc:date>2022-02-11T10:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1362427#M1899</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&lt;I&gt;Is there a way to generate llvm assembly file ( the way clang does )?&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;To generate the assembly file could you please use the below command:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;dpcpp -S -o vector.s vectoradd.cpp&lt;/LI-CODE&gt;
&lt;P&gt;For more information, please find the below link:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/oneapi-dpcpp-cpp-compiler-dev-guide-and-reference/top/compiler-setup/using-the-command-line/specifying-assembly-files.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/develop/documentation/oneapi-dpcpp-cpp-compiler-dev-guide-and-reference/top/compiler-setup/using-the-command-line/specifying-assembly-files.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 05:51:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1362427#M1899</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-02-22T05:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1362429#M1900</link>
      <description>&lt;P&gt;The question was ( and still is ) about generating LLVM assembly - .ll or .bc files.&lt;/P&gt;
&lt;P&gt;The way you suggested is indeed generates such a file, but file only without any code in it - see my previous reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;David&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 06:02:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1362429#M1900</guid>
      <dc:creator>DavidLivshin</dc:creator>
      <dc:date>2022-02-22T06:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1365442#M1920</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please find the below steps to generate the LLVM IR file:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;export IGC_ShaderDumpEnable=1
export IGC_DumpToCurrentDir=1
dpcpp &amp;lt;project_name&amp;gt;.cpp
./a.out&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please find the below screenshot for more information?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LLVMIR.png" style="width: 880px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/27219i90D505E8883E62F6/image-dimensions/880x414?v=v2&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" width="880" height="414" role="button" title="LLVMIR.png" alt="LLVMIR.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Mar 2022 08:59:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1365442#M1920</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-03-03T08:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1365936#M1931</link>
      <description>&lt;P&gt;Hi Varsha,&lt;/P&gt;
&lt;P&gt;With your command, it generates a bitcode file (I believe). And when I use llvm-dis to convert the bitcode file, it shows:&amp;nbsp;&lt;BR /&gt;llvm-dis: error: Unknown attribute kind (70) (Producer: 'Intel.oneAPI.DPCPP.Compiler_2022.0.0' Reader: 'LLVM 10.0.1')&lt;BR /&gt;Any suggestions?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Robin&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 21:34:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1365936#M1931</guid>
      <dc:creator>Roin</dc:creator>
      <dc:date>2022-03-04T21:34:20Z</dc:date>
    </item>
    <item>
      <title>Re:cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1368844#M1961</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We haven't heard back from you. Could you please provide an update on your issue?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Mar 2022 06:10:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1368844#M1961</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-03-15T06:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: Re:cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1368864#M1962</link>
      <description>&lt;P&gt;See my reply from &lt;SPAN class="DateTime"&gt;&lt;SPAN class="local-date"&gt;02-21-2022&lt;/SPAN&gt;&lt;/SPAN&gt;.&lt;/P&gt;
&lt;P&gt;The problem is real and instead of providing useless answers it would be better to report it to the relevant people with the hope that they will promptly fix it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2022 07:15:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1368864#M1962</guid>
      <dc:creator>DavidLivshin</dc:creator>
      <dc:date>2022-03-15T07:15:35Z</dc:date>
    </item>
    <item>
      <title>Re:cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1372376#M2008</link>
      <description>&lt;P&gt;Please try the following ahead-of-time compilation:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;export IGC_DumpLLVMIR=1&lt;/P&gt;&lt;P&gt;ALLDEVICES="bdw skl kbl cfl bxt glk icllp lkf ehl tgllp rkl adls gen8 gen9 gen11 gen12LP"&lt;/P&gt;&lt;P&gt;for DEVICE in $ALLDEVICES; do&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;export IGC_DumpToCustomDir=dumpIR_${DEVICE}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;dpcpp -fsycl-targets=spir64_gen -Xsycl-target-backend "-device $DEVICE" vector-add-usm.cpp&lt;/P&gt;&lt;P&gt;done&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The available devices are reported as help information for flag "-device" by&lt;/P&gt;&lt;P&gt;ocloc compile --help&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Mar 2022 10:23:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1372376#M2008</guid>
      <dc:creator>Klaus-Dieter_O_Intel</dc:creator>
      <dc:date>2022-03-28T10:23:54Z</dc:date>
    </item>
    <item>
      <title>Re:cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1377106#M2046</link>
      <description>&lt;P&gt;Please could you provide an update whether the issue was fixed using the previous advice, thanks.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 14 Apr 2022 13:04:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1377106#M2046</guid>
      <dc:creator>Klaus-Dieter_O_Intel</dc:creator>
      <dc:date>2022-04-14T13:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: Re:cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1377368#M2047</link>
      <description>&lt;P&gt;Seems the same - the .ll files generated but they don't contain code. See attached for example:&lt;/P&gt;
&lt;P&gt;x.c - file I compiled&lt;/P&gt;
&lt;P&gt;OCL_asm06727ca488e47b71_codegen.ll - generated IR .ll file&lt;/P&gt;
&lt;P&gt;x.ll - generated by clang&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 07:27:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1377368#M2047</guid>
      <dc:creator>DavidLivshin</dc:creator>
      <dc:date>2022-04-15T07:27:39Z</dc:date>
    </item>
    <item>
      <title>Re:cant generate LLVM IR using dpcpp</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1379051#M2065</link>
      <description>&lt;P&gt;Your code example does not include any SYCL offloading. The compiler driver (add flag "-v" to see the details) will compile for offloading and the host. You have to signal non-SYCL compilation explicitly with "-fno-sycl" to get the IR. Alternatively you can use the host-only compiler drivers "icpx" or "icx". Please try one of the following commands to create LLVM IR bitcode which is made human readable with llvm-dis as usual:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;dpcpp -emit-llvm -flto -o x_dpcpp.bc -c x.c -fno-sycl&lt;/P&gt;&lt;P&gt;llvm-dis -o x_dpcpp.ll x_dpcpp.bc&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;icpx -emit-llvm -flto -o x_icpx.bc -c x.c&lt;/P&gt;&lt;P&gt;llvm-dis -o x_icpx.ll x_icpx.bc&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;icx -emit-llvm -flto -o x_icx.bc -c x.c&lt;/P&gt;&lt;P&gt;llvm-dis -o x_icx.ll x_icx.bc&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;You will get full control with the Intel clang++ (internally used by all compiler drivers dpcpp, icpx, icx). It is not in the default PATH to avoid clashes with standard clang installations:&lt;/P&gt;&lt;P&gt;export PATH=/opt/intel/oneapi/compiler/latest/linux/bin-llvm:$PATH&lt;/P&gt;&lt;P&gt;which clang++&lt;/P&gt;&lt;P&gt;clang++ -emit-llvm -flto -o x_clang++.bc -c x.c&lt;/P&gt;&lt;P&gt;llvm-dis -o x_clang++.ll x_clang++.bc&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Apr 2022 10:51:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/cant-generate-LLVM-IR-using-dpcpp/m-p/1379051#M2065</guid>
      <dc:creator>Klaus-Dieter_O_Intel</dc:creator>
      <dc:date>2022-04-22T10:51:18Z</dc:date>
    </item>
  </channel>
</rss>

