2022-09-22 12:26:48 -07:00
|
|
|
# Copyright 2022 The JAX Authors.
|
2022-07-26 14:47:36 -07: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-04-07 07:24:59 -07:00
|
|
|
__all__ = ["callback", "print", "DebugEffect", "visualize_array_sharding",
|
|
|
|
"inspect_array_sharding", "visualize_sharding", "breakpoint"]
|
2022-07-26 14:47:36 -07:00
|
|
|
from jax._src.debugging import debug_callback as callback
|
|
|
|
from jax._src.debugging import debug_print as print
|
|
|
|
from jax._src.debugging import DebugEffect
|
2022-09-15 19:04:49 -07:00
|
|
|
from jax._src.debugging import visualize_array_sharding
|
2022-09-22 17:36:20 -07:00
|
|
|
from jax._src.debugging import inspect_array_sharding
|
2022-09-15 19:04:49 -07:00
|
|
|
from jax._src.debugging import visualize_sharding
|
2022-07-26 14:47:36 -07:00
|
|
|
from jax._src.debugger import breakpoint
|