| 149 | } |
| 150 | |
| 151 | std::vector<Algorithm*> PoolingImpl::get_all_algorithms_safe( |
| 152 | const TensorLayout& src, const TensorLayout& dst) { |
| 153 | auto ret_safe = get_all_algorithms(src, dst); |
| 154 | megdnn_assert(!ret_safe.empty(), "no usable pooling fwd algorithm"); |
| 155 | return ret_safe; |
| 156 | } |
| 157 | |
| 158 | Algorithm* PoolingImpl::get_algorithm_heuristic( |
| 159 | const TensorLayout& src, const TensorLayout& dst, |
nothing calls this directly
no test coverage detected