mirror of
https://github.com/ROCm/jax.git
synced 2025-04-16 11:56:07 +00:00

This change enables testing the wheels produced by the build rules in the presubmit using one `bazel test` command only. There are three options for running the tests: 1) `build_jaxlib=true`: the tests depend on JAX targets. 2) `build_jaxlib=false`: the tests depend on the wheel files located in the `dist` folder. 3) `build_jaxlib=wheel`: the tests depend on the py_import targets. PiperOrigin-RevId: 735765819
80 lines
1.9 KiB
Python
80 lines
1.9 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.
|
|
|
|
licenses(["notice"])
|
|
|
|
load(
|
|
"//jaxlib:jax.bzl",
|
|
"if_windows",
|
|
"py_library_providing_imports_info",
|
|
"pytype_library",
|
|
)
|
|
|
|
package(
|
|
default_applicable_licenses = [],
|
|
default_visibility = ["//:__subpackages__"],
|
|
)
|
|
|
|
exports_files([
|
|
"__init__.py",
|
|
"plugin_pyproject.toml",
|
|
"plugin_setup.py",
|
|
"pyproject.toml",
|
|
"setup.py",
|
|
])
|
|
|
|
py_library_providing_imports_info(
|
|
name = "cuda_plugin",
|
|
srcs = [
|
|
"__init__.py",
|
|
],
|
|
data = if_windows(
|
|
["@xla//xla/pjrt/c/pjrt_c_api_gpu_plugin.pyd"],
|
|
["@xla//xla/pjrt/c:pjrt_c_api_gpu_plugin.so"],
|
|
),
|
|
lib_rule = pytype_library,
|
|
)
|
|
|
|
config_setting(
|
|
name = "disable_jaxlib_for_cpu_build",
|
|
flag_values = {
|
|
"//jax:build_jaxlib": "false",
|
|
"@local_config_cuda//:enable_cuda": "False",
|
|
},
|
|
)
|
|
|
|
config_setting(
|
|
name = "disable_jaxlib_for_cuda12_build",
|
|
flag_values = {
|
|
"//jax:build_jaxlib": "false",
|
|
"@local_config_cuda//:enable_cuda": "True",
|
|
},
|
|
)
|
|
|
|
config_setting(
|
|
name = "enable_py_import_for_cpu_build",
|
|
flag_values = {
|
|
"//jax:build_jaxlib": "wheel",
|
|
"@local_config_cuda//:enable_cuda": "False",
|
|
},
|
|
)
|
|
|
|
config_setting(
|
|
name = "enable_py_import_for_cuda12_build",
|
|
flag_values = {
|
|
"//jax:build_jaxlib": "wheel",
|
|
"@local_config_cuda//:enable_cuda": "True",
|
|
},
|
|
)
|