Files
2026-07-13 13:17:40 +08:00

44 lines
1013 B
Python

load("//bazel:python.bzl", "py_test_run_all_notebooks")
filegroup(
name = "train_pytorch_examples",
srcs = glob(["*.ipynb"]),
visibility = ["//doc:__subpackages__"],
)
# GPU Tests
py_test_run_all_notebooks(
size = "large",
include = ["*.ipynb"],
data = ["//doc/source/train/examples/pytorch:train_pytorch_examples"],
exclude = ["convert_existing_pytorch_code_to_ray_train.ipynb"], # CPU test
tags = [
"exclusive",
"gpu",
"ray_air",
"team:ml",
],
)
# CPU Tests
py_test_run_all_notebooks(
size = "large",
include = ["convert_existing_pytorch_code_to_ray_train.ipynb"],
data = ["//doc/source/train/examples/pytorch:train_pytorch_examples"],
exclude = [],
tags = [
"exclusive",
"ray_air",
"team:ml",
],
)
filegroup(
name = "pytorch_examples_ci_configs",
srcs = glob([
"**/ci/aws.yaml",
"**/ci/gce.yaml",
]),
visibility = ["//doc/source/train/examples:__pkg__"],
)