Skip to content
Open
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
6 changes: 5 additions & 1 deletion sycl/include/sycl/ext/oneapi/functional.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

namespace sycl {
inline namespace _V1 {

#ifndef __INTEL_PREVIEW_BREAKING_CHANGES
namespace ext::oneapi {

template <typename T = void>
Expand All @@ -38,9 +40,11 @@ using maximum
template <typename T = void>
using minimum
__SYCL2020_DEPRECATED("Use sycl::minimum<> instead") = sycl::minimum<T>;

} // namespace ext::oneapi
#endif // __INTEL_PREVIEW_BREAKING_CHANGES

// TODO: The group operation helpers below are not extension-specific; consider
// moving them to a non-extension header (e.g. sycl/functional.hpp).
#ifdef __SYCL_DEVICE_ONLY__
namespace detail {

Expand Down
Loading