├── .gitignore ├── README.md ├── bentofile.yaml ├── configuration.yaml ├── images └── result.png ├── import_models.py ├── requirements.txt ├── service.py ├── start-server.py └── txt2img_test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/IF-multi-GPUs-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/IF-multi-GPUs-demo/HEAD/README.md -------------------------------------------------------------------------------- /bentofile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/IF-multi-GPUs-demo/HEAD/bentofile.yaml -------------------------------------------------------------------------------- /configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/IF-multi-GPUs-demo/HEAD/configuration.yaml -------------------------------------------------------------------------------- /images/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/IF-multi-GPUs-demo/HEAD/images/result.png -------------------------------------------------------------------------------- /import_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/IF-multi-GPUs-demo/HEAD/import_models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/IF-multi-GPUs-demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/IF-multi-GPUs-demo/HEAD/service.py -------------------------------------------------------------------------------- /start-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/IF-multi-GPUs-demo/HEAD/start-server.py -------------------------------------------------------------------------------- /txt2img_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentoml/IF-multi-GPUs-demo/HEAD/txt2img_test.sh --------------------------------------------------------------------------------