-
Notifications
You must be signed in to change notification settings - Fork 55
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
[Bug] arguments of clip drop after fusion #97
Comments
Thanks @soodoshll. |
KTong821
added a commit
to KTong821/hidet
that referenced
this issue
Apr 24, 2024
Define complete UNet, with forward pass broken into down, mid, and up sections. Useful diagrams [here](http://jalammar.github.io/illustrated-stable-diffusion/) Uses blocks defined in hidet-org#97. Heavily reduced version from diffusers containing only necessary features for stable diffusion v2-1. Towards hidet-org#57. --------- Co-authored-by: vadiklyutiy <[email protected]>
KTong821
added a commit
to KTong821/hidet
that referenced
this issue
Apr 24, 2024
Add UNet Down, Up, and Mid block definitions and attention transformer utility layer. Modules are designed so that kwargs passed to constructors are all the same config from huggingface with minimal changes - lots of shared values and too many parameters to list individually. Same kwargs are passed to nested objects. Open to other suggestions, although this is a single use case problem. Towards hidet-org#57.
vadiklyutiy
added a commit
that referenced
this issue
Jul 22, 2024
Define complete UNet, with forward pass broken into down, mid, and up sections. Useful diagrams [here](http://jalammar.github.io/illustrated-stable-diffusion/) Uses blocks defined in #97. Heavily reduced version from diffusers containing only necessary features for stable diffusion v2-1. Towards #57. --------- Co-authored-by: vadiklyutiy <[email protected]>
vadiklyutiy
pushed a commit
that referenced
this issue
Jul 22, 2024
Add UNet Down, Up, and Mid block definitions and attention transformer utility layer. Modules are designed so that kwargs passed to constructors are all the same config from huggingface with minimal changes - lots of shared values and too many parameters to list individually. Same kwargs are passed to nested objects. Open to other suggestions, although this is a single use case problem. Towards #57.
vadiklyutiy
added a commit
that referenced
this issue
Jul 23, 2024
Define complete UNet, with forward pass broken into down, mid, and up sections. Useful diagrams [here](http://jalammar.github.io/illustrated-stable-diffusion/) Uses blocks defined in #97. Heavily reduced version from diffusers containing only necessary features for stable diffusion v2-1. Towards #57. --------- Co-authored-by: vadiklyutiy <[email protected]>
vadiklyutiy
pushed a commit
that referenced
this issue
Jul 23, 2024
Add UNet Down, Up, and Mid block definitions and attention transformer utility layer. Modules are designed so that kwargs passed to constructors are all the same config from huggingface with minimal changes - lots of shared values and too many parameters to list individually. Same kwargs are passed to nested objects. Open to other suggestions, although this is a single use case problem. Towards #57.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This snippet gives the wrong result
It returns 6 instead of 1. The cuda code generated for clip op is just copying the input tensor without any condition statements. vmin and vmax seem to be dropped. Work well when
fuse_operator_pass
is disabled.The text was updated successfully, but these errors were encountered: