* @brief NoParam is a no-op type used to indicate that a kernel does not have * any parameters. */
| 1164 | * any parameters. |
| 1165 | */ |
| 1166 | struct NoParam {}; |
| 1167 | template <typename T> constexpr bool IsNoParam = std::is_same_v<T, NoParam>; |
| 1168 | |
| 1169 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected