File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ __SYCL_INLINE_NAMESPACE(cl) {
17
17
namespace sycl {
18
18
namespace detail {
19
19
20
- // This guard is needed because the libsycl.so can compiled with C++ <=14
20
+ // This guard is needed because the libsycl.so can be compiled with C++ <=14
21
21
// while the code requires C++17. This code is not supposed to be used by the
22
22
// libsycl.so so it should not be a problem.
23
23
#if __cplusplus > 201402L
Original file line number Diff line number Diff line change @@ -248,6 +248,8 @@ class kernel_bundle_impl {
248
248
249
249
void set_specialization_constant_raw_value (const char *SpecName,
250
250
const void *Value) noexcept {
251
+ // TODO add support for specialization constants, that are missing in any
252
+ // device image.
251
253
for (const device_image_plain &DeviceImage : MDeviceImages)
252
254
getSyclObjImpl (DeviceImage)
253
255
->set_specialization_constant_raw_value (SpecName, Value);
You can’t perform that action at this time.
0 commit comments