| 94 | workspace{workspace} {} |
| 95 | |
| 96 | std::string ConvolutionForwardImpl::AlgoBase::SizeArgs::to_string() const { |
| 97 | return ssprintf( |
| 98 | "src=%s, filter=%s, dst=%s", layout_src->to_string().c_str(), |
| 99 | layout_filter->to_string().c_str(), layout_dst->to_string().c_str()); |
| 100 | } |
| 101 | |
| 102 | bool ConvolutionForwardImpl::AlgoDefault::is_available(const SizeArgs& args) const { |
| 103 | if (args.opr->param().format != param::Convolution::Format::NHWC) { |
no outgoing calls
no test coverage detected