Skip to content

Commit 99e8d5e

Browse files
authored
(torchx/schedulers) Retire ray scheduler
Differential Revision: D82584920 Pull Request resolved: #1120
1 parent 25c4737 commit 99e8d5e

File tree

15 files changed

+0
-1662
lines changed

15 files changed

+0
-1662
lines changed

.github/workflows/components-integration-tests.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ jobs:
2424
platform: ubuntu-latest
2525
- scheduler: "local_docker"
2626
platform: linux.24_04.4x
27-
- scheduler: "ray"
28-
platform: ubuntu-latest
2927
fail-fast: false
3028
runs-on: ${{ matrix.platform }}
3129
permissions:

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ TorchX currently supports:
1919
* AWS Batch
2020
* Docker
2121
* Local
22-
* Ray (prototype)
2322
* GCP Batch (prototype)
2423

2524
Need a scheduler not listed? [Let us know!](https://github.com/pytorch/torchx/issues?q=is%3Aopen+is%3Aissue+label%3Ascheduler-request)
@@ -58,9 +57,6 @@ pip install "torchx[dev]"
5857
# install torchx Kubernetes / Volcano support
5958
pip install "torchx[kubernetes]"
6059

61-
# install torchx Ray support
62-
pip install "torchx[ray]"
63-
6460
# install torchx GCP Batch support
6561
pip install "torchx[gcp_batch]"
6662
```

dev-requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ torchtext==0.18.0
2929
torchvision==0.23.0
3030
typing-extensions
3131
ts==0.5.1
32-
ray[default]
3332
wheel
3433

3534
# lint (linter versions are managed by lintrunner)

docs/source/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ Works With
7474
schedulers/kubernetes
7575
schedulers/kubernetes_mcad
7676
schedulers/slurm
77-
schedulers/ray
7877
schedulers/aws_batch
7978
schedulers/aws_sagemaker
8079
schedulers/lsf

docs/source/quickstart.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ run command for local works out of the box on remote.
174174
$ torchx run --scheduler slurm dist.ddp -j 2x2 --script dist_app.py
175175
$ torchx run --scheduler kubernetes dist.ddp -j 2x2 --script dist_app.py
176176
$ torchx run --scheduler aws_batch dist.ddp -j 2x2 --script dist_app.py
177-
$ torchx run --scheduler ray dist.ddp -j 2x2 --script dist_app.py
178177
```
179178
<!-- #endmd -->
180179

docs/source/schedulers/ray.rst

Lines changed: 0 additions & 19 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ def get_nightly_version():
8888
"google-cloud-runtimeconfig>=0.33.2",
8989
],
9090
"kubernetes": ["kubernetes>=11"],
91-
"ray": ["ray>=1.12.1"],
9291
"dev": dev_reqs,
9392
},
9493
# PyPI package information.

torchx/examples/apps/aws/ray/ray_cluster.yaml

Lines changed: 0 additions & 142 deletions
This file was deleted.

torchx/schedulers/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"aws_batch": "torchx.schedulers.aws_batch_scheduler",
2323
"aws_sagemaker": "torchx.schedulers.aws_sagemaker_scheduler",
2424
"gcp_batch": "torchx.schedulers.gcp_batch_scheduler",
25-
"ray": "torchx.schedulers.ray_scheduler",
2625
"lsf": "torchx.schedulers.lsf_scheduler",
2726
}
2827

torchx/schedulers/ray/__init__.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)