File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class __SYCL_EXPORT event {
54
54
// / Returns a valid OpenCL event interoperability handle.
55
55
// /
56
56
// / \return a valid instance of OpenCL cl_event.
57
- cl_event get ();
57
+ cl_event get () const ;
58
58
59
59
// / Checks if this event is a SYCL host event.
60
60
// /
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ bool event::operator==(const event &rhs) const { return rhs.impl == impl; }
31
31
32
32
bool event::operator !=(const event &rhs) const { return !(*this == rhs); }
33
33
34
- cl_event event::get () { return impl->get (); }
34
+ cl_event event::get () const { return impl->get (); }
35
35
36
36
bool event::is_host () const { return impl->is_host (); }
37
37
Original file line number Diff line number Diff line change @@ -3102,7 +3102,6 @@ _ZN2cl4sycl4freeEPvRKNS0_7contextE
3102
3102
_ZN2cl4sycl5event13get_wait_listEv
3103
3103
_ZN2cl4sycl5event14wait_and_throwERKSt6vectorIS1_SaIS1_EE
3104
3104
_ZN2cl4sycl5event14wait_and_throwEv
3105
- _ZN2cl4sycl5event3getEv
3106
3105
_ZN2cl4sycl5event4waitERKSt6vectorIS1_SaIS1_EE
3107
3106
_ZN2cl4sycl5event4waitEv
3108
3107
_ZN2cl4sycl5eventC1EP9_cl_eventRKNS0_7contextE
@@ -3278,6 +3277,7 @@ _ZNK2cl4sycl20accelerator_selectorclERKNS0_6deviceE
3278
3277
_ZNK2cl4sycl5event18get_profiling_infoILNS0_4info15event_profilingE4737EEENS3_12param_traitsIS4_XT_EE11return_typeEv
3279
3278
_ZNK2cl4sycl5event18get_profiling_infoILNS0_4info15event_profilingE4738EEENS3_12param_traitsIS4_XT_EE11return_typeEv
3280
3279
_ZNK2cl4sycl5event18get_profiling_infoILNS0_4info15event_profilingE4739EEENS3_12param_traitsIS4_XT_EE11return_typeEv
3280
+ _ZNK2cl4sycl5event3getEv
3281
3281
_ZNK2cl4sycl5event7is_hostEv
3282
3282
_ZNK2cl4sycl5event8get_infoILNS0_4info5eventE4562EEENS3_12param_traitsIS4_XT_EE11return_typeEv
3283
3283
_ZNK2cl4sycl5event8get_infoILNS0_4info5eventE4563EEENS3_12param_traitsIS4_XT_EE11return_typeEv
You can’t perform that action at this time.
0 commit comments