| 16 | namespace { |
| 17 | |
| 18 | std::unique_ptr<LocalForward> get_opr(Handle* handle, param::Convolution param) { |
| 19 | auto&& opr = handle->create_operator<LocalForward>(); |
| 20 | opr->param() = param; |
| 21 | return std::move(opr); |
| 22 | } |
| 23 | |
| 24 | TensorLayout prepare_src_dst(const TensorLayout& input, size_t g) { |
| 25 | TensorLayout ret = input; |
no test coverage detected