2022-09-22 12:26:48 -07:00
|
|
|
# Copyright 2022 The JAX Authors.
|
2022-02-17 04:30:27 -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.
|
|
|
|
|
2022-12-14 15:07:04 -08:00
|
|
|
# Note: import <name> as <name> is required for names to be exported.
|
|
|
|
# See PEP 484 & https://github.com/google/jax/issues/7570
|
|
|
|
|
2022-04-14 04:31:55 -07:00
|
|
|
from jax._src.checkify import (
|
2022-02-17 04:30:27 -08:00
|
|
|
Error as Error,
|
|
|
|
ErrorCategory as ErrorCategory,
|
2022-10-19 00:53:24 +01:00
|
|
|
JaxRuntimeError as JaxRuntimeError,
|
2022-02-17 04:30:27 -08:00
|
|
|
all_checks as all_checks,
|
|
|
|
automatic_checks as automatic_checks,
|
|
|
|
check as check,
|
|
|
|
check_error as check_error,
|
|
|
|
checkify as checkify,
|
2022-12-12 17:49:56 +00:00
|
|
|
debug_check as debug_check,
|
2022-02-17 04:30:27 -08:00
|
|
|
div_checks as div_checks,
|
|
|
|
float_checks as float_checks,
|
|
|
|
index_checks as index_checks,
|
2022-02-17 12:31:59 +00:00
|
|
|
init_error as init_error,
|
2022-02-17 04:30:27 -08:00
|
|
|
nan_checks as nan_checks,
|
|
|
|
user_checks as user_checks,
|
|
|
|
)
|