Peter Hawkins b4629c230c Split weakref_lru_cache into its own extension.
Now that db11efab3b has landed, we're free to split up xla_extension without creating binary size problems or having to be quite so careful about cross-module dependencies. Here weakref_lru_cache has absolutely nothing to do with XLA.

There's no reason weakref_lru_cache is in the same Python extension as everything else.

PiperOrigin-RevId: 745271825
2025-04-08 13:34:47 -07:00

68 lines
2.1 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 = ["//jax:internal"],
)
py_library_providing_imports_info(
name = "lib",
srcs = [
"__init__.py",
"mlir/__init__.py",
"mlir/dialects/__init__.py",
"mosaic_gpu.py",
"triton.py",
],
lib_rule = pytype_strict_library,
visibility = ["//jax:internal"] + jax_visibility("lib"),
deps = [
"//jax:version",
] + if_building_jaxlib([
"//jaxlib",
"//jaxlib/mosaic/python:gpu_dialect",
"//jaxlib/mosaic/python:tpu_dialect",
"//jaxlib:cpu_feature_guard",
"//jaxlib:utils",
"//jaxlib:weakref_lru_cache",
"//jaxlib/xla:xla_client",
"//jaxlib/xla:xla_extension",
"//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:sdy_dialect",
"//jaxlib/mlir:sparse_tensor_dialect",
"//jaxlib/mlir:stablehlo_dialect",
"//jaxlib/mlir:vector_dialect",
]),
)