├── LICENSE ├── README.md ├── cassio ├── DATASETS.md ├── README.md ├── gpu_job.slurm └── test_gpu.py ├── client ├── README.md └── config ├── greene ├── README.md ├── gpu_job.slurm ├── submitit_example │ ├── env.sh │ ├── python-greene │ ├── run_with_submitit.py │ └── slurm.py ├── sweep_job.slurm ├── test_gpu.py └── test_sweep.py └── prince ├── README.md ├── gpu_job.slurm └── test_gpu.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/README.md -------------------------------------------------------------------------------- /cassio/DATASETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/cassio/DATASETS.md -------------------------------------------------------------------------------- /cassio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/cassio/README.md -------------------------------------------------------------------------------- /cassio/gpu_job.slurm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/cassio/gpu_job.slurm -------------------------------------------------------------------------------- /cassio/test_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/cassio/test_gpu.py -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/client/README.md -------------------------------------------------------------------------------- /client/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/client/config -------------------------------------------------------------------------------- /greene/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/greene/README.md -------------------------------------------------------------------------------- /greene/gpu_job.slurm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/greene/gpu_job.slurm -------------------------------------------------------------------------------- /greene/submitit_example/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/greene/submitit_example/env.sh -------------------------------------------------------------------------------- /greene/submitit_example/python-greene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/greene/submitit_example/python-greene -------------------------------------------------------------------------------- /greene/submitit_example/run_with_submitit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/greene/submitit_example/run_with_submitit.py -------------------------------------------------------------------------------- /greene/submitit_example/slurm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/greene/submitit_example/slurm.py -------------------------------------------------------------------------------- /greene/sweep_job.slurm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/greene/sweep_job.slurm -------------------------------------------------------------------------------- /greene/test_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/greene/test_gpu.py -------------------------------------------------------------------------------- /greene/test_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/greene/test_sweep.py -------------------------------------------------------------------------------- /prince/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/prince/README.md -------------------------------------------------------------------------------- /prince/gpu_job.slurm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/prince/gpu_job.slurm -------------------------------------------------------------------------------- /prince/test_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyu-dl/cluster-support/HEAD/prince/test_gpu.py --------------------------------------------------------------------------------