| 34 | } |
| 35 | |
| 36 | void GaussianBlur::check_exec( |
| 37 | const TensorLayout& src, const TensorLayout& dst, size_t workspace_in_bytes) { |
| 38 | check_layout_fwd(src, dst); |
| 39 | auto required_workspace_in_bytes = get_workspace_in_bytes(src, dst); |
| 40 | megdnn_assert(workspace_in_bytes >= required_workspace_in_bytes); |
| 41 | } |
| 42 | |
| 43 | } // namespace megdnn |
| 44 |
nothing calls this directly
no test coverage detected