mirror of
https://github.com/ROCm/jax.git
synced 2025-04-17 20:36:05 +00:00

The bindings are not yet included in the jaxlib wheel. I will do that in a follow up PR. PiperOrigin-RevId: 595174466
61 lines
1.8 KiB
Python
61 lines
1.8 KiB
Python
# Copyright 2023 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.
|
|
|
|
load(
|
|
"//jaxlib:jax.bzl",
|
|
"if_building_jaxlib",
|
|
"jax_visibility",
|
|
"py_library_providing_imports_info",
|
|
"pytype_strict_library",
|
|
)
|
|
|
|
package(
|
|
default_applicable_licenses = [],
|
|
default_visibility = ["//:__subpackages__"],
|
|
)
|
|
|
|
py_library_providing_imports_info(
|
|
name = "lib",
|
|
srcs = [
|
|
"__init__.py",
|
|
"mlir/__init__.py",
|
|
"mlir/dialects/__init__.py",
|
|
],
|
|
lib_rule = pytype_strict_library,
|
|
visibility = ["//jax:internal"] + jax_visibility("lib"),
|
|
deps = [
|
|
"//jax:version",
|
|
] + if_building_jaxlib([
|
|
"//jaxlib",
|
|
"//jaxlib:cpu_feature_guard",
|
|
"//jaxlib:utils",
|
|
"//jaxlib/triton",
|
|
"//jaxlib/mlir/_mlir_libs:register_jax_dialects",
|
|
"//jaxlib/mlir:arithmetic_dialect",
|
|
"//jaxlib/mlir:builtin_dialect",
|
|
"//jaxlib/mlir:chlo_dialect",
|
|
"//jaxlib/mlir:func_dialect",
|
|
"//jaxlib/mlir:ir",
|
|
"//jaxlib/mlir:math_dialect",
|
|
"//jaxlib/mlir:memref_dialect",
|
|
"//jaxlib/mlir:mhlo_dialect",
|
|
"//jaxlib/mlir:pass_manager",
|
|
"//jaxlib/mlir:scf_dialect",
|
|
"//jaxlib/mlir:sparse_tensor_dialect",
|
|
"//jaxlib/mlir:stablehlo_dialect",
|
|
"//jaxlib/mlir:vector_dialect",
|
|
# xla_client
|
|
]),
|
|
)
|