pythongosssss
8f0819da05
Prevent cleaning graph state on undo/redo ( #2255 )
...
* Prevent cleaning graph state on undo/redo
* Remove pause rendering due to LG bug
2023-12-11 12:33:35 -05:00
comfyanonymous
58b39151a4
Switch text encoder to manual cast.
...
Use fp16 text encoder weights for CPU inference to lower memory usage.
2023-12-10 23:00:54 -05:00
Dr.Lt.Data
5b825e75eb
mask editor bugfix
...
- Addressing the issue where an unnecessary hidden panel disrupts the drawing.
2023-12-11 00:24:28 +09:00
comfyanonymous
260b25aef8
Disable non blocking on mps.
2023-12-10 01:30:35 -05:00
comfyanonymous
733ff9e5ab
Implement GLora.
2023-12-09 18:15:26 -05:00
comfyanonymous
4d9a8c68bd
Make lora code a bit cleaner.
2023-12-09 14:15:09 -05:00
comfyanonymous
c5b23a06c1
Add instructions for those that have python 3.12
2023-12-09 13:41:30 -05:00
comfyanonymous
ce62a008e3
Merge branch 'group-reroute-fix' of https://github.com/pythongosssss/ComfyUI
2023-12-09 12:01:26 -05:00
comfyanonymous
d8418c55c7
Update pytorch nightly packaging workflow.
2023-12-09 12:01:17 -05:00
comfyanonymous
242f0a57d9
Use own clip vision model implementation.
2023-12-09 11:56:31 -05:00
pythongosssss
3ded163238
fix
2023-12-09 13:19:21 +00:00
pythongosssss
36f136b936
Fix internal reroutes connected to other groups
2023-12-09 13:04:35 +00:00
comfyanonymous
f54c2bf6fb
Cleanup.
2023-12-08 16:02:08 -05:00
comfyanonymous
d36e559dcf
Add linear_start and linear_end to model_config.sampling_settings
2023-12-08 02:49:30 -05:00
comfyanonymous
63349484b8
Make --gpu-only put intermediate values in GPU memory instead of cpu.
2023-12-08 02:35:45 -05:00
comfyanonymous
d9b51ff370
Fix hypertile.
2023-12-07 15:22:35 -05:00
comfyanonymous
f75e370acd
Support attention masking in CLIP implementation.
2023-12-07 02:51:02 -05:00
comfyanonymous
74bebee19f
Merge branch 'ht_deterministic' of https://github.com/asagi4/ComfyUI
2023-12-07 01:45:11 -05:00
comfyanonymous
782cf4f295
Cleaner CLIP text encoder implementation.
...
Use a simple CLIP model implementation instead of the one from
transformers.
This will allow some interesting things that would too hackish to implement
using the transformers implementation.
2023-12-06 23:50:03 -05:00
asagi4
6806b383ad
Make HyperTile deterministic
2023-12-06 21:17:56 +02:00
comfyanonymous
1f1ef695bb
Slightly faster lora applying.
2023-12-06 05:13:14 -05:00
comfyanonymous
eacd9cf98b
Merge branch 'reroute-converted-inputs' of https://github.com/pythongosssss/ComfyUI
...
# Conflicts:
# web/extensions/core/widgetInputs.js
2023-12-06 03:01:35 -05:00
Dr.Lt.Data
1f12ab2fdb
improve: Mask Editor ( #2171 )
...
* renewal mask editor
* fix: ignoring keydown when 2nd open
2023-12-06 01:56:03 -05:00
comfyanonymous
75dc8a00ca
Merge branch 'primitive-text-replacement' of https://github.com/pythongosssss/ComfyUI
2023-12-05 23:11:03 -05:00
pythongosssss
3b3a2fa337
Allow widget placeholder replacement on primitives
2023-12-05 21:02:10 +00:00
pythongosssss
bc0a32e9ab
try to stop test failing
2023-12-05 20:28:52 +00:00
pythongosssss
5c8207baa0
reroute + primitive tests
2023-12-05 20:28:05 +00:00
pythongosssss
c767cbd515
Allow connecting primitivenode to reroutes
2023-12-05 20:27:13 +00:00
comfyanonymous
39bb52dc2c
Missed this one.
2023-12-05 12:48:41 -05:00
comfyanonymous
2620e3bc55
Fix memory issue with control loras.
2023-12-04 21:55:19 -05:00
comfyanonymous
e034f5709f
Fix control lora on fp8.
2023-12-04 13:47:41 -05:00
comfyanonymous
9002e58ce5
Less useless downcasting.
2023-12-04 12:53:46 -05:00
comfyanonymous
dfa7737afb
Use .itemsize to get dtype size for fp8.
2023-12-04 11:52:06 -05:00
comfyanonymous
080f5f4e84
UNET weights can now be stored in fp8.
...
--fp8_e4m3fn-unet and --fp8_e5m2-unet are the two different formats
supported by pytorch.
2023-12-04 11:10:00 -05:00
comfyanonymous
03e65605de
All the unet ops with weights are now handled by comfy.ops
2023-12-04 03:12:18 -05:00
comfyanonymous
e7fb9c9d67
Merge branch 'fix-template-sorting' of https://github.com/pythongosssss/ComfyUI
2023-12-03 22:51:23 -05:00
pythongosssss
a4ff1b2e6e
fix template sorting
2023-12-03 17:17:23 +00:00
pythongosssss
6b45fc50cb
allow muting group node
2023-12-03 17:04:16 +00:00
pythongosssss
a901a34487
Allow removing erroring embedded groups
...
Unregister group nodes on workflow change
2023-12-03 16:49:48 +00:00
comfyanonymous
31feea98b0
A different way of handling multiple images passed to SVD.
...
Previously when a list of 3 images [0, 1, 2] was used for a 6 frame video
they were concated like this:
[0, 1, 2, 0, 1, 2]
now they are concated like this:
[0, 0, 1, 1, 2, 2]
2023-12-03 03:31:47 -05:00
comfyanonymous
743e7af567
Load api workflow if regular workflow isn't in loaded image.
2023-12-02 13:56:11 -05:00
comfyanonymous
0c2397b2ee
Merge branch 'image-cache' of https://github.com/jn-jairo/ComfyUI
2023-12-02 13:02:33 -05:00
pythongosssss
d3f2725c7e
Fix node growing with DOM widgets when adding image even if enough space
2023-12-02 12:02:03 +00:00
Jairo Correa
6cc2b30769
Merge branch 'master' into image-cache
2023-12-02 05:16:21 -03:00
comfyanonymous
6e74717802
Update readme.
2023-12-01 18:29:33 -05:00
pythongosssss
6c9d8e70e3
Add Extension tests ( #2125 )
...
* Add test for extension hooks
Add afterConfigureGraph callback
* fix comment
2023-12-01 17:24:20 -05:00
comfyanonymous
a1c37a56a4
Fix extension widgets not working.
2023-12-01 04:13:04 -05:00
comfyanonymous
da6f8a07c5
Fix right click not working for some users.
2023-12-01 02:03:34 -05:00
comfyanonymous
3fa2174377
Support SD2.1 turbo checkpoint.
2023-11-30 19:27:03 -05:00
comfyanonymous
02b4cb5a7a
Do a garbage collect after the interval even if nothing is running.
2023-11-30 15:22:32 -05:00