-
Notifications
You must be signed in to change notification settings - Fork 369
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stable Diffusion (GLIGEN) Download Error #955
Comments
Hi @isouf , the supported SD version is a bit old, please refer to https://github.com/facebookincubator/AITemplate/tree/main/examples/05_stable_diffusion to check the supported version. |
Hi @ipiszy, many thanks - may I confirm if I could use the Alternative Pipeline for older SD versions? |
I think it should work. |
@ipiszy when I try to run the example of the Alternative Pipeline I get the following error. Any ideas why is this happening? root@f020e85e0199:/AITemplate/examples/05_stable_diffusion# python3 scripts/demo_alt.py --hf-hub-or-path runwayml/stable-diffusion-v1-5 --ckpt v1-5-pruned-emaonly.ckpt
INFO:aitemplate.backend.build_cache_base:Build cache disabled
2023-11-17 11:28:10,752 INFO <aitemplate.testing.detect_target> Set target to CUDA
Traceback (most recent call last):
File "scripts/demo_alt.py", line 64, in <module>
run()
File "/usr/local/lib/python3.8/dist-packages/click/core.py", line 1157, in __call__
return self.main(*args, **kwargs)
File "/usr/local/lib/python3.8/dist-packages/click/core.py", line 1078, in main
rv = self.invoke(ctx)
File "/usr/local/lib/python3.8/dist-packages/click/core.py", line 1434, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/usr/local/lib/python3.8/dist-packages/click/core.py", line 783, in invoke
return __callback(*args, **kwargs)
File "scripts/demo_alt.py", line 44, in run
pipe = StableDiffusionAITPipeline(
File "/AITemplate/examples/05_stable_diffusion/src/pipeline_stable_diffusion_ait_alt.py", line 690, in __init__
self.clip_ait_exe = self.init_ait_module(
File "/AITemplate/examples/05_stable_diffusion/src/pipeline_stable_diffusion_ait_alt.py", line 778, in init_ait_module
mod = Model(os.path.join(workdir, model_name, "test.so"))
File "/usr/local/lib/python3.8/dist-packages/aitemplate/compiler/model.py", line 228, in __init__
self.DLL = self._DLLWrapper(lib_path)
File "/usr/local/lib/python3.8/dist-packages/aitemplate/compiler/model.py", line 179, in __init__
self.DLL = ctypes.cdll.LoadLibrary(lib_path)
File "/usr/lib/python3.8/ctypes/__init__.py", line 451, in LoadLibrary
return self._dlltype(name)
File "/usr/lib/python3.8/ctypes/__init__.py", line 373, in __init__
self._handle = _dlopen(self._name, mode)
OSError: tmp/CLIPTextModel/test.so: cannot open shared object file: No such file or directory |
Hello and thank you for your great work 🙇
I am trying to use AIT to speed up GLIGEN (stable diffusion). Here is my fork where you can see the main changes I made to the codebase. In short, I updated Docker and adapted examples/05_stable_diffusion to allow me to download, compile and run
StableDiffusionGLIGENTextImagePipeline
.The issue I am facing is that I cannot run the
download_pipeline.py
script successfully. Here is the print out:Steps to reproduce:
./docker/build.sh cuda && docker run --gpus all -it ait:latest
python3 scripts/download_pipeline.py --model-name "anhnct/Gligen_Inpainting_Text_Image"
The text was updated successfully, but these errors were encountered: