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/StdCount.html below:

count - Kokkos documentation

Toggle table of contents sidebar

count

Header: <Kokkos_StdAlgorithms.hpp>

Description

Returns the number of elements in a range or in rank-1 View that are equal to a target value.

Interface

Warning

This is currently inside the Kokkos::Experimental namespace.

Overload set accepting execution space
template <class ExecutionSpace, class IteratorType, class T>
typename IteratorType::difference_type count(const ExecutionSpace& exespace,
                                             IteratorType first,
                                             IteratorType last,                      (1)
                                             const T& value);

template <class ExecutionSpace, class IteratorType, class T>
typename IteratorType::difference_type count(const std::string& label,
                                             const ExecutionSpace& exespace,
                                             IteratorType first,
                                             IteratorType last,                      (2)
                                             const T& value);

template <class ExecutionSpace, class DataType, class... Properties, class T>
auto count(const ExecutionSpace& exespace,                                           (3)
           const ::Kokkos::View<DataType, Properties...>& view, const T& value);

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

Added in version 4.2.

template <class TeamHandleType, class IteratorType, class T>
KOKKOS_FUNCTION
typename IteratorType::difference_type count(const TeamHandleType& teamHandle,
                                             IteratorType first,
                                             IteratorType last,                      (5)
                                             const T& value);

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

Returns the number of elements in the range first, last or in view that are equal to 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