| 183 | } |
| 184 | |
| 185 | std::vector<ConvolutionImpl::Algorithm*> ConvolutionImpl::get_all_algorithms_safe( |
| 186 | const TensorLayout& src, const TensorLayout& filter, const TensorLayout& dst) { |
| 187 | auto ret_safe = ConvolutionImpl::get_all_algorithms(src, filter, dst); |
| 188 | return ret_safe; |
| 189 | } |
| 190 | |
| 191 | ConvolutionImpl::Algorithm* ConvolutionImpl::get_algorithm_heuristic( |
| 192 | const TensorLayout& src, const TensorLayout& filter, const TensorLayout& dst, |
nothing calls this directly
no test coverage detected