| 42 | } |
| 43 | |
| 44 | size_t BatchConvBiasForwardImpl::get_workspace_in_bytes( |
| 45 | const TensorLayout& src, const TensorLayout& flt, const TensorLayout& bias, |
| 46 | const TensorLayout& z, const TensorLayout& dst) { |
| 47 | return get_workspace_bundle(nullptr, src, flt, bias, z, dst).total_size_in_bytes(); |
| 48 | } |
| 49 | |
| 50 | void BatchConvBiasForwardImpl::exec( |
| 51 | _megdnn_tensor_in src, _megdnn_tensor_in filter, _megdnn_tensor_in bias, |
nothing calls this directly
no test coverage detected