Skip to content

[SYCL] Add missing link reference to get_property<property::queue::in_order> #5831

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions sycl/source/queue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,11 @@ queue::has_property<property::queue::enable_profiling>() const;
template __SYCL_EXPORT property::queue::enable_profiling
queue::get_property<property::queue::enable_profiling>() const;

template __SYCL_EXPORT bool
queue::has_property<property::queue::in_order>() const;
template __SYCL_EXPORT property::queue::in_order
queue::get_property<property::queue::in_order>() const;

bool queue::is_in_order() const {
return impl->has_property<property::queue::in_order>();
}
Expand Down
2 changes: 2 additions & 0 deletions sycl/test/abi/sycl_symbols_linux.dump
Original file line number Diff line number Diff line change
Expand Up @@ -4111,7 +4111,9 @@ _ZNK2cl4sycl5queue11get_backendEv
_ZNK2cl4sycl5queue11get_contextEv
_ZNK2cl4sycl5queue11is_in_orderEv
_ZNK2cl4sycl5queue12get_propertyINS0_8property5queue16enable_profilingEEET_v
_ZNK2cl4sycl5queue12get_propertyINS0_8property5queue8in_orderEEET_v
_ZNK2cl4sycl5queue12has_propertyINS0_8property5queue16enable_profilingEEEbv
_ZNK2cl4sycl5queue12has_propertyINS0_8property5queue8in_orderEEEbv
_ZNK2cl4sycl5queue3getEv
_ZNK2cl4sycl5queue7is_hostEv
_ZNK2cl4sycl5queue8get_infoILNS0_4info5queueE4240EEENS3_12param_traitsIS4_XT_EE11return_typeEv
Expand Down
2 changes: 2 additions & 0 deletions sycl/test/abi/sycl_symbols_windows.dump
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@
??$get_property@Venable_profiling@queue@property@sycl@cl@@@queue@sycl@cl@@QEBA?AVenable_profiling@0property@12@XZ
??$get_property@Vin_order@queue@property@sycl@cl@@@context@sycl@cl@@QEBA?AVin_order@queue@property@12@XZ
??$get_property@Vin_order@queue@property@sycl@cl@@@program@sycl@cl@@QEBA?AVin_order@queue@property@12@XZ
??$get_property@Vin_order@queue@property@sycl@cl@@@queue@sycl@cl@@QEBA?AVin_order@0property@12@XZ
??$get_property@Vin_order@queue@property@sycl@cl@@@sampler@sycl@cl@@QEBA?AVin_order@queue@property@12@XZ
??$get_property@Vin_order@queue@property@sycl@cl@@@stream@sycl@cl@@QEBA?AVin_order@queue@property@12@XZ
??$get_property@Vinitialize_to_identity@reduction@property@sycl@cl@@@context@sycl@cl@@QEBA?AVinitialize_to_identity@reduction@property@12@XZ
Expand Down Expand Up @@ -233,6 +234,7 @@
??$has_property@Venable_profiling@queue@property@sycl@cl@@@queue@sycl@cl@@QEBA_NXZ
??$has_property@Vin_order@queue@property@sycl@cl@@@context@sycl@cl@@QEBA_NXZ
??$has_property@Vin_order@queue@property@sycl@cl@@@program@sycl@cl@@QEBA_NXZ
??$has_property@Vin_order@queue@property@sycl@cl@@@queue@sycl@cl@@QEBA_NXZ
??$has_property@Vin_order@queue@property@sycl@cl@@@sampler@sycl@cl@@QEBA_NXZ
??$has_property@Vin_order@queue@property@sycl@cl@@@stream@sycl@cl@@QEBA_NXZ
??$has_property@Vinitialize_to_identity@reduction@property@sycl@cl@@@context@sycl@cl@@QEBA_NXZ
Expand Down