Skip to content

Commit

Permalink
[pallas] Move tests to the GPU- and TPU- specific directories
Browse files Browse the repository at this point in the history
  * Create pallas/gpu/gpu_ops_test.py for tests of ops in
    `jax.experimental.pallas.gpu.ops.
  * Move a number of test files that were specific to GPU and TPU to the "gpu" and "tpu" subdirectories.

PiperOrigin-RevId: 648805762
  • Loading branch information
gnecula authored and jax authors committed Jul 2, 2024
1 parent 484d09f commit 242c993
Show file tree
Hide file tree
Showing 13 changed files with 656 additions and 462 deletions.
159 changes: 0 additions & 159 deletions tests/pallas/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -65,40 +65,6 @@ jax_test(
] + py_deps("absl/testing") + py_deps("numpy"),
)

jax_test(
name = "gpu_attention_test",
srcs = [
"gpu_attention_test.py",
],
config_tags_overrides = {
"gpu_a100_x32": {
"ondemand": False, # Include in presubmit.
},
},
disable_backends = [
"cpu",
"tpu",
],
disable_configs = [
"gpu",
"gpu_x32",
"gpu_p100",
"gpu_p100_x32",
"gpu_a100",
"gpu_h100",
],
enable_configs = [
"gpu_a100_x32",
"gpu_h100_x32",
],
shard_count = 1,
deps = [
"//jax:pallas",
"//jax:pallas_gpu", # build_cleaner: keep
"//jax:pallas_gpu_ops",
] + py_deps("absl/testing") + py_deps("numpy"),
)

jax_test(
name = "ops_test",
srcs = [
Expand Down Expand Up @@ -144,131 +110,6 @@ jax_test(
] + py_deps("absl/testing") + py_deps("hypothesis") + py_deps("numpy"),
)

jax_test(
name = "all_gather_test",
srcs = [
"all_gather_test.py",
],
disable_backends = [
"cpu",
"gpu",
],
deps = [
"//jax:pallas_tpu_ops",
] + py_deps("absl/testing") + py_deps("numpy") + py_deps("hypothesis"),
)

jax_test(
name = "splash_attention_kernel_test",
srcs = [
"splash_attention_kernel_test.py",
],
disable_backends = [
"cpu",
"gpu",
],
shard_count = 18,
tags = [
"noasan", # Times out.
"nomsan", # Times out.
"notsan", # Times out.
],
deps = [
"//jax:pallas_tpu_ops",
] + 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 = [
"//jax:pallas_tpu_ops",
] + py_deps("absl/testing") + py_deps("numpy") + py_deps("hypothesis"),
)

jax_test(
name = "pallas_call_tpu_test",
srcs = ["pallas_call_tpu_test.py"],
disable_backends = [
"gpu",
],
main = "pallas_call_tpu_test.py",
deps = [
"//jax:extend",
"//jax:pallas_tpu",
"//jax:pallas_tpu_ops",
],
)

jax_test(
name = "pallas_pipeline_tpu_test",
srcs = ["pallas_pipeline_tpu_test.py"],
disable_backends = [
"gpu",
],
main = "pallas_pipeline_tpu_test.py",
shard_count = 2,
tags = [
"noasan", # Times out.
"nomsan", # Times out.
"notsan", # Times out.
],
deps = [
"//jax:extend",
"//jax:pallas_tpu",
"//jax:pallas_tpu_ops",
] + py_deps("hypothesis"),
)

jax_test(
name = "paged_attention_kernel_test",
srcs = ["paged_attention_kernel_test.py"],
disable_backends = [
"cpu",
"gpu",
],
shard_count = 5,
tags = [
"noasan", # Times out.
"nomsan", # Times out.
"notsan", # Times out.
],
deps = [
"//jax:pallas_tpu_ops",
] + py_deps("absl/testing") + py_deps("numpy"),
)

jax_test(
name = "gmm_test",
srcs = [
"gmm_test.py",
],
disable_backends = [
"cpu",
"gpu",
],
shard_count = 50,
tags = [
"noasan", # Times out.
"nomsan", # Times out.
"notsan", # Times out.
],
deps = [
"//jax:pallas_tpu_ops",
] + py_deps([
"absl/testing",
"absl/flags",
"numpy",
"hypothesis",
]),
)

jax_test(
name = "mosaic_gpu_test",
srcs = [
Expand Down
97 changes: 97 additions & 0 deletions tests/pallas/gpu/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
# 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",
"jax_generate_backend_suites",
"jax_test",
"py_deps",
)

licenses(["notice"])

package(
default_applicable_licenses = [],
default_visibility = ["//visibility:private"],
)

jax_generate_backend_suites()

jax_test(
name = "attention_test",
srcs = [
"attention_test.py",
],
config_tags_overrides = {
"gpu_a100_x32": {
"ondemand": False, # Include in presubmit.
},
},
disable_backends = [
"cpu",
"tpu",
],
disable_configs = [
"gpu",
"gpu_x32",
"gpu_p100",
"gpu_p100_x32",
"gpu_a100",
"gpu_h100",
],
enable_configs = [
"gpu_a100_x32",
"gpu_h100_x32",
],
shard_count = 1,
deps = [
"//jax:pallas",
"//jax:pallas_gpu", # build_cleaner: keep
"//jax:pallas_gpu_ops",
] + py_deps("absl/testing") + py_deps("numpy"),
)

jax_test(
name = "gpu_ops_test",
srcs = [
"gpu_ops_test.py",
],
config_tags_overrides = {
"gpu_a100_x32": {
"ondemand": False, # Include in presubmit.
},
},
disable_backends = [
"cpu",
"tpu",
],
disable_configs = [
"gpu",
"gpu_x32",
"gpu_a100",
"gpu_h100",
"gpu_p100",
"gpu_p100_x32",
],
enable_configs = [
"gpu_a100_x32",
"gpu_h100_x32",
],
shard_count = 2,
deps = [
"//jax:pallas",
"//jax:pallas_gpu",
"//jax:pallas_gpu_ops",
] + py_deps("absl/testing") + py_deps("numpy"),
)
File renamed without changes.
Loading

0 comments on commit 242c993

Please sign in to comment.