//@HEADER // ************************************************************************ // // Kokkos v. 4.0 // Copyright (2022) National Technology & Engineering // Solutions of Sandia, LLC (NTESS). // // Under the terms of Contract DE-NA0003525 with NTESS, // the U.S. Government retains certain rights in this software. // // Part of Kokkos, under the Apache License v2.0 with LLVM Exceptions. // See https://kokkos.org/LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //@HEADER #ifndef KOKKOS_STD_ALGORITHMS_REMOVE_HPP #define KOKKOS_STD_ALGORITHMS_REMOVE_HPP #include "impl/Kokkos_RemoveAllVariants.hpp" #include "Kokkos_BeginEnd.hpp" namespace Kokkos { namespace Experimental { // // overload set accepting execution space // template < typename ExecutionSpace, typename Iterator, typename ValueType, std::enable_if_t<::Kokkos::is_execution_space_v, int> = 0> Iterator remove(const ExecutionSpace& ex, Iterator first, Iterator last, const ValueType& value) { return Impl::remove_exespace_impl("Kokkos::remove_iterator_api_default", ex, first, last, value); } template < typename ExecutionSpace, typename Iterator, typename ValueType, std::enable_if_t<::Kokkos::is_execution_space_v, int> = 0> Iterator remove(const std::string& label, const ExecutionSpace& ex, Iterator first, Iterator last, const ValueType& value) { return Impl::remove_exespace_impl(label, ex, first, last, value); } template < typename ExecutionSpace, typename DataType, typename... Properties, typename ValueType, std::enable_if_t<::Kokkos::is_execution_space_v, int> = 0> auto remove(const ExecutionSpace& ex, const ::Kokkos::View& view, const ValueType& value) { Impl::static_assert_is_admissible_to_kokkos_std_algorithms(view); return Impl::remove_exespace_impl("Kokkos::remove_iterator_api_default", ex, ::Kokkos::Experimental::begin(view), ::Kokkos::Experimental::end(view), value); } template < typename ExecutionSpace, typename DataType, typename... Properties, typename ValueType, std::enable_if_t<::Kokkos::is_execution_space_v, int> = 0> auto remove(const std::string& label, const ExecutionSpace& ex, const ::Kokkos::View& view, const ValueType& value) { Impl::static_assert_is_admissible_to_kokkos_std_algorithms(view); return Impl::remove_exespace_impl(label, ex, ::Kokkos::Experimental::begin(view), ::Kokkos::Experimental::end(view), value); } // // overload set accepting a team handle // Note: for now omit the overloads accepting a label // since they cause issues on device because of the string allocation. // template , int> = 0> KOKKOS_FUNCTION Iterator remove(const TeamHandleType& teamHandle, Iterator first, Iterator last, const ValueType& value) { return Impl::remove_team_impl(teamHandle, first, last, value); } template , int> = 0> KOKKOS_FUNCTION auto remove(const TeamHandleType& teamHandle, const ::Kokkos::View& view, const ValueType& value) { Impl::static_assert_is_admissible_to_kokkos_std_algorithms(view); return Impl::remove_team_impl(teamHandle, ::Kokkos::Experimental::begin(view), ::Kokkos::Experimental::end(view), value); } } // namespace Experimental } // namespace Kokkos #endif