Home
last modified time | relevance | path

Searched refs:CUPMEvent (Results 1 – 3 of 3) sorted by relevance

/petsc/src/sys/objects/device/impls/cupm/
H A Dcupmevent.hpp101 class PETSC_SINGLE_LIBRARY_VISIBILITY_INTERNAL CUPMEvent : impl::Interface<T>, public memory::PoolA… class
107 constexpr CUPMEvent() noexcept = default;
108 ~CUPMEvent() noexcept;
110 CUPMEvent(CUPMEvent &&) noexcept;
111 CUPMEvent &operator=(CUPMEvent &&) noexcept;
114 CUPMEvent(const CUPMEvent &) = delete;
115 CUPMEvent &operator=(const CUPMEvent &) = delete;
127 inline CUPMEvent<T>::~CUPMEvent() noexcept in ~CUPMEvent()
135 inline CUPMEvent<T>::CUPMEvent(CUPMEvent &&other) noexcept : pool_type(std::move(other)), event_(ut… in CUPMEvent() function in Petsc::device::cupm::CUPMEvent
141 inline CUPMEvent<T> &CUPMEvent<T>::operator=(CUPMEvent &&other) noexcept in operator =()
[all …]
H A Dcupmstream.hpp33 using event_type = CUPMEvent<T>;
H A Dcupmcontext.hpp42 using event_type = CUPMEvent<T>;
83 …PETSC_NODISCARD static constexpr CUPMEvent<T> *event_cast_(PetscEvent event) noexcept { return sta… in event_cast_()