2022-09-22 12:26:48 -07:00
|
|
|
# Copyright 2018 The JAX Authors.
|
2018-11-17 18:03:33 -08:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2023-02-07 15:00:56 -08:00
|
|
|
from jax._src.interpreters.xla import (
|
|
|
|
abstractify as abstractify,
|
|
|
|
canonicalize_dtype as canonicalize_dtype,
|
|
|
|
canonicalize_dtype_handlers as canonicalize_dtype_handlers,
|
|
|
|
pytype_aval_mappings as pytype_aval_mappings,
|
2023-08-15 06:38:56 -07:00
|
|
|
)
|
|
|
|
|
2023-02-07 15:00:56 -08:00
|
|
|
from jax._src.dispatch import (
|
|
|
|
apply_primitive as apply_primitive,
|
|
|
|
)
|
2023-02-09 16:11:11 -08:00
|
|
|
|
2024-06-28 10:47:37 -07:00
|
|
|
from jax._src.lib import xla_client as _xc
|
2024-10-25 08:10:29 -07:00
|
|
|
Backend = _xc._xla.Client
|
|
|
|
del _xc
|
2024-02-15 13:31:58 -08:00
|
|
|
|
|
|
|
# Deprecations
|
|
|
|
_deprecations = {
|
2024-10-25 08:10:29 -07:00
|
|
|
# Finalized 2024-10-24; remove after 2025-01-24
|
2024-06-28 10:47:37 -07:00
|
|
|
"xb": (
|
2024-10-25 08:10:29 -07:00
|
|
|
("jax.interpreters.xla.xb was removed in JAX v0.4.36. "
|
|
|
|
"Use jax.lib.xla_bridge instead."), None
|
2024-06-28 10:47:37 -07:00
|
|
|
),
|
|
|
|
"xc": (
|
2024-10-25 08:10:29 -07:00
|
|
|
("jax.interpreters.xla.xc was removed in JAX v0.4.36. "
|
|
|
|
"Use jax.lib.xla_client instead."), None
|
2024-06-28 10:47:37 -07:00
|
|
|
),
|
|
|
|
"xe": (
|
2024-10-25 08:10:29 -07:00
|
|
|
("jax.interpreters.xla.xe was removed in JAX v0.4.36. "
|
|
|
|
"Use jax.lib.xla_extension instead."), None
|
2024-06-28 10:47:37 -07:00
|
|
|
),
|
2024-02-15 13:31:58 -08:00
|
|
|
}
|
|
|
|
|
2024-05-14 10:39:43 -07:00
|
|
|
from jax._src.deprecations import deprecation_getattr as _deprecation_getattr
|
2024-10-25 08:10:29 -07:00
|
|
|
__getattr__ = _deprecation_getattr(__name__, _deprecations)
|
2024-05-14 10:39:43 -07:00
|
|
|
del _deprecation_getattr
|