1#ifndef KOKKOS_UTILS_CALLBACKS_EVENTNAMEMATCHER_HPP 
    2#define KOKKOS_UTILS_CALLBACKS_EVENTNAMEMATCHER_HPP 
   12    template <NamedEvent EventType>
 
   14        return event.name == this->
name;
 
 
   17    template <DataEvent EventType>
 
   19        return event.alloc.name == this->
name;
 
 
 
Matcher to select events whose name matches name.
bool operator()(const EventType &event) const