| 195 | } |
| 196 | |
| 197 | void reset() { |
| 198 | if (id_) { |
| 199 | if (domain()) { |
| 200 | ::nvtxDomainRangeEnd(domain(), id_); |
| 201 | } else { |
| 202 | ::nvtxRangeEnd(id_); |
| 203 | } |
| 204 | id_ = 0; |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | // msg_fn must be a nullary callable returning string. |
| 209 | template <class MsgFunc> |