<?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: Re:JIT compilation + how to deploy in Intel® oneAPI DPC++/C++ Compiler</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1286318#M1244</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Rahul&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;The "Online compiling and linking" feature looks great.&amp;nbsp; Its exactly the style of compilation that I was looking for (ie #3 mentioned above).&lt;BR /&gt;&lt;BR /&gt;Looking at the DPC++ sourcecode, and other DPC++ docs, I can see that only two languages are supported at the moment&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://intel.github.io/llvm-docs/doxygen/online__compiler_8hpp_source.html" target="_blank"&gt;https://intel.github.io/llvm-docs/doxygen/online__compiler_8hpp_source.html&amp;nbsp;&lt;/A&gt;&lt;BR /&gt;(cl::sycl::INTEL::source_language&amp;nbsp;enum)&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/intel/llvm/blob/sycl/sycl/doc/extensions/OnlineCompilation/OnlineCompilation.asciidoc" target="_blank"&gt;https://github.com/intel/llvm/blob/sycl/sycl/doc/extensions/OnlineCompilation/OnlineCompilation.asciidoc&lt;/A&gt;&lt;BR /&gt;- opencl_c, // OpenCL C language&lt;BR /&gt;- cm // Intel's C-for-Media language&lt;BR /&gt;&lt;BR /&gt;Both are c-style languages.&lt;BR /&gt;So getting back to the original question, it seems that DPC++ does not provide any way to perform online compiling of C++ code?&lt;BR /&gt;Am I correct with this conclusion?&amp;nbsp; Do you know if this might be planned for some future release instead?&lt;BR /&gt;&lt;BR /&gt;thanks a lot!&lt;BR /&gt;Brian&lt;/P&gt;</description>
    <pubDate>Wed, 02 Jun 2021 00:42:11 GMT</pubDate>
    <dc:creator>Sharpe__Brian</dc:creator>
    <dc:date>2021-06-02T00:42:11Z</dc:date>
    <item>
      <title>JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1283055#M1163</link>
      <description>&lt;P&gt;Hi Intel&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Can we do runtime compiling of DPC++ code? &lt;BR /&gt;eg like CUDA/NVRTC where you can compose a chunk of C++ code at runtime into a string, and send it to something (eg a driver) for compilation + execution.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If this is possible, then I'd like to know how I can deploy such an application to a users machine.&lt;BR /&gt;Like... what would the user need to have installed on their machine to make it work?&lt;BR /&gt;I'm assuming simply an OpenCL driver or something, but I'm hoping not much else. I'm hoping I can simply ship a few DPC++ DLLs with our product so that the user is not required to install anything else.&lt;/P&gt;
&lt;P&gt;Thanks very much&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 May 2021 06:19:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1283055#M1163</guid>
      <dc:creator>Sharpe__Brian</dc:creator>
      <dc:date>2021-05-20T06:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1283521#M1170</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DPC++ supports both JIT as well as AOT compilation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kindly refer to the following links for more details:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://software.intel.com/content/www/us/en/develop/documentation/oneapi-programming-guide/top/programming-interface/compilation-flow-overview.html" target="_blank" rel="noopener"&gt;https://software.intel.com/content/www/us/en/develop/documentation/oneapi-programming-guide/top/programming-interface/compilation-flow-overview.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://link.springer.com/book/10.1007%2F978-1-4842-5574-2" target="_blank" rel="noopener"&gt;https://link.springer.com/book/10.1007%2F978-1-4842-5574-2&lt;/A&gt; (Chapter 13 of the DPC++ book).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;JIT compilation doesn't require any additional drivers. However, make sure that you have the GPU drivers installed if you're targeting an Intel GPU. (&lt;A href="https://dgpu-docs.intel.com/installation-guides/index.html" target="_blank" rel="noopener"&gt;https://dgpu-docs.intel.com/installation-guides/index.html&lt;/A&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Rahul&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 May 2021 10:31:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1283521#M1170</guid>
      <dc:creator>RahulV_intel</dc:creator>
      <dc:date>2021-05-21T10:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1283920#M1174</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Rahul&lt;/P&gt;
