We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bc3c4d commit 22d59d7Copy full SHA for 22d59d7
examples/c/py_sycl_ls/setup.py
@@ -15,7 +15,6 @@
15
# limitations under the License.
16
17
import os.path
18
-import sysconfig
19
20
from setuptools import Extension, setup
21
@@ -41,7 +40,6 @@
41
40
],
42
include_dirs=[
43
dpctl.get_include(),
44
- os.path.join(sysconfig.get_paths()["include"], ".."),
45
46
library_dirs=[
47
os.path.join(dpctl.get_include(), ".."),
examples/c/py_sycl_ls/src/py_sycl-ls.c
@@ -27,9 +27,7 @@
27
// clang-format off
28
#include "Python.h"
29
#include "dpctl_capi.h"
30
-#include "syclinterface/dpctl_sycl_platform_interface.h"
31
-#include "syclinterface/dpctl_sycl_platform_manager.h"
32
-#include "syclinterface/dpctl_utils.h"
+#include "dpctl_sycl_interface.h"
33
// clang-format on
34
35
PyObject *sycl_ls(PyObject *self_unused, PyObject *args)
0 commit comments