mirror of
https://github.com/ROCm/jax.git
synced 2025-04-14 10:56:06 +00:00
79 lines
1.2 KiB
Python
79 lines
1.2 KiB
Python
load(":build_defs.bzl", "jax_test")
|
|
|
|
jax_test(
|
|
name = "core_test",
|
|
srcs = ["tests/core_test.py"],
|
|
shard_count = {
|
|
"cpu": 5,
|
|
},
|
|
)
|
|
|
|
jax_test(
|
|
name = "lax_test",
|
|
srcs = ["tests/lax_test.py"],
|
|
shard_count = {
|
|
"cpu": 40,
|
|
"gpu": 20,
|
|
},
|
|
)
|
|
|
|
jax_test(
|
|
name = "lax_numpy_test",
|
|
srcs = ["tests/lax_numpy_test.py"],
|
|
shard_count = {
|
|
"cpu": 40,
|
|
"gpu": 20,
|
|
},
|
|
)
|
|
|
|
jax_test(
|
|
name = "lax_numpy_indexing_test",
|
|
srcs = ["tests/lax_numpy_indexing_test.py"],
|
|
shard_count = {
|
|
"cpu": 10,
|
|
"gpu": 2,
|
|
},
|
|
)
|
|
|
|
jax_test(
|
|
name = "lax_scipy_test",
|
|
srcs = ["tests/lax_scipy_test.py"],
|
|
shard_count = {
|
|
"cpu": 10,
|
|
"gpu": 2,
|
|
},
|
|
)
|
|
|
|
jax_test(
|
|
name = "random_test",
|
|
srcs = ["tests/random_test.py"],
|
|
)
|
|
|
|
jax_test(
|
|
name = "api_test",
|
|
srcs = ["tests/api_test.py"],
|
|
)
|
|
|
|
jax_test(
|
|
name = "batching_test",
|
|
srcs = ["tests/batching_test.py"],
|
|
)
|
|
|
|
jax_test(
|
|
name = "stax_test",
|
|
srcs = ["tests/stax_test.py"],
|
|
deps = [":stax"],
|
|
)
|
|
|
|
jax_test(
|
|
name = "minmax_test",
|
|
srcs = ["tests/minmax_test.py"],
|
|
deps = [":minmax"],
|
|
)
|
|
|
|
jax_test(
|
|
name = "lapax_test",
|
|
srcs = ["tests/lapax_test.py"],
|
|
deps = [":lapax"],
|
|
)
|