Lines Matching refs:CUPMEvent
101 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 =()
153 inline typename CUPMEvent<T>::cupmEvent_t CUPMEvent<T>::get() noexcept in get()
161 inline PetscErrorCode CUPMEvent<T>::record(cupmStream_t stream) noexcept in record()
169 inline CUPMEvent<T>::operator bool() const noexcept in operator bool()