Skip to content

Commit ca9fea6

Browse files
[SYCL] Add missing link reference to get_property<property::queue::in_order> (#5831)
1 parent 9218215 commit ca9fea6

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

sycl/source/queue.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,11 @@ queue::has_property<property::queue::enable_profiling>() const;
190190
template __SYCL_EXPORT property::queue::enable_profiling
191191
queue::get_property<property::queue::enable_profiling>() const;
192192

193+
template __SYCL_EXPORT bool
194+
queue::has_property<property::queue::in_order>() const;
195+
template __SYCL_EXPORT property::queue::in_order
196+
queue::get_property<property::queue::in_order>() const;
197+
193198
bool queue::is_in_order() const {
194199
return impl->has_property<property::queue::in_order>();
195200
}

sycl/test/abi/sycl_symbols_linux.dump

+2
Original file line numberDiff line numberDiff line change
@@ -4112,7 +4112,9 @@ _ZNK2cl4sycl5queue11get_backendEv
41124112
_ZNK2cl4sycl5queue11get_contextEv
41134113
_ZNK2cl4sycl5queue11is_in_orderEv
41144114
_ZNK2cl4sycl5queue12get_propertyINS0_8property5queue16enable_profilingEEET_v
4115+
_ZNK2cl4sycl5queue12get_propertyINS0_8property5queue8in_orderEEET_v
41154116
_ZNK2cl4sycl5queue12has_propertyINS0_8property5queue16enable_profilingEEEbv
4117+
_ZNK2cl4sycl5queue12has_propertyINS0_8property5queue8in_orderEEEbv
41164118
_ZNK2cl4sycl5queue3getEv
41174119
_ZNK2cl4sycl5queue7is_hostEv
41184120
_ZNK2cl4sycl5queue8get_infoILNS0_4info5queueE4240EEENS3_12param_traitsIS4_XT_EE11return_typeEv

sycl/test/abi/sycl_symbols_windows.dump

+2
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@
171171
??$get_property@Venable_profiling@queue@property@sycl@cl@@@queue@sycl@cl@@QEBA?AVenable_profiling@0property@12@XZ
172172
??$get_property@Vin_order@queue@property@sycl@cl@@@context@sycl@cl@@QEBA?AVin_order@queue@property@12@XZ
173173
??$get_property@Vin_order@queue@property@sycl@cl@@@program@sycl@cl@@QEBA?AVin_order@queue@property@12@XZ
174+
??$get_property@Vin_order@queue@property@sycl@cl@@@queue@sycl@cl@@QEBA?AVin_order@0property@12@XZ
174175
??$get_property@Vin_order@queue@property@sycl@cl@@@sampler@sycl@cl@@QEBA?AVin_order@queue@property@12@XZ
175176
??$get_property@Vin_order@queue@property@sycl@cl@@@stream@sycl@cl@@QEBA?AVin_order@queue@property@12@XZ
176177
??$get_property@Vinitialize_to_identity@reduction@property@sycl@cl@@@context@sycl@cl@@QEBA?AVinitialize_to_identity@reduction@property@12@XZ
@@ -233,6 +234,7 @@
233234
??$has_property@Venable_profiling@queue@property@sycl@cl@@@queue@sycl@cl@@QEBA_NXZ
234235
??$has_property@Vin_order@queue@property@sycl@cl@@@context@sycl@cl@@QEBA_NXZ
235236
??$has_property@Vin_order@queue@property@sycl@cl@@@program@sycl@cl@@QEBA_NXZ
237+
??$has_property@Vin_order@queue@property@sycl@cl@@@queue@sycl@cl@@QEBA_NXZ
236238
??$has_property@Vin_order@queue@property@sycl@cl@@@sampler@sycl@cl@@QEBA_NXZ
237239
??$has_property@Vin_order@queue@property@sycl@cl@@@stream@sycl@cl@@QEBA_NXZ
238240
??$has_property@Vinitialize_to_identity@reduction@property@sycl@cl@@@context@sycl@cl@@QEBA_NXZ

0 commit comments

Comments
 (0)