| 120 | } |
| 121 | |
| 122 | TupleTensor3 MaxLocTensorInto(Tensor &maxVal, Tensor &maxLoc, Tensor &numMax, Tensor &input, |
| 123 | std::optional<Stream> pstream) |
| 124 | { |
| 125 | return MaxLocInto(maxVal, maxLoc, numMax, input, pstream); |
| 126 | } |
| 127 | |
| 128 | TupleTensor3 MaxLocVarShapeInto(Tensor &maxVal, Tensor &maxLoc, Tensor &numMax, ImageBatchVarShape &input, |
| 129 | std::optional<Stream> pstream) |
nothing calls this directly
no test coverage detected