DriverTrac/venv/lib/python3.12/site-packages/onnx/backend/sample/ops/abs.py
2025-11-28 09:08:33 +05:30

9 lines
207 B
Python

# SPDX-License-Identifier: Apache-2.0
from __future__ import annotations
import numpy as np
def abs(input: np.ndarray) -> np.ndarray: # noqa: A001
return np.abs(input) # type: ignore[no-any-return]