| 197 | return ret; |
| 198 | } |
| 199 | std::vector<Algorithm*> PoolingImpl::get_all_algorithms_safe( |
| 200 | const TensorLayout& src, const TensorLayout& dst) { |
| 201 | auto ret_safe = get_all_algorithms(src, dst); |
| 202 | megdnn_assert(!ret_safe.empty(), "no usable pooling fwd algorithm"); |
| 203 | return ret_safe; |
| 204 | } |
| 205 | |
| 206 | Algorithm* PoolingImpl::get_algorithm_heuristic( |
| 207 | const TensorLayout& src, const TensorLayout& dst, |
nothing calls this directly
no test coverage detected