| 113 | } |
| 114 | |
| 115 | size_t ConvolutionForwardImpl::AlgoDefault::get_workspace_in_bytes( |
| 116 | const SizeArgs& args) const { |
| 117 | auto config = prepare_sub_opr(args); |
| 118 | auto bundle = get_workspace_bundle(config, args); |
| 119 | return bundle.total_size_in_bytes(); |
| 120 | } |
| 121 | |
| 122 | void ConvolutionForwardImpl::AlgoDefault::exec(const ExecArgs& args) const { |
| 123 | auto config = prepare_sub_opr(args); |
no test coverage detected