| 163 | |
| 164 | template<typename B> |
| 165 | int |
| 166 | Monitor_BFER<B>::check_errors(const B* U, const B* V, const int frame_id, const bool managed_memory) |
| 167 | { |
| 168 | (*this)[mnt::sck::check_errors::U].bind(U); |
| 169 | (*this)[mnt::sck::check_errors::V].bind(V); |
| 170 | const auto& status = (*this)[mnt::tsk::check_errors].exec(frame_id, managed_memory); |
| 171 | |
| 172 | return status[0]; |
| 173 | } |
| 174 | |
| 175 | template<typename B> |
| 176 | int |
nothing calls this directly
no outgoing calls
no test coverage detected