<?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: Code with SYCL and Pybind not compiling. in Intel® oneAPI DPC++/C++ Compiler</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1288408#M1279</link>
    <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/157023"&gt;@VidyalathaB_Intel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using oneapi 2021.1.0. Is there a way to update oneapi directly rather than reinstalling it again?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am supposing using the old version might be the issue.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Jun 2021 10:02:35 GMT</pubDate>
    <dc:creator>Nikhil_T</dc:creator>
    <dc:date>2021-06-09T10:02:35Z</dc:date>
    <item>
      <title>Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1287247#M1266</link>
      <description>&lt;P&gt;Hi there!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to compile a DCP++ code with pybind. The code seems to get stuck while compiling&amp;nbsp; and generates the following warnings in the output window.:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CODE-----------------------------------------------------------------------------------------------------&lt;/P&gt;
&lt;P&gt;#include &amp;lt;CL/sycl.hpp&amp;gt;&lt;BR /&gt;#include &amp;lt;vector&amp;gt;&lt;BR /&gt;#include &amp;lt;oneapi/mkl.hpp&amp;gt;&lt;BR /&gt;#include &amp;lt;pybind11/pybind11.h&amp;gt;&lt;BR /&gt;#include &amp;lt;pybind11/stl.h&amp;gt;&lt;BR /&gt;#include &amp;lt;pybind11/stl_bind.h&amp;gt;&lt;BR /&gt;#include &amp;lt;pybind11/numpy.h&amp;gt;&lt;/P&gt;
&lt;P&gt;PYBIND11_MAKE_OPAQUE(std::vector&amp;lt;double&amp;gt;);&lt;BR /&gt;PYBIND11_MAKE_OPAQUE(std::vector&amp;lt;int&amp;gt;);&lt;/P&gt;
&lt;P&gt;using namespace sycl;&lt;BR /&gt;using namespace oneapi::mkl::sparse;&lt;BR /&gt;namespace py = pybind11;&lt;/P&gt;
&lt;P&gt;struct csr_matrix_elements&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; std::vector&amp;lt;int&amp;gt; row;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; std::vector&amp;lt;int&amp;gt;col;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; std::vector&amp;lt;double&amp;gt; values;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; matrix_handle_t matrix_handle;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; int size;&lt;BR /&gt;};&lt;/P&gt;
&lt;P&gt;csr_matrix_elements create_sparse_matrix_handle(py::array_t&amp;lt;int&amp;gt;&amp;amp; row, py::array_t&amp;lt;int&amp;gt;&amp;amp; col, py::array_t&amp;lt;double&amp;gt;&amp;amp; vals, int&amp;amp; size) {&lt;/P&gt;
&lt;P&gt;//copy the py vectors to std::vectors&lt;BR /&gt;std::vector&amp;lt;int&amp;gt; row_vec(row.size());&lt;BR /&gt;std::vector&amp;lt;int&amp;gt; col_vec(col.size());&lt;BR /&gt;std::vector&amp;lt;double&amp;gt; vals_vec(vals.size());&lt;BR /&gt;std::memcpy(row_vec.data(), row.data(), row.size() * sizeof(int));&lt;BR /&gt;std::memcpy(col_vec.data(), col.data(), col.size() * sizeof(int));&lt;BR /&gt;std::memcpy(vals_vec.data(), vals.data(), vals.size() * sizeof(double));&lt;/P&gt;
&lt;P&gt;// Create a matrix entity &lt;BR /&gt;csr_matrix_elements matrix;&lt;BR /&gt;matrix.row = row_vec;&lt;BR /&gt;matrix.col = col_vec;&lt;BR /&gt;matrix.values = vals_vec;&lt;BR /&gt;matrix.size = size;&lt;BR /&gt;init_matrix_handle(&amp;amp;matrix.matrix_handle);&lt;BR /&gt;set_csr_data(matrix.matrix_handle, matrix.size, matrix.size, oneapi::mkl::index_base::zero, matrix.row.data(),&lt;BR /&gt;matrix.col.data(), matrix.values.data());&lt;BR /&gt;return matrix;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;py::array_t&amp;lt;double&amp;gt; jacobirelaxation(csr_matrix_elements &amp;amp;D_inv , csr_matrix_elements &amp;amp;R_omega , py::array_t&amp;lt;double&amp;gt;&amp;amp; b) {&lt;/P&gt;
&lt;P&gt;std::vector&amp;lt;double&amp;gt; b_vec(b.size());&lt;BR /&gt;std::memcpy(b_vec.data(), b.data(), b.size() * sizeof(double));&lt;BR /&gt;cl::sycl::queue q;&lt;BR /&gt;const float omega = 4.0 / 5.0;&lt;BR /&gt;std::vector&amp;lt;double&amp;gt; ans(D_inv.size, 0.0);&lt;BR /&gt;std::vector&amp;lt;double&amp;gt; prod_1(D_inv.size, 0.0);&lt;BR /&gt;std::vector&amp;lt;double&amp;gt; prod_2(D_inv.size, 0.0);&lt;/P&gt;
&lt;P&gt;cl::sycl::event R_V_mul_done = cl::sycl::event();&lt;BR /&gt;cl::sycl::event D_inv_F_done = cl::sycl::event(); // Replace it by a vector to vector multiplication&lt;BR /&gt;cl::sycl::event add_done = cl::sycl::event();&lt;/P&gt;
&lt;P&gt;for (int i = 0; i &amp;lt; 10; i++) {&lt;BR /&gt;R_V_mul_done = gemv(q, oneapi::mkl::transpose::nontrans, 1.0, R_omega.matrix_handle,&lt;BR /&gt;ans.data(), 0.0, prod_1.data());&lt;BR /&gt;D_inv_F_done = gemv(q, oneapi::mkl::transpose::nontrans, omega, D_inv.matrix_handle,&lt;BR /&gt;b_vec.data(), 0.0, prod_2.data());&lt;BR /&gt;add_done = oneapi::mkl::vm::add(q, D_inv.size, prod_1.data(), prod_2.data(), ans.data(),&lt;BR /&gt;{ R_V_mul_done , D_inv_F_done });&lt;BR /&gt;}&lt;BR /&gt;// cast the result back to numpy array&lt;BR /&gt;auto result = py::array_t&amp;lt;double&amp;gt;(ans.size());&lt;BR /&gt;auto result_buffer = result.request();&lt;BR /&gt;double* result_ptr = (double*)result_buffer.ptr;&lt;BR /&gt;std::memcpy(result_ptr, ans.data(), ans.size() * sizeof(double));&lt;BR /&gt;return result;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;PYBIND11_MODULE(smoother_sycl, m) {&lt;BR /&gt;py::class_&amp;lt;csr_matrix_elements&amp;gt;(m, "csr_martix_elements")&lt;BR /&gt;.def(py::init&amp;lt;&amp;gt;());&lt;BR /&gt;m.def("smoother_jacobi", &amp;amp;jacobirelaxation);&lt;BR /&gt;m.def("create_csr_matrix", &amp;amp;create_sparse_matrix_handle);&lt;BR /&gt;//py::bind_vector&amp;lt;std::vector&amp;gt;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CODE ENDS-----------------------------------------------------------------------------------------------&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Build started...&lt;BR /&gt;1&amp;gt;------ Build started: Project: Smoother_test_pybind, Configuration: Debug x64 ------&lt;BR /&gt;1&amp;gt;In file included from Source.cpp:4:&lt;BR /&gt;1&amp;gt;C:\\Users\\nikhi\\AppData\\Local\\Programs\\Python\\Python37\\include\pybind11/pybind11.h(245,22): : warning : 'strdup' is deprecated: The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. See online help for details. [-Wdeprecated-declarations]&lt;BR /&gt;1&amp;gt; auto t = strdup(s);&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h(535,20): note: 'strdup' has been explicitly marked deprecated here&lt;BR /&gt;1&amp;gt; _Check_return_ _CRT_NONSTDC_DEPRECATE(_strdup)&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h(335,50): note: expanded from macro '_CRT_NONSTDC_DEPRECATE'&lt;BR /&gt;1&amp;gt; #define _CRT_NONSTDC_DEPRECATE(_NewName) _CRT_DEPRECATE_TEXT( \&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\vcruntime.h(306,47): note: expanded from macro '_CRT_DEPRECATE_TEXT'&lt;BR /&gt;1&amp;gt;#define _CRT_DEPRECATE_TEXT(_Text) __declspec(deprecated(_Text))&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;In file included from Source.cpp:4:&lt;BR /&gt;1&amp;gt;C:\\Users\\nikhi\\AppData\\Local\\Programs\\Python\\Python37\\include\pybind11/pybind11.h(488,61): : warning : 'strdup' is deprecated: The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. See online help for details. [-Wdeprecated-declarations]&lt;BR /&gt;1&amp;gt; func-&amp;gt;m_ml-&amp;gt;ml_doc = signatures.empty() ? nullptr : strdup(signatures.c_str());&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h(535,20): note: 'strdup' has been explicitly marked deprecated here&lt;BR /&gt;1&amp;gt; _Check_return_ _CRT_NONSTDC_DEPRECATE(_strdup)&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h(335,50): note: expanded from macro '_CRT_NONSTDC_DEPRECATE'&lt;BR /&gt;1&amp;gt; #define _CRT_NONSTDC_DEPRECATE(_NewName) _CRT_DEPRECATE_TEXT( \&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\vcruntime.h(306,47): note: expanded from macro '_CRT_DEPRECATE_TEXT'&lt;BR /&gt;1&amp;gt;#define _CRT_DEPRECATE_TEXT(_Text) __declspec(deprecated(_Text))&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;2 warnings generated.&lt;BR /&gt;1&amp;gt;In file included from Source.cpp:4:&lt;BR /&gt;1&amp;gt;C:\\Users\\nikhi\\AppData\\Local\\Programs\\Python\\Python37\\include\pybind11/pybind11.h(245,22): : warning : 'strdup' is deprecated: The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. See online help for details. [-Wdeprecated-declarations]&lt;BR /&gt;1&amp;gt; auto t = strdup(s);&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h(535,20): note: 'strdup' has been explicitly marked deprecated here&lt;BR /&gt;1&amp;gt; _Check_return_ _CRT_NONSTDC_DEPRECATE(_strdup)&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h(335,50): note: expanded from macro '_CRT_NONSTDC_DEPRECATE'&lt;BR /&gt;1&amp;gt; #define _CRT_NONSTDC_DEPRECATE(_NewName) _CRT_DEPRECATE_TEXT( \&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\vcruntime.h(306,47): note: expanded from macro '_CRT_DEPRECATE_TEXT'&lt;BR /&gt;1&amp;gt;#define _CRT_DEPRECATE_TEXT(_Text) __declspec(deprecated(_Text))&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;In file included from Source.cpp:4:&lt;BR /&gt;1&amp;gt;C:\\Users\\nikhi\\AppData\\Local\\Programs\\Python\\Python37\\include\pybind11/pybind11.h(488,61): : warning : 'strdup' is deprecated: The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. See online help for details. [-Wdeprecated-declarations]&lt;BR /&gt;1&amp;gt; func-&amp;gt;m_ml-&amp;gt;ml_doc = signatures.empty() ? nullptr : strdup(signatures.c_str());&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h(535,20): note: 'strdup' has been explicitly marked deprecated here&lt;BR /&gt;1&amp;gt; _Check_return_ _CRT_NONSTDC_DEPRECATE(_strdup)&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h(335,50): note: expanded from macro '_CRT_NONSTDC_DEPRECATE'&lt;BR /&gt;1&amp;gt; #define _CRT_NONSTDC_DEPRECATE(_NewName) _CRT_DEPRECATE_TEXT( \&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\vcruntime.h(306,47): note: expanded from macro '_CRT_DEPRECATE_TEXT'&lt;BR /&gt;1&amp;gt;#define _CRT_DEPRECATE_TEXT(_Text) __declspec(deprecated(_Text))&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;2 warnings generated.&lt;BR /&gt;1&amp;gt;In file included from Source.cpp:4:&lt;BR /&gt;1&amp;gt;C:\\Users\\nikhi\\AppData\\Local\\Programs\\Python\\Python37\\include\pybind11/pybind11.h(245,22): : warning : 'strdup' is deprecated: The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. See online help for details. [-Wdeprecated-declarations]&lt;BR /&gt;1&amp;gt; auto t = strdup(s);&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h(535,20): note: 'strdup' has been explicitly marked deprecated here&lt;BR /&gt;1&amp;gt; _Check_return_ _CRT_NONSTDC_DEPRECATE(_strdup)&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h(335,50): note: expanded from macro '_CRT_NONSTDC_DEPRECATE'&lt;BR /&gt;1&amp;gt; #define _CRT_NONSTDC_DEPRECATE(_NewName) _CRT_DEPRECATE_TEXT( \&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\vcruntime.h(306,47): note: expanded from macro '_CRT_DEPRECATE_TEXT'&lt;BR /&gt;1&amp;gt;#define _CRT_DEPRECATE_TEXT(_Text) __declspec(deprecated(_Text))&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;In file included from Source.cpp:4:&lt;BR /&gt;1&amp;gt;C:\\Users\\nikhi\\AppData\\Local\\Programs\\Python\\Python37\\include\pybind11/pybind11.h(488,61): : warning : 'strdup' is deprecated: The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. See online help for details. [-Wdeprecated-declarations]&lt;BR /&gt;1&amp;gt; func-&amp;gt;m_ml-&amp;gt;ml_doc = signatures.empty() ? nullptr : strdup(signatures.c_str());&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\string.h(535,20): note: 'strdup' has been explicitly marked deprecated here&lt;BR /&gt;1&amp;gt; _Check_return_ _CRT_NONSTDC_DEPRECATE(_strdup)&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\corecrt.h(335,50): note: expanded from macro '_CRT_NONSTDC_DEPRECATE'&lt;BR /&gt;1&amp;gt; #define _CRT_NONSTDC_DEPRECATE(_NewName) _CRT_DEPRECATE_TEXT( \&lt;BR /&gt;1&amp;gt; ^&lt;BR /&gt;1&amp;gt;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\include\vcruntime.h(306,47): note: expanded from macro '_CRT_DEPRECATE_TEXT'&lt;BR /&gt;1&amp;gt;#define _CRT_DEPRECATE_TEXT(_Text) __declspec(deprecated(_Text))&lt;BR /&gt;1&amp;gt; ^&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;Can anyone help me with some sort of solution as to why is this happening. I have linked the necessary folders of pybind and python and have followed the procedure as mentioned on Visual Studio Website.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 14:39:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1287247#M1266</guid>
      <dc:creator>Nikhil_T</dc:creator>
      <dc:date>2021-06-04T14:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1287713#M1268</link>
      <description>&lt;P&gt;Hi Nikhil,&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to us.&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt; &lt;I&gt;The code seems to get stuck while compiling&amp;nbsp;and generates the following warnings&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;We tried to reproduce the issue from our end with the code which you have provided but we didn't get any such deprecated warnings&amp;nbsp;&lt;/P&gt;
&lt;P&gt;we tried it with latest intel oneAPI Base Toolkit version 2021.2.0 and Microsoft Visual Studio 2019&lt;/P&gt;
&lt;P&gt;Version 16.9.0&lt;/P&gt;
&lt;P&gt;To configure the project, please follow below mentioned configurations&lt;/P&gt;
&lt;P&gt;&amp;gt; Enable the oneMKL library under ----&amp;gt; configuration properties &amp;gt;&amp;gt; Intel Libraries for oneAPI&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt; Provide the path of pybind11 &amp;amp; python header files under ----&amp;gt; configuration properties &amp;gt;&amp;gt; VC++ Directories &amp;gt;&amp;gt; Include Directories&lt;/P&gt;
&lt;P&gt;And the path for python library files under ----&amp;gt; configuration properties &amp;gt;&amp;gt; Linker &amp;gt;&amp;gt; General &amp;gt;&amp;gt; Additional library Directories&lt;/P&gt;
&lt;P&gt;Kindly refer the attached project file for further clarifications.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Vidya.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2021 13:26:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1287713#M1268</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2021-06-07T13:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1288205#M1275</link>
      <description>&lt;P&gt;Thank you for your reply. I will check and get back to you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 19:58:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1288205#M1275</guid>
      <dc:creator>Nikhil_T</dc:creator>
      <dc:date>2021-06-08T19:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1288408#M1279</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/157023"&gt;@VidyalathaB_Intel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using oneapi 2021.1.0. Is there a way to update oneapi directly rather than reinstalling it again?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am supposing using the old version might be the issue.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jun 2021 10:02:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1288408#M1279</guid>
      <dc:creator>Nikhil_T</dc:creator>
      <dc:date>2021-06-09T10:02:35Z</dc:date>
    </item>
    <item>
      <title>Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1288639#M1284</link>
      <description>&lt;P&gt;Hi Nikhil, &lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; &lt;I&gt;Is there a way to update oneAPI directly rather than reinstalling it again?&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Yes, you can update oneAPI directly.&lt;/P&gt;&lt;P&gt;Go to the directory where oneAPI is installed and check for installer from there you can update to the latest version of oneAPI&lt;/P&gt;&lt;P&gt;Eg: Path: C:\Program Files (x86)\Intel\oneAPI\Installer&lt;/P&gt;&lt;P&gt;After opening installer, by clicking on installer.exe you will find an option to update so that you can directly update to the latest version.&lt;/P&gt;&lt;P&gt;Please try this and let us know if the issue still persists.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Jun 2021 03:25:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1288639#M1284</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2021-06-10T03:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1289226#M1294</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/157023"&gt;@VidyalathaB_Intel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am having issues with using oneMKL I guess and not pybind11. I tried running a simple oneMKL code and included oneMKL by setting the&amp;nbsp;&lt;STRONG&gt;use mkl to parallel&amp;nbsp;&lt;/STRONG&gt;in properties.&amp;nbsp; The following thing happens everytime:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Error LNK2038 mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in TestingOneMkl-272333.obj TestingOneMkl D:\Camb research\Multigrid Code\TEMP\TestingOneMkl\mkl_tbb_thread.lib(vml_tbb_threading_templates.obj) : 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and the one as :&lt;/P&gt;
&lt;P&gt;Severity Code Description Project File Line Suppression State&lt;BR /&gt;Error linker command failed with exit code 1319 (use -v to see invocation) TestingOneMkl D:\Camb research\Multigrid Code\TEMP\TestingOneMkl\dpcpp: 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have set use MKL to Parallel mode. and rest settings as default. I am now using oneapi 2021.2.0 and VS 2019. Still getting the errors&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2021 21:56:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1289226#M1294</guid>
      <dc:creator>Nikhil_T</dc:creator>
      <dc:date>2021-06-11T21:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1289311#M1295</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/157023"&gt;@VidyalathaB_Intel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried using the settings as there in the file. I am getting the following errors and warnings:&lt;/P&gt;
&lt;P&gt;1)&amp;nbsp;Severity Code Description Project File Line Suppression State&lt;BR /&gt;Error LNK1561 entry point must be defined Smoother_test_pybind D:\Camb research\Multigrid Code\SYCL_PYBIND\Smoother_test_pybind\LINK : 1&lt;/P&gt;
&lt;P&gt;2)&amp;nbsp;Severity Code Description Project File Line Suppression State&lt;BR /&gt;Error linker command failed with exit code 1561 (use -v to see invocation) Smoother_test_pybind D:\Camb research\Multigrid Code\SYCL_PYBIND\Smoother_test_pybind\dpcpp: 1.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These are in the release mode.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Debug mode:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Severity Code Description Project File Line Suppression State&lt;BR /&gt;Error LNK2038 mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in Source-a42757.obj Smoother_test_pybind D:\Camb research\Multigrid Code\SYCL_PYBIND\Smoother_test_pybind\mkl_sycl.lib(init_matrix_handle_r_s_i8_sycl_usm.obj) : 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and multiple warnings like those. Also please note that I am trying to build a .pyd file so that I can import it in python.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jun 2021 18:46:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1289311#M1295</guid>
      <dc:creator>Nikhil_T</dc:creator>
      <dc:date>2021-06-12T18:46:26Z</dc:date>
    </item>
    <item>
      <title>Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1289575#M1297</link>
      <description>&lt;P&gt;Hi Nikhil,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&lt;I&gt;&amp;nbsp;'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug'&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please try the following configurations&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Configuration properties ----&amp;gt;&amp;gt; DPC++ ----&amp;gt;&amp;gt; Code Generation ----&amp;gt;&amp;gt; Runtime Library ----&amp;gt;&amp;gt; select "Multi-threaded DLL (/MD)"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;nbsp;&lt;I&gt;entry point must be defined Smoother_test_pybind&amp;nbsp;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;You will get this error if &lt;B&gt;main&lt;/B&gt; function is missing in your code. so try adding main() function to the source code.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please try this and let us know if the issue still persists.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Jun 2021 09:24:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1289575#M1297</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2021-06-14T09:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1289640#M1305</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/157023"&gt;@VidyalathaB_Intel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried compiling this simple code with one function and no main function. It was compiling without any errors and I was able to import the package (.pyd file) in python and perform the necessary things. am I missing any thing in the code mentioned in the original doubt?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;#include &amp;lt;pybind11/pybind11.h&amp;gt;&lt;BR /&gt;#include &amp;lt;pybind11/stl_bind.h&amp;gt;&lt;BR /&gt;#include &amp;lt;pybind11/stl.h&amp;gt;&lt;BR /&gt;#include &amp;lt;pybind11/numpy.h&amp;gt;&lt;BR /&gt;#include &amp;lt;vector&amp;gt;&lt;BR /&gt;#include &amp;lt;iostream&amp;gt;&lt;BR /&gt;#include &amp;lt;unordered_map&amp;gt;&lt;/P&gt;
