Kano001's picture
Upload 2707 files
dc2106c verified
raw
history blame
179 Bytes
# SPDX-License-Identifier: Apache-2.0
import numpy as np
def abs(input: np.ndarray) -> np.ndarray: # noqa: A001
return np.abs(input) # type: ignore[no-any-return]