1
0
mirror of https://github.com/ROCm/jax.git synced 2025-04-26 08:06:08 +00:00
jax authors eb912ad0d9 Create jax wheel build target.
This change introduces a uniform way of building the artifacts and controlling the filename version suffixes (see the changes for `jaxlib`, `jax-cuda-plugin` and `jax-cuda-pjrt` in https://github.com/jax-ml/jax/pull/25126)

Previously `jax` wheel was built via `python3 -m build` command. The resulting wheel contained the python packages files in `jax` folder (e.g. the files in the subdirs that have `__init__.py` file).

You can still build the `jax` wheel with `python3 -m build` command.

Bazel `jax` wheel target: `//:jax_wheel`

Environment variables combinations for creating wheels with different versions:
  * self-built wheel (default build rule behavior): `--repo_env=ML_WHEEL_TYPE=snapshot`
  * release: `--repo_env=ML_WHEEL_TYPE=release`
  * release candidate: `--repo_env=ML_WHEEL_TYPE=release --repo_env=ML_WHEEL_VERSION_SUFFIX=-rc1`
  * nightly build: `--repo_env=ML_WHEEL_TYPE=custom --repo_env=ML_WHEEL_BUILD_DATE=<YYYYmmdd> --repo_env=ML_WHEEL_GIT_HASH=$(git rev-parse HEAD)`

PiperOrigin-RevId: 730916743
2025-02-25 09:30:08 -08:00

166 lines
3.4 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.
# Package for Mosaic-specific Pallas extensions
load("@rules_python//python:defs.bzl", "py_library")
load("//jaxlib:jax.bzl", "py_deps")
package(
default_applicable_licenses = [],
default_visibility = [
"//jax:internal",
],
)
py_library(
name = "core",
srcs = [
"__init__.py",
"core.py",
],
deps = [
"//jax",
"//jax/_src/pallas",
],
)
py_library(
name = "verification",
srcs = ["verification.py"],
deps = [
"//jax",
"//jax:mlir",
"//jax/_src/lib",
],
)
py_library(
name = "error_handling",
srcs = ["error_handling.py"],
deps = [
"//jax:compiler",
"//jax:traceback_util",
"//jax/_src/lib",
],
)
py_library(
name = "primitives",
srcs = ["primitives.py"],
deps = [
":core",
"//jax",
"//jax:core",
"//jax:dtypes",
"//jax:mlir",
"//jax:pretty_printer",
"//jax:tree_util",
"//jax:typing",
"//jax:util",
"//jax/_src/pallas",
],
)
py_library(
name = "pallas_call_registration",
srcs = ["pallas_call_registration.py"],
deps = [
":core",
":lowering",
":verification",
"//jax",
"//jax:config",
"//jax:core",
"//jax:mlir",
"//jax:mosaic",
"//jax:sharding_impls",
"//jax:source_info_util",
"//jax:tpu_custom_call",
"//jax/_src/lib",
"//jax/_src/pallas",
] + py_deps("numpy"),
)
py_library(
name = "lowering",
srcs = ["lowering.py"],
deps = [
":core",
":error_handling",
":primitives",
"//jax",
"//jax:ad_util",
"//jax:core",
"//jax:dtypes",
"//jax:mesh",
"//jax:mlir",
"//jax:mosaic",
"//jax:partial_eval",
"//jax:source_info_util",
"//jax:util",
"//jax:xla",
"//jax/_src/lib",
"//jax/_src/pallas",
] + py_deps("numpy"),
)
py_library(
name = "pipeline",
srcs = ["pipeline.py"],
deps = [
":core",
":primitives",
"//jax",
"//jax:api_util",
"//jax:pallas",
"//jax:util",
"//jax/_src/pallas",
"//jax/extend:backend",
] + py_deps("numpy"),
)
py_library(
name = "random",
srcs = ["random.py"],
deps = [
":primitives",
"//jax",
"//jax:typing",
] + py_deps("numpy"),
)
py_library(
name = "helpers",
srcs = ["helpers.py"],
deps = [
":core",
":primitives",
"//jax",
"//jax/_src/pallas",
],
)
py_library(
name = "interpret",
srcs = ["interpret.py"],
deps = [
":core",
":primitives",
"//jax",
"//jax/_src/lib",
"//jax/_src/pallas",
] + py_deps("numpy"),
)