Skip to content
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

[SYCL] Check weak symbols in ABI dumps #1609

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
[SYCL] Check weak symbols in ABI dumps
Signed-off-by: Alexander Batashev <alexander.batashev@intel.com>
  • Loading branch information
Alexander Batashev committed Apr 29, 2020
commit 4914007b906dcd263aac58ab96800eff819473dc
7 changes: 4 additions & 3 deletions sycl/source/ordered_queue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ ordered_queue::get_info() const {
}

#define PARAM_TRAITS_SPEC(param_type, param, ret_type) \
template ret_type ordered_queue::get_info<info::param_type::param>() const;
template __SYCL_EXPORT \
ret_type ordered_queue::get_info<info::param_type::param>() const;

#include <CL/sycl/info/queue_traits.def>

Expand All @@ -124,9 +125,9 @@ template <typename propertyT> propertyT ordered_queue::get_property() const {
return impl->get_property<propertyT>();
}

template bool
template __SYCL_EXPORT bool
ordered_queue::has_property<property::queue::enable_profiling>() const;
template property::queue::enable_profiling
template __SYCL_EXPORT property::queue::enable_profiling
ordered_queue::get_property<property::queue::enable_profiling>() const;
} // namespace sycl
} // __SYCL_INLINE_NAMESPACE(cl)
Loading