| 64 | } |
| 65 | |
| 66 | Tensor Normalize(Tensor &input, Tensor &base, Tensor &scale, std::optional<uint32_t> flags, float globalScale, |
| 67 | float globalShift, float epsilon, std::optional<Stream> pstream) |
| 68 | { |
| 69 | Tensor output = Tensor::Create(input.shape(), input.dtype()); |
| 70 | |
| 71 | return NormalizeInto(output, input, base, scale, flags, globalScale, globalShift, epsilon, pstream); |
| 72 | } |
| 73 | |
| 74 | ImageBatchVarShape VarShapeNormalizeInto(ImageBatchVarShape &output, ImageBatchVarShape &input, Tensor &base, |
| 75 | Tensor &scale, std::optional<uint32_t> flags, float globalScale, |
nothing calls this directly
no test coverage detected