| 154 | } |
| 155 | |
| 156 | TupleTensor6 MinMaxLocTensorInto(Tensor &minVal, Tensor &minLoc, Tensor &numMin, Tensor &maxVal, Tensor &maxLoc, |
| 157 | Tensor &numMax, Tensor &input, std::optional<Stream> pstream) |
| 158 | { |
| 159 | return MinMaxLocInto(minVal, minLoc, numMin, maxVal, maxLoc, numMax, input, pstream); |
| 160 | } |
| 161 | |
| 162 | TupleTensor6 MinMaxLocVarShapeInto(Tensor &minVal, Tensor &minLoc, Tensor &numMin, Tensor &maxVal, Tensor &maxLoc, |
| 163 | Tensor &numMax, ImageBatchVarShape &input, std::optional<Stream> pstream) |
nothing calls this directly
no test coverage detected