├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── gpu_eater.py ├── train.py └── train_ddp.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnstark/gpueater/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnstark/gpueater/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnstark/gpueater/HEAD/__init__.py -------------------------------------------------------------------------------- /gpu_eater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnstark/gpueater/HEAD/gpu_eater.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnstark/gpueater/HEAD/train.py -------------------------------------------------------------------------------- /train_ddp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnstark/gpueater/HEAD/train_ddp.py --------------------------------------------------------------------------------