Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[array api] remove redundant definitions for clip() & hypot() #22766

Merged
merged 1 commit into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions jax/experimental/array_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
broadcast_to as broadcast_to,
can_cast as can_cast,
ceil as ceil,
clip as clip,
complex128 as complex128,
complex64 as complex64,
concat as concat,
Expand Down Expand Up @@ -100,6 +101,7 @@
full_like as full_like,
greater as greater,
greater_equal as greater_equal,
hypot as hypot,
iinfo as iinfo,
imag as imag,
inf as inf,
Expand Down Expand Up @@ -195,8 +197,3 @@
from jax.experimental.array_api._data_type_functions import (
astype as astype,
)

from jax.experimental.array_api._elementwise_functions import (
clip as clip,
hypot as hypot,
)
48 changes: 0 additions & 48 deletions jax/experimental/array_api/_elementwise_functions.py

This file was deleted.

Loading