mirror of
https://github.com/ROCm/jax.git
synced 2025-04-26 03:06:06 +00:00

In general, behavior should remain the same and this is not a breaking change. There are some minor changes to the API: - checkify.ErrorCategory has changed type: it's no longer an Enum, but the JaxException type. These have not been exposed as part of the public API. - some attributes on Error have changed and made private - The raised error has changed type (JaxRuntimeError), and will have a different traceback (pointing to the origin of the error + where the error value was raised). - `checkify.check` now supports formating error message with variable size runtime info! Co-authored-by: Sharad Vikram <sharad.vikram@gmail.com>
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
# Copyright 2022 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.
|
|
|
|
from jax._src.checkify import (
|
|
Error as Error,
|
|
ErrorCategory as ErrorCategory,
|
|
JaxRuntimeError as JaxRuntimeError,
|
|
all_checks as all_checks,
|
|
automatic_checks as automatic_checks,
|
|
check as check,
|
|
check_error as check_error,
|
|
checkify as checkify,
|
|
div_checks as div_checks,
|
|
float_checks as float_checks,
|
|
index_checks as index_checks,
|
|
init_error as init_error,
|
|
nan_checks as nan_checks,
|
|
user_checks as user_checks,
|
|
)
|