Skip to content

Commit

Permalink
include "CL/sycl.hpp" -> include "sycl/sycl.hpp"
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-pavlyk committed Oct 14, 2023
1 parent cff1329 commit af0c737
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dpctl/_host_task_util.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

#include "Python.h"
#include "syclinterface/dpctl_data_types.h"
#include <CL/sycl.hpp>
#include <sycl/sycl.hpp>

int async_dec_ref(DPCTLSyclQueueRef QRef,
PyObject **obj_array,
Expand Down
2 changes: 1 addition & 1 deletion dpctl/apis/include/dpctl4pybind11.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
#pragma once

#include "dpctl_capi.h"
#include <CL/sycl.hpp>
#include <complex>
#include <memory>
#include <pybind11/pybind11.h>
#include <sycl/sycl.hpp>
#include <utility>
#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion dpctl/sycl.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from . cimport _backend as dpctl_backend


cdef extern from "CL/sycl.hpp" namespace "sycl":
cdef extern from "sycl/sycl.hpp" namespace "sycl":
cdef cppclass queue "sycl::queue":
pass

Expand Down
2 changes: 1 addition & 1 deletion dpctl/tensor/libtensor/source/reduction_over_axis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
/// This file defines functions of dpctl.tensor._tensor_impl extensions
//===--------------------------------------------------------------------===//

#include <CL/sycl.hpp>
#include <cstdint>
#include <sycl/sycl.hpp>
#include <utility>
#include <vector>

Expand Down

0 comments on commit af0c737

Please sign in to comment.