A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://kokkos.github.io/kokkos-core-wiki/API/algorithms/std-algorithms/all/StdFindIfNot.html below:

find_if_not - Kokkos documentation

find_if_not

Header: <Kokkos_StdAlgorithms.hpp>

Description

Returns an iterator to the first element in a range or a View for which a custom predicate returns false.

Interface

Warning

This is currently inside the Kokkos::Experimental namespace.

Overload set accepting execution space
template <class ExecutionSpace, class InputIterator, class PredicateType>
InputIterator find_if_not(const ExecutionSpace& exespace,                            (1)
                          InputIterator first, InputIterator last,
                          PredicateType pred);

template <class ExecutionSpace, class InputIterator, class PredicateType>
InputIterator find_if_not(const std::string& label, const ExecutionSpace& exespace,  (2)
                          InputIterator first, InputIterator last,
                          PredicateType pred);

template <class ExecutionSpace, class DataType, class... Properties, class PredicateType>
auto find_if_not(const ExecutionSpace& exespace,                                     (3)
                 const Kokkos::View<DataType, Properties...>& view,
                 PredicateType pred);

template <class ExecutionSpace, class DataType, class... Properties, class PredicateType>
auto find_if_not(const std::string& label, const ExecutionSpace& exespace,           (4)
                 const Kokkos::View<DataType, Properties...>& view,
                 PredicateType pred);
Overload set accepting a team handle

Added in version 4.2.

template <class TeamHandleType, class InputIterator, class PredicateType>
KOKKOS_FUNCTION
InputIterator find_if_not(const TeamHandleType& teamHandle,                          (5)
                          InputIterator first, InputIterator last,
                          PredicateType pred);

template <class TeamHandleType, class DataType, class... Properties, class PredicateType>
KOKKOS_FUNCTION
auto find_if_not(const TeamHandleType& teamHandle,                                   (6)
                 const Kokkos::View<DataType, Properties...>& view,
                 PredicateType pred);
Parameters and Requirements Return Value

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4