mirror of
https://github.com/ROCm/jax.git
synced 2025-04-15 19:36:06 +00:00

The goal of this change is to catch PRs that introduce new warnings sooner. To help pass the environment variable more easily, rename the jax_test Bazel test macro to jax_multiplatform_test, and introduce a new jax_py_test macro that wraps py_test. Add code to both to set the environment variable. Add code to suppress some new warnings uncovered in CI. PiperOrigin-RevId: 678352286
66 lines
1.5 KiB
Python
66 lines
1.5 KiB
Python
# Copyright 2024 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("@rules_python//python:defs.bzl", "py_library")
|
|
load("//jaxlib:jax.bzl", "jax_py_test", "py_deps")
|
|
|
|
licenses(["notice"])
|
|
|
|
package(
|
|
default_applicable_licenses = [],
|
|
default_visibility = ["//jax:mosaic_gpu_users"],
|
|
)
|
|
|
|
exports_files(
|
|
srcs = [
|
|
"flash_attention.py",
|
|
"matmul.py",
|
|
],
|
|
visibility = ["//jax:internal"],
|
|
)
|
|
|
|
py_library(
|
|
name = "matmul",
|
|
srcs = ["matmul.py"],
|
|
deps = [
|
|
"//jax",
|
|
"//jax:mosaic_gpu",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "flash_attention",
|
|
srcs = ["flash_attention.py"],
|
|
deps = [
|
|
"//jax",
|
|
"//jax:mosaic_gpu",
|
|
],
|
|
)
|
|
|
|
jax_py_test(
|
|
name = "run_matmul",
|
|
srcs = ["matmul.py"],
|
|
main = "matmul.py",
|
|
tags = [
|
|
"manual",
|
|
"notap",
|
|
"requires-gpu-sm90-only",
|
|
],
|
|
deps = [
|
|
"//jax",
|
|
"//jax:mosaic_gpu",
|
|
"//learning/brain/research/jax:gpu_support",
|
|
] + py_deps("numpy"),
|
|
)
|