| 51 | } |
| 52 | |
| 53 | Tensor Threshold(Tensor &input, Tensor &thresh, Tensor &maxval, uint32_t type, std::optional<Stream> pstream) |
| 54 | { |
| 55 | Tensor output = Tensor::Create(input.shape(), input.dtype()); |
| 56 | |
| 57 | return ThresholdInto(output, input, thresh, maxval, type, pstream); |
| 58 | } |
| 59 | |
| 60 | ImageBatchVarShape ThresholdVarShapeInto(ImageBatchVarShape &output, ImageBatchVarShape &input, Tensor &thresh, |
| 61 | Tensor &maxval, uint32_t type, std::optional<Stream> pstream) |
nothing calls this directly
no test coverage detected