https://github.com/pymc-devs/pymc3
Raw File
Tip revision: a24acb9c34ab8cbbfc6f76032d2f666df45250f1 authored by dependabot[bot] on 18 September 2023, 02:45:16 UTC
Bump docker/login-action from 2 to 3
Tip revision: a24acb9
sampling_jax.py
#   Copyright 2023 The PyMC Developers
#
#   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
#
#       http://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.
# This file exists only for backward-compatibility with imports like
# `import pymc.sampling_jax` or `from pymc import sampling_jax`.

# pylint: disable=wildcard-import
# pylint: disable=unused-wildcard-import

from pymc.sampling.jax import *
back to top