&lt;P&gt;Thanks a lot for the reply, but unfortunately that has not answered my question.&lt;BR /&gt;I have perhaps confused things by asking for "jit-compilation".&amp;nbsp;&amp;nbsp;&lt;BR /&gt;A better way to describe what I'm after is "runtime-compilation"&lt;/P&gt;
&lt;P&gt;So from reading the documents you suggested, it seems there are two clear ways to perform compilation with DPC++ (regarding only C++ code which is intended to execute on the device).&lt;/P&gt;
&lt;P&gt;1)&amp;nbsp; Ahead-of-time compilation&lt;/P&gt;
&lt;P&gt;So the steps are like this for device code:&lt;BR /&gt;- at compiletime the C++ source is compiled to SPIRV, then to device code.&lt;BR /&gt;- at runtime the device code is executed.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;2)&amp;nbsp; Just-in-time compilation&lt;/P&gt;
&lt;P&gt;device code steps:&lt;BR /&gt;- at compiletime the C++ source is compiled to SPIRV&lt;BR /&gt;- at runtime the SPIRV code is compiled to device code, and executed.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;What I'm after is a 3rd type of mode&lt;BR /&gt;ie&lt;BR /&gt;3)&amp;nbsp; runtime-compilation&lt;/P&gt;
&lt;P&gt;device code steps:&lt;BR /&gt;- nothing happens at compile-time&lt;BR /&gt;- at runtime the C++ source is compiled (somehow) to device code, then executed.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;examples of such systems&lt;BR /&gt;- NVRTC&amp;nbsp; (nvidias runtime compiler)&lt;BR /&gt;- OpenGL/GLSL&lt;BR /&gt;- OpenCL&lt;BR /&gt;- etc...&lt;/P&gt;
&lt;P&gt;Is this kind of model supported by DPC++ at all?&lt;BR /&gt;And if so how? what would need to be installed on the users machine to make this work?&lt;/P&gt;
&lt;P&gt;Thank you very much&lt;BR /&gt;Brian Sharpe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 May 2021 23:40:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1283920#M1174</guid>
      <dc:creator>Sharpe__Brian</dc:creator>
      <dc:date>2021-05-23T23:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1283921#M1175</link>
      <description>&lt;P&gt;Oh, and to be clear, the use-case is executing shader graphs.&lt;BR /&gt;So Imagine the user at runtime can construct an arbitrary node-graph representing a large computation.&lt;BR /&gt;I would like to translate that node-graph into C++ sourcecode at runtime, and then execute on the device.&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 24 May 2021 00:08:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1283921#M1175</guid>
      <dc:creator>Sharpe__Brian</dc:creator>
      <dc:date>2021-05-24T00:08:27Z</dc:date>
    </item>
    <item>
      <title>Re:JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1285310#M1226</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Kindly refer to the Online compiling and Linking section of the SYCL 2020 specs:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.khronos.org/registry/SYCL/specs/sycl-2020/html/sycl-2020.html#sec:bundles.compile-link" target="_blank"&gt;https://www.khronos.org/registry/SYCL/specs/sycl-2020/html/sycl-2020.html#sec:bundles.compile-link&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If you have a test case that doesn't comply with the specs above, kindly share it with us for further investigation.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 28 May 2021 05:13:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1285310#M1226</guid>
      <dc:creator>RahulV_intel</dc:creator>
      <dc:date>2021-05-28T05:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Re:JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1286318#M1244</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Rahul&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;The "Online compiling and linking" feature looks great.&amp;nbsp; Its exactly the style of compilation that I was looking for (ie #3 mentioned above).&lt;BR /&gt;&lt;BR /&gt;Looking at the DPC++ sourcecode, and other DPC++ docs, I can see that only two languages are supported at the moment&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://intel.github.io/llvm-docs/doxygen/online__compiler_8hpp_source.html" target="_blank"&gt;https://intel.github.io/llvm-docs/doxygen/online__compiler_8hpp_source.html&amp;nbsp;&lt;/A&gt;&lt;BR /&gt;(cl::sycl::INTEL::source_language&amp;nbsp;enum)&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/intel/llvm/blob/sycl/sycl/doc/extensions/OnlineCompilation/OnlineCompilation.asciidoc" target="_blank"&gt;https://github.com/intel/llvm/blob/sycl/sycl/doc/extensions/OnlineCompilation/OnlineCompilation.asciidoc&lt;/A&gt;&lt;BR /&gt;- opencl_c, // OpenCL C language&lt;BR /&gt;- cm // Intel's C-for-Media language&lt;BR /&gt;&lt;BR /&gt;Both are c-style languages.&lt;BR /&gt;So getting back to the original question, it seems that DPC++ does not provide any way to perform online compiling of C++ code?&lt;BR /&gt;Am I correct with this conclusion?&amp;nbsp; Do you know if this might be planned for some future release instead?&lt;BR /&gt;&lt;BR /&gt;thanks a lot!&lt;BR /&gt;Brian&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 00:42:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1286318#M1244</guid>
      <dc:creator>Sharpe__Brian</dc:creator>
      <dc:date>2021-06-02T00:42:11Z</dc:date>
    </item>
    <item>
      <title>Re:JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1287721#M1270</link>
      <description>&lt;P&gt;Hi Brian,&lt;/P&gt;&lt;P&gt;I will make a feature request to the developers but would like to know whether you are actually in a scenario which requires this urgently. In that case it would be easier for us to push the implementation faster.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Subarna&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Jun 2021 13:34:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1287721#M1270</guid>
      <dc:creator>Subarnarek_G_Intel</dc:creator>
      <dc:date>2021-06-07T13:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: Re:JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1288596#M1282</link>
      <description>&lt;P&gt;Hi Subarna&lt;BR /&gt;&lt;BR /&gt;Yes this is something we require very soon.&lt;BR /&gt;We are currently making key design decisions for how our product will function, and this feature could be a show-stopper for us using DPC++ or not.&amp;nbsp; To be honest, it would be great to have the chance to speak to a developer directly sometime so we could get their thoughts on this feature, and what its possible solution could look like once implemented.&lt;BR /&gt;&lt;BR /&gt;thanks a lot&lt;BR /&gt;Brian Sharpe&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jun 2021 00:32:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1288596#M1282</guid>
      <dc:creator>Sharpe__Brian</dc:creator>
      <dc:date>2021-06-10T00:32:51Z</dc:date>
    </item>
    <item>
      <title>Re:JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1289604#M1303</link>
      <description>&lt;P&gt;Hi Brian,&lt;/P&gt;&lt;P&gt;I am not sure whether you can speak with the developers directly but what I can do is I can bring up all the doubts that you want clarity about to the team and get your queries answered.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Subarna&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2021 10:57:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1289604#M1303</guid>
      <dc:creator>Subarnarek_G_Intel</dc:creator>
      <dc:date>2021-06-14T10:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: Re:JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1289802#M1306</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Subarna&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Sure, whatever you can do for us would be great &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;BR /&gt;So to summarize:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Our use-case:&lt;/STRONG&gt;&lt;BR /&gt;- We write a GPU-based renderer that needs to evaluate user-created node graphs at runtime (ie shaders)&lt;BR /&gt;- Our codebase (as well as upcoming DPC++ based Embree I assume) is all in C++&lt;BR /&gt;- We generate C++ code from the node-graph at runtime, and need to compile and execute at runtime as well.&lt;BR /&gt;- Our application comes as a complete package, and needs to be able to install and run on a user's machine with minimal install steps (ie be self-contained).&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;What we need from DPC++:&lt;/STRONG&gt;&lt;BR /&gt;-&amp;nbsp;&lt;SPAN&gt;The "Online compiling and linking" feature looks ideal&lt;BR /&gt;- We require it to support C++&amp;nbsp; (currently only C)&lt;BR /&gt;- We require minimal installation steps, in order to deploy to a users machine (eg only our application, and a graphics driver installed.&amp;nbsp; &amp;nbsp;we do not want to require the user to install LLVM/Clang on their computer.&amp;nbsp; But some extra DLLs shipped with our application would be fine)&lt;BR /&gt;&lt;BR /&gt;ps:&amp;nbsp; If you need an example, NVidia/Cuda already has this feature, which we are using just fine for NVidia-based GPUs.&amp;nbsp; It's called NVRTC.&lt;BR /&gt;&lt;BR /&gt;Does the developer foresee this kind of thing ever being part of DPC++?&lt;BR /&gt;And if so, what kind of timeframe do they think it might be?&amp;nbsp; (eg 2021?&amp;nbsp; 2022?&amp;nbsp; never?)&lt;BR /&gt;&lt;BR /&gt;thanks a lot&lt;BR /&gt;Brian Sharpe&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 00:05:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1289802#M1306</guid>
      <dc:creator>Sharpe__Brian</dc:creator>
      <dc:date>2021-06-15T00:05:20Z</dc:date>
    </item>
    <item>
      <title>Re:JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1298748#M1415</link>
      <description>&lt;P&gt;Hi Brian,&lt;/P&gt;&lt;P&gt;Conveyed all your requirements to the engineering. Will update you with their response shortly.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Jul 2021 06:48:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1298748#M1415</guid>
      <dc:creator>Subarnarek_G_Intel</dc:creator>
      <dc:date>2021-07-15T06:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1298998#M1419</link>
      <description>&lt;P&gt;Thanks very much &lt;SPAN&gt;Subarna&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2021 00:04:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1298998#M1419</guid>
      <dc:creator>Sharpe__Brian</dc:creator>
      <dc:date>2021-07-16T00:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1311083#M1527</link>
      <description>&lt;P&gt;I'm interested in the same functionallity as well. Is there any update available already?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 10:58:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1311083#M1527</guid>
      <dc:creator>Daniel_D</dc:creator>
      <dc:date>2021-08-31T10:58:09Z</dc:date>
    </item>
    <item>
      <title>Re:JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1379454#M2071</link>
      <description>&lt;P&gt;Hi Brian,&lt;/P&gt;&lt;P&gt;We have identified a protentional gap of implementation of runtime compilation The Feature Request has been taken up by the Engineering team. Customers will be informed as soon as the feature is out!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Subarna&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Apr 2022 07:17:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1379454#M2071</guid>
      <dc:creator>Subarnarek_G_Intel</dc:creator>
      <dc:date>2022-04-25T07:17:21Z</dc:date>
    </item>
    <item>
      <title>Re:JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1379461#M2072</link>
      <description>&lt;P&gt;&lt;I style="font-family: Calibri, sans-serif; font-size: 11pt;"&gt;This issue has been resolved and we will no longer respond to this thread.&amp;nbsp;If you require additional assistance from Intel, please start a new thread.&amp;nbsp;Any further interaction in this thread will be considered community only&lt;/I&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Apr 2022 07:42:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1379461#M2072</guid>
      <dc:creator>Subarnarek_G_Intel</dc:creator>
      <dc:date>2022-04-25T07:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: Re:JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1379654#M2073</link>
      <description>&lt;P&gt;Awesome! &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;BR /&gt;thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2022 01:38:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1379654#M2073</guid>
      <dc:creator>Sharpe__Brian</dc:creator>
      <dc:date>2022-04-26T01:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1616910#M3969</link>
      <description>&lt;P&gt;Hi Daniel,&lt;/P&gt;
&lt;P&gt;It is available on oneAPI 2024.2 release. Please try it out and let us know your feedback.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Jyotsna&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 07:24:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1616910#M3969</guid>
      <dc:creator>JyotsnaK_Intel</dc:creator>
      <dc:date>2024-07-22T07:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Re:JIT compilation + how to deploy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1616913#M3970</link>
      <description>&lt;P&gt;Hi Brian,&lt;/P&gt;
&lt;P&gt;Please try out oneAPI 2024.2 release and let us know your feedback. We have implemented this feature.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Jyotsna&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 07:25:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/JIT-compilation-how-to-deploy/m-p/1616913#M3970</guid>
      <dc:creator>JyotsnaK_Intel</dc:creator>
      <dc:date>2024-07-22T07:25:04Z</dc:date>
    </item>
  </channel>
</rss>

