Skip to content

Commit af0c737

Browse files
include "CL/sycl.hpp" -> include "sycl/sycl.hpp"
1 parent cff1329 commit af0c737

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dpctl/_host_task_util.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
#include "Python.h"
3333
#include "syclinterface/dpctl_data_types.h"
34-
#include <CL/sycl.hpp>
34+
#include <sycl/sycl.hpp>
3535

3636
int async_dec_ref(DPCTLSyclQueueRef QRef,
3737
PyObject **obj_array,

dpctl/apis/include/dpctl4pybind11.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
#pragma once
2727

2828
#include "dpctl_capi.h"
29-
#include <CL/sycl.hpp>
3029
#include <complex>
3130
#include <memory>
3231
#include <pybind11/pybind11.h>
32+
#include <sycl/sycl.hpp>
3333
#include <utility>
3434
#include <vector>
3535

dpctl/sycl.pxd

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from . cimport _backend as dpctl_backend
2121

2222

23-
cdef extern from "CL/sycl.hpp" namespace "sycl":
23+
cdef extern from "sycl/sycl.hpp" namespace "sycl":
2424
cdef cppclass queue "sycl::queue":
2525
pass
2626

dpctl/tensor/libtensor/source/reduction_over_axis.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
/// This file defines functions of dpctl.tensor._tensor_impl extensions
2323
//===--------------------------------------------------------------------===//
2424

25-
#include <CL/sycl.hpp>
2625
#include <cstdint>
26+
#include <sycl/sycl.hpp>
2727
#include <utility>
2828
#include <vector>
2929

0 commit comments

Comments
 (0)