File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11
11
12
12
#if defined(__cplusplus)
13
13
#if defined(SYCL_LANGUAGE_VERSION)
14
- #include < CL/sycl.hpp>
14
+ #include < sycl/sycl.hpp>
15
+ #define OIDN_SYCL_HPP
16
+ #elif defined(SYCL_FEATURE_SET_FULL) || defined(SYCL_FEATURE_SET_REDUCED)
17
+ #define OIDN_SYCL_HPP // not using a SYCL compiler but SYCL headers are included
15
18
#else
16
19
namespace sycl
17
20
{
Original file line number Diff line number Diff line change @@ -519,7 +519,7 @@ OIDN_NAMESPACE_BEGIN
519
519
oidnExecuteFilterAsync (handle);
520
520
}
521
521
522
- #if defined(SYCL_LANGUAGE_VERSION )
522
+ #if defined(OIDN_SYCL_HPP )
523
523
// Executes the filter of a SYCL device using the specified dependent events asynchronously, and
524
524
// optionally returns an event for completion.
525
525
sycl::event executeAsync (const std::vector<sycl::event>& depEvents)
@@ -840,10 +840,12 @@ OIDN_NAMESPACE_BEGIN
840
840
}
841
841
842
842
// Returns whether the specified SYCL device is supported.
843
+ #if defined(OIDN_SYCL_HPP)
843
844
inline bool isSYCLDeviceSupported (const sycl::device& device)
844
845
{
845
846
return oidnIsSYCLDeviceSupported (&device);
846
847
}
848
+ #endif
847
849
848
850
// Returns whether the specified CUDA device is supported.
849
851
inline bool isCUDADeviceSupported (int deviceID)
@@ -893,7 +895,7 @@ OIDN_NAMESPACE_BEGIN
893
895
return DeviceRef (oidnNewDeviceByPCIAddress (pciDomain, pciBus, pciDevice, pciFunction));
894
896
}
895
897
896
- #if defined(SYCL_LANGUAGE_VERSION )
898
+ #if defined(OIDN_SYCL_HPP )
897
899
// Creates a device from the specified SYCL queue.
898
900
inline DeviceRef newSYCLDevice (const sycl::queue& queue)
899
901
{
You can’t perform that action at this time.
0 commit comments