2023-08-01 16:42:26 -07:00
|
|
|
# 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",
|
2024-02-19 03:47:08 -08:00
|
|
|
"jax_generate_backend_suites",
|
2023-08-01 16:42:26 -07:00
|
|
|
"jax_test",
|
|
|
|
"py_deps",
|
|
|
|
)
|
|
|
|
|
|
|
|
licenses(["notice"])
|
|
|
|
|
|
|
|
package(
|
|
|
|
default_applicable_licenses = [],
|
|
|
|
default_visibility = ["//visibility:private"],
|
|
|
|
)
|
|
|
|
|
2024-02-19 03:47:08 -08:00
|
|
|
jax_generate_backend_suites()
|
|
|
|
|
2023-08-01 16:42:26 -07:00
|
|
|
jax_test(
|
|
|
|
name = "pallas_test",
|
|
|
|
srcs = [
|
|
|
|
"pallas_test.py",
|
|
|
|
],
|
2024-01-12 08:20:06 -08:00
|
|
|
backend_tags = {
|
|
|
|
"gpu": ["noasan"], # https://github.com/openai/triton/issues/2918
|
|
|
|
},
|
2023-09-08 08:07:30 -07:00
|
|
|
config_tags_overrides = {
|
|
|
|
"gpu_x32": {
|
|
|
|
"ondemand": False, # Include in presubmit.
|
|
|
|
},
|
|
|
|
},
|
2023-08-01 16:42:26 -07:00
|
|
|
disable_backends = [
|
|
|
|
"cpu",
|
|
|
|
"tpu",
|
|
|
|
],
|
|
|
|
disable_configs = [
|
|
|
|
"gpu",
|
|
|
|
"gpu_a100",
|
|
|
|
],
|
|
|
|
enable_configs = [
|
|
|
|
"gpu_x32",
|
|
|
|
"gpu_a100_x32",
|
|
|
|
],
|
2024-02-22 02:31:33 -08:00
|
|
|
env = {
|
|
|
|
"JAX_TRITON_COMPILE_VIA_XLA": "0",
|
|
|
|
},
|
2023-08-01 16:42:26 -07:00
|
|
|
shard_count = 4,
|
|
|
|
deps = [
|
2024-02-20 02:41:38 -08:00
|
|
|
"//jax:pallas_gpu",
|
2023-08-01 16:42:26 -07:00
|
|
|
] + py_deps("absl/testing") + py_deps("numpy"),
|
|
|
|
)
|
|
|
|
|
2024-02-15 11:43:31 -08:00
|
|
|
jax_test(
|
|
|
|
name = "gpu_attention_test",
|
|
|
|
srcs = [
|
|
|
|
"gpu_attention_test.py",
|
|
|
|
],
|
|
|
|
backend_tags = {
|
|
|
|
"gpu": ["noasan"], # https://github.com/openai/triton/issues/2918
|
|
|
|
},
|
|
|
|
config_tags_overrides = {
|
|
|
|
"gpu_x32": {
|
|
|
|
"ondemand": False, # Include in presubmit.
|
|
|
|
},
|
|
|
|
},
|
|
|
|
disable_backends = [
|
|
|
|
"cpu",
|
|
|
|
"tpu",
|
|
|
|
],
|
|
|
|
disable_configs = [
|
|
|
|
"gpu",
|
|
|
|
"gpu_a100",
|
|
|
|
"gpu_p100",
|
|
|
|
],
|
|
|
|
enable_configs = [
|
|
|
|
"gpu_x32",
|
|
|
|
"gpu_a100_x32",
|
|
|
|
],
|
|
|
|
shard_count = 1,
|
|
|
|
deps = [
|
2024-02-20 02:41:38 -08:00
|
|
|
"//jax:pallas_gpu",
|
|
|
|
"//jax:pallas_gpu_ops",
|
2024-02-15 11:43:31 -08:00
|
|
|
] + py_deps("absl/testing") + py_deps("numpy"),
|
|
|
|
)
|
|
|
|
|
2024-02-16 04:36:58 -08:00
|
|
|
jax_test(
|
|
|
|
name = "pallas_via_xla_test",
|
|
|
|
srcs = [
|
|
|
|
"pallas_test.py",
|
|
|
|
],
|
|
|
|
backend_tags = {
|
|
|
|
"gpu": ["noasan"], # https://github.com/openai/triton/issues/2918
|
|
|
|
},
|
|
|
|
config_tags_overrides = {
|
|
|
|
"gpu_x32": {
|
|
|
|
"ondemand": False, # Include in presubmit.
|
|
|
|
},
|
|
|
|
},
|
|
|
|
disable_backends = [
|
|
|
|
"cpu",
|
|
|
|
"tpu",
|
|
|
|
],
|
|
|
|
disable_configs = [
|
|
|
|
"gpu",
|
|
|
|
"gpu_a100",
|
|
|
|
"gpu_p100",
|
|
|
|
],
|
|
|
|
enable_configs = [
|
|
|
|
"gpu_x32",
|
|
|
|
"gpu_a100_x32",
|
|
|
|
],
|
|
|
|
shard_count = 4,
|
|
|
|
deps = [
|
2024-02-20 02:41:38 -08:00
|
|
|
"//jax:pallas_gpu",
|
2024-02-16 04:36:58 -08:00
|
|
|
] + py_deps("absl/testing") + py_deps("numpy"),
|
|
|
|
)
|
|
|
|
|
2024-01-31 09:33:09 -08:00
|
|
|
jax_test(
|
2023-08-01 16:42:26 -07:00
|
|
|
name = "indexing_test",
|
|
|
|
srcs = [
|
|
|
|
"indexing_test.py",
|
|
|
|
],
|
2024-01-31 09:33:09 -08:00
|
|
|
disable_backends = [
|
|
|
|
"gpu",
|
|
|
|
"tpu",
|
|
|
|
],
|
2023-08-01 16:42:26 -07:00
|
|
|
deps = [
|
2024-02-20 02:41:38 -08:00
|
|
|
"//jax:pallas",
|
2023-08-01 16:42:26 -07:00
|
|
|
] + py_deps("absl/testing") + py_deps("hypothesis") + py_deps("numpy"),
|
|
|
|
)
|
2023-12-05 00:09:34 -08:00
|
|
|
|
|
|
|
jax_test(
|
|
|
|
name = "all_gather_test",
|
|
|
|
srcs = [
|
|
|
|
"all_gather_test.py",
|
|
|
|
],
|
|
|
|
disable_backends = [
|
|
|
|
"cpu",
|
|
|
|
"gpu",
|
|
|
|
],
|
|
|
|
deps = [
|
2024-02-20 02:41:38 -08:00
|
|
|
"//jax:pallas_tpu_ops",
|
2023-12-05 00:09:34 -08:00
|
|
|
] + py_deps("absl/testing") + py_deps("numpy") + py_deps("hypothesis"),
|
|
|
|
)
|
2024-01-11 14:41:21 -08:00
|
|
|
|
|
|
|
jax_test(
|
|
|
|
name = "splash_attention_kernel_test",
|
|
|
|
srcs = [
|
|
|
|
"splash_attention_kernel_test.py",
|
|
|
|
],
|
|
|
|
disable_backends = [
|
|
|
|
"cpu",
|
|
|
|
"gpu",
|
|
|
|
],
|
|
|
|
shard_count = 18,
|
2024-01-12 08:21:05 -08:00
|
|
|
tags = [
|
2024-01-15 01:40:05 -08:00
|
|
|
"noasan", # Times out.
|
2024-01-12 08:21:05 -08:00
|
|
|
"nomsan", # Times out.
|
|
|
|
"notsan", # Times out.
|
|
|
|
],
|
2024-01-11 14:41:21 -08:00
|
|
|
deps = [
|
2024-02-20 02:41:38 -08:00
|
|
|
"//jax:pallas_tpu_ops",
|
2024-01-11 14:41:21 -08:00
|
|
|
] + py_deps("absl/testing") + py_deps("numpy") + py_deps("hypothesis"),
|
|
|
|
)
|
|
|
|
|
|
|
|
jax_test(
|
|
|
|
name = "splash_attention_mask_test",
|
|
|
|
srcs = [
|
|
|
|
"splash_attention_mask_test.py",
|
|
|
|
],
|
|
|
|
disable_backends = [
|
|
|
|
"cpu",
|
|
|
|
"gpu",
|
|
|
|
],
|
|
|
|
deps = [
|
2024-02-20 02:41:38 -08:00
|
|
|
"//jax:pallas_tpu_ops",
|
2024-01-11 14:41:21 -08:00
|
|
|
] + py_deps("absl/testing") + py_deps("numpy") + py_deps("hypothesis"),
|
|
|
|
)
|
2024-01-18 18:16:08 -08:00
|
|
|
|
|
|
|
jax_test(
|
|
|
|
name = "pallas_call_tpu_test",
|
|
|
|
srcs = ["pallas_call_tpu_test.py"],
|
|
|
|
disable_backends = [
|
|
|
|
"gpu",
|
|
|
|
],
|
|
|
|
main = "pallas_call_tpu_test.py",
|
|
|
|
deps = [
|
2024-02-20 02:41:38 -08:00
|
|
|
"//jax:extend",
|
|
|
|
"//jax:pallas_tpu",
|
|
|
|
"//jax:pallas_tpu_ops",
|
2024-01-18 18:16:08 -08:00
|
|
|
],
|
|
|
|
)
|