&lt;P&gt;namespace py = pybind11;&lt;/P&gt;
&lt;P&gt;std::vector&amp;lt;int&amp;gt; check_numpy(py::array_t&amp;lt;int&amp;gt;&amp;amp; py_array) {&lt;BR /&gt;std::vector&amp;lt;int&amp;gt; temp_vec(py_array.data(), py_array.data() + py_array.size());&lt;BR /&gt;return temp_vec;&lt;BR /&gt;}&lt;BR /&gt;PYBIND11_MODULE(SYCL, m) {&lt;BR /&gt;m.def("push", &amp;amp;check_numpy);&lt;BR /&gt;py::bind_vector&amp;lt;std::vector&amp;lt;int&amp;gt;&amp;gt;(m, "IntVec");&lt;BR /&gt;//py::implicitly_convertible&amp;lt;py::list, std::vector&amp;lt;int&amp;gt;&amp;gt;();&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I forgot to mention that in the original code, I am building a&amp;nbsp; DPC++ dll project with the settings mentioned on the microsoft webpage about linking the VS2019 with pybind11. Could you send me the settings that you mentioned worked for you while compiling the code&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/157023"&gt;@VidyalathaB_Intel&lt;/a&gt;&amp;nbsp;? thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 12:47:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1289640#M1305</guid>
      <dc:creator>Nikhil_T</dc:creator>
      <dc:date>2021-06-15T12:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1290127#M1307</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/157023"&gt;@VidyalathaB_Intel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apparently, it seems like when I am building a normal C++ project, with the same settings, i am able to build it and use the .pyd file. But when I am building a DPC++ application (in order to use SYCL and oneMKL), it is giving the error as&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Severity Code Description Project File Line Suppression State&lt;BR /&gt;Error LNK1561 entry point must be defined.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you provide me with the settings that can allow me to build the code mentioned in the original message?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2021 21:52:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1290127#M1307</guid>
      <dc:creator>Nikhil_T</dc:creator>
      <dc:date>2021-06-15T21:52:33Z</dc:date>
    </item>
    <item>
      <title>Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1290364#M1310</link>
      <description>&lt;P&gt;Hi Nikhil,&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&lt;I&gt; Error LNK1561 entry point must be defined.&lt;/I&gt;&lt;/P&gt;&lt;P&gt;You need to change the configuration type to .dll in visual studio configuration properties.&lt;/P&gt;&lt;P&gt;Configuration properties &amp;gt;&amp;gt; General &amp;gt;&amp;gt; configuration type &amp;gt;&amp;gt; select Dynamic Library (.dll)&lt;/P&gt;&lt;P&gt;This helps to build your project successfully without any such errors.&lt;/P&gt;&lt;P&gt;Because when building DLLs in Visual Studio, it automatically links the default entry point (_DllMainCRTStartup) which is supplied by VCRuntime.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please note that dynamic-link library (DLL) acts as a shared library of functions and resources.&lt;/P&gt;&lt;P&gt;If you want to create an executable file for your code you need to change the configuration type to .exe then you will get the above mentioned error&amp;nbsp;&lt;/P&gt;&lt;P&gt;for which we have suggested you to add main function to your source code.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Jun 2021 12:59:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1290364#M1310</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2021-06-16T12:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1290995#M1318</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/157023"&gt;@VidyalathaB_Intel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using the settings to build a dll only. Still I am getting the same errors. Below are the screenshots of the settings for the same. I have attached it in a form of zip file.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 07:52:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1290995#M1318</guid>
      <dc:creator>Nikhil_T</dc:creator>
      <dc:date>2021-06-18T07:52:27Z</dc:date>
    </item>
    <item>
      <title>Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1293196#M1332</link>
      <description>&lt;P&gt;Hi Nikhil,&lt;/P&gt;&lt;P&gt;Thanks for sharing the screenshots.&lt;/P&gt;&lt;P&gt;We are looking into this issue internally. we will get back to you soon.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Jun 2021 07:55:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1293196#M1332</guid>
      <dc:creator>VidyalathaB_Intel</dc:creator>
      <dc:date>2021-06-25T07:55:07Z</dc:date>
    </item>
    <item>
      <title>Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1294673#M1346</link>
      <description>&lt;P&gt;Hi Nikhil,&lt;/P&gt;&lt;P&gt;I am not sure whether this feature is enabled for DPC++. I will check with the Engineering and if it is not enabled I would talk with the teams of the chances of implementing this feature. &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>Wed, 30 Jun 2021 11:39:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1294673#M1346</guid>
      <dc:creator>Subarnarek_G_Intel</dc:creator>
      <dc:date>2021-06-30T11:39:53Z</dc:date>
    </item>
    <item>
      <title>Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1294743#M1353</link>
      <description>&lt;P&gt;It would be great if you can mention the motivation behind trying this experiment? Also let me know if &lt;A href="https://intelpython.github.io/dpctl/latest/index.html" rel="noopener noreferrer" target="_blank"&gt;https://intelpython.github.io/dpctl/latest/index.html&lt;/A&gt; helps.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 30 Jun 2021 14:38:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1294743#M1353</guid>
      <dc:creator>Subarnarek_G_Intel</dc:creator>
      <dc:date>2021-06-30T14:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1295417#M1371</link>
      <description>&lt;P&gt;Which feature are you asking about here? Is it linking pybind with DPC++?&lt;/P&gt;
&lt;P&gt;Also, its a research project where I am trying to build a solver that also has a python interface. And hence, I am generating a python module for it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jul 2021 12:32:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1295417#M1371</guid>
      <dc:creator>Nikhil_T</dc:creator>
      <dc:date>2021-07-02T12:32:51Z</dc:date>
    </item>
    <item>
      <title>Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1297787#M1402</link>
      <description>&lt;P&gt;Thanks Nikhil. Did the document I provided help you in any way?&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Jul 2021 11:10:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1297787#M1402</guid>
      <dc:creator>Subarnarek_G_Intel</dc:creator>
      <dc:date>2021-07-12T11:10:19Z</dc:date>
    </item>
    <item>
      <title>Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1297844#M1406</link>
      <description>&lt;P&gt;Also I think from the documentation of pybind11 &lt;A href="https://pypi.org/project/pybind11/" target="_blank"&gt;https://pypi.org/project/pybind11/&lt;/A&gt; Supported compilers doesn't include DPC++. Which version of pybind are you using currently?&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Jul 2021 15:01:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1297844#M1406</guid>
      <dc:creator>Subarnarek_G_Intel</dc:creator>
      <dc:date>2021-07-12T15:01:06Z</dc:date>
    </item>
    <item>
      <title>Re:Code with SYCL and Pybind not compiling.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1302998#M1447</link>
      <description>&lt;P&gt;Closing the case as there was no response from the customer. &lt;/P&gt;&lt;P&gt;&lt;I style="font-family: Calibri, sans-serif; font-size: 11pt;"&gt;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, 02 Aug 2021 12:05:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/Code-with-SYCL-and-Pybind-not-compiling/m-p/1302998#M1447</guid>
      <dc:creator>Subarnarek_G_Intel</dc:creator>
      <dc:date>2021-08-02T12:05:23Z</dc:date>
    </item>
  </channel>
</rss>

