mirror of
https://github.com/vale981/ray
synced 2025-03-10 13:26:39 -04:00

* SGD native AMP initial commit * SGD native amp second pass * Update docs * Update TorchTrainer doc * Temp fix release test * Update release/sgd_tests/sgd_gpu/sgd_gpu_app_config.yaml Co-authored-by: Amog Kamsetty <amogkam@users.noreply.github.com>
17 lines
573 B
YAML
17 lines
573 B
YAML
base_image: "anyscale/ray-ml:nightly-py37-gpu"
|
|
env_vars: {}
|
|
debian_packages: []
|
|
|
|
python:
|
|
pip_packages: []
|
|
conda_packages: []
|
|
|
|
post_build_cmds:
|
|
- pip uninstall -y ray
|
|
- pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
|
|
- pip3 install ray[tune]
|
|
- pip3 install torch torchvision ipdb
|
|
- /home/ray/anaconda3/bin/python -m pip uninstall -y numpy
|
|
- rm -rf /home/ray/anaconda3/lib/python3.7/site-packages/numpy
|
|
- /home/ray/anaconda3/bin/pip install numpy==1.19.5
|
|
- git clone https://github.com/NVIDIA/apex && cd apex && pip install -v --no-cache-dir ./
|