mirror of
https://github.com/ROCm/jax.git
synced 2025-04-16 03:46:06 +00:00
81 lines
2.5 KiB
Python
81 lines
2.5 KiB
Python
# Copyright 2021 The JAX Authors.
|
|
#
|
|
# 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.
|
|
|
|
# flake8: noqa
|
|
|
|
from jax._src.pjit import (
|
|
AUTO as AUTO,
|
|
ParsedPartitionSpec as ParsedPartitionSpec,
|
|
get_array_mapping as get_array_mapping,
|
|
hashable_pytree as hashable_pytree,
|
|
parse_flatten_op_sharding as parse_flatten_op_sharding,
|
|
pjit as pjit,
|
|
pjit_p as pjit_p,
|
|
with_sharding_constraint as with_sharding_constraint,
|
|
)
|
|
|
|
from jax._src.pjit import (_UNSPECIFIED, _prepare_axis_resources,
|
|
_get_op_sharding_from_executable,
|
|
_get_pspec_from_executable, _pjit_lower_cached,
|
|
_pjit_lower, _get_op_sharding,
|
|
_pjit_jaxpr,
|
|
_create_mesh_pspec_sharding_from_parsed_pspec,
|
|
_process_in_axis_resources)
|
|
|
|
|
|
from jax._src.pjit import (
|
|
NamedSharding as _deprecated_NamedSharding,
|
|
PartitionSpec as _deprecated_PartitionSpec,
|
|
FROM_GDA as _deprecated_FROM_GDA,
|
|
)
|
|
|
|
import typing
|
|
if typing.TYPE_CHECKING:
|
|
from jax._src.pjit import (
|
|
NamedSharding as NamedSharding,
|
|
PartitionSpec as PartitionSpec,
|
|
FROM_GDA as FROM_GDA,
|
|
)
|
|
del typing
|
|
|
|
_deprecations = {
|
|
# Added Feb 13, 2023:
|
|
"NamedSharding": (
|
|
(
|
|
"jax.experimental.pjit.NamedSharding is deprecated. Use "
|
|
"jax.sharding.NamedSharding."
|
|
),
|
|
_deprecated_NamedSharding,
|
|
),
|
|
"PartitionSpec": (
|
|
(
|
|
"jax.experimental.pjit.PartitionSpec is deprecated. Use "
|
|
"jax.sharding.PartitionSpec."
|
|
),
|
|
_deprecated_PartitionSpec,
|
|
),
|
|
"FROM_GDA": (
|
|
(
|
|
"jax.experimental.pjit.FROM_GDA is deprecated. Please pass in"
|
|
" sharded jax.Arrays as input and remove the in_shardings argument"
|
|
" to pjit since it is optional."
|
|
),
|
|
_deprecated_FROM_GDA,
|
|
),
|
|
}
|
|
|
|
from jax._src.deprecations import deprecation_getattr as _deprecation_getattr
|
|
__getattr__ = _deprecation_getattr(__name__, _deprecations)
|
|
del _deprecation_getattr
|