├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gpumux ├── __init__.py ├── gpumux.py └── templates │ └── home.html └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | *.pyc 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gpu-mux/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gpu-mux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gpu-mux/HEAD/README.md -------------------------------------------------------------------------------- /gpumux/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gpumux/gpumux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gpu-mux/HEAD/gpumux/gpumux.py -------------------------------------------------------------------------------- /gpumux/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gpu-mux/HEAD/gpumux/templates/home.html -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gpu-mux/HEAD/setup.py --------------------------------------------------------------------------------