-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathany_device_parallel.py
More file actions
1483 lines (1302 loc) · 64.4 KB
/
any_device_parallel.py
File metadata and controls
1483 lines (1302 loc) · 64.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import torch
import torch.nn as nn
import types
import copy
import gc
import weakref
import threading
from types import SimpleNamespace
from dataclasses import dataclass, fields, is_dataclass
from concurrent.futures import ThreadPoolExecutor, as_completed
import comfy.model_management
# ----------------------------------------------------------------------------
# Thread-local state for pipeline mode
# ----------------------------------------------------------------------------
_pipeline_state = threading.local()
def get_pipeline_mode():
return getattr(_pipeline_state, 'active', False)
def set_pipeline_mode(active):
_pipeline_state.active = active
class ParallelBlock(nn.Module):
"""
A wrapper that handles dual-mode execution:
1. Data Parallel (Batch > 1): Runs the local block immediately.
2. Pipeline Parallel (Batch = 1): Moves data to assigned device/replica.
"""
def __init__(self, local_block, block_idx, owner_device, peers, is_last_block, lead_device):
super().__init__()
self.local_block = local_block
self.block_idx = block_idx
self.owner_device = owner_device
self.peers = peers
self.is_last_block = is_last_block
self.lead_device = lead_device
self.owner_block = self.peers.get(str(owner_device), local_block)
def _move_tensor(self, x, device):
"""Recursively move tensors, lists, tuples, dicts, and dataclasses to target device."""
if isinstance(x, torch.Tensor):
if x.device != device:
return x.to(device, non_blocking=True)
return x
elif isinstance(x, (list, tuple)):
return type(x)(self._move_tensor(item, device) for item in x)
elif isinstance(x, dict):
return {k: self._move_tensor(v, device) for k, v in x.items()}
elif is_dataclass(x):
# Shallow copy dataclass and move its tensor fields
new_obj = copy.copy(x)
for field in fields(x):
val = getattr(x, field.name)
setattr(new_obj, field.name, self._move_tensor(val, device))
return new_obj
return x
def _move_args(self, args, device):
return tuple(self._move_tensor(a, device) for a in args)
def _move_kwargs(self, kwargs, device):
return {k: self._move_tensor(v, device) for k, v in kwargs.items()}
def forward(self, *args, **kwargs):
if not get_pipeline_mode():
# Standard execution for Data Parallel (Batch > 1)
return self.local_block(*args, **kwargs)
target_device = self.owner_device
# --- CRITICAL FIX ---
# Do NOT check args[0].device to skip moving.
# Main input might be on target_device (from prev block),
# but auxiliary inputs (timesteps, context) might still be on Lead Device.
# We must ensure ALL inputs are on target_device.
args_moved = self._move_args(args, target_device)
kwargs_moved = self._move_kwargs(kwargs, target_device)
# Execute on target replica
out = self.owner_block(*args_moved, **kwargs_moved)
if self.is_last_block:
# Return data to Lead Device for final layers/output processing
out = self._move_tensor(out, self.lead_device)
return out
# ----------------------------------------------------------------------------
# Utilities
# ----------------------------------------------------------------------------
def is_float8_dtype(dtype):
if dtype is None:
return False
dtype_name = str(dtype)
fp8_types = ['float8_e4m3fn', 'float8_e5m2', 'float8_e4m3fnuz', 'float8_e5m2fnuz', 'float8']
return any(t in dtype_name for t in fp8_types)
def check_sm80_support(device_name):
if not device_name.startswith("cuda"):
return True
try:
idx = int(device_name.split(":")[-1])
capability = torch.cuda.get_device_capability(idx)
major, _ = capability
return major >= 8
except Exception as e:
print(f"[ParallelAnything] Warning: Could not check compute capability for {device_name}: {e}")
return False
def device_supports_float8(device):
if isinstance(device, str):
if not device.startswith("cuda"):
return False
device = torch.device(device)
if device.type != 'cuda':
return False
try:
cap = torch.cuda.get_device_capability(device)
major, minor = cap
return (major, minor) >= (9, 0)
except:
return False
def disable_flash_xformers(model):
disable_configs = [
('set_use_memory_efficient_attention_xformers', False),
('set_use_flash_attention_2', False),
('disable_xformers_memory_efficient_attention', None),
('use_xformers', False),
('use_flash_attention', False),
('use_flash_attention_2', False),
('_use_memory_efficient_attention', False),
('_flash_attention_enabled', False),
]
for attr_or_method, value in disable_configs:
if hasattr(model, attr_or_method):
try:
method = getattr(model, attr_or_method)
if callable(method) and value is None:
method()
elif callable(method):
method(value)
else:
setattr(model, attr_or_method, value)
except Exception:
pass
for name, module in model.named_modules():
if any(x in name.lower() for x in ['attn', 'attention', 'transformer']):
for attr in ['use_xformers', 'use_flash_attention', 'use_flash_attention_2', '_use_memory_efficient_attention', 'enable_flash', 'enable_xformers']:
if hasattr(module, attr):
try:
setattr(module, attr, False)
except AttributeError:
pass
if hasattr(module, 'set_processor'):
try:
from diffusers.models.attention_processor import Attention
module.set_processor(Attention())
except Exception:
pass
def clear_flux_caches(model):
cache_attrs = [
'img_ids', 'txt_ids', '_img_ids', '_txt_ids', 'cached_img_ids', 'cached_txt_ids',
'pos_emb', '_pos_emb', 'pos_embed', '_pos_embed', 'cached_pos_emb',
'rope', '_rope', 'freqs_cis', '_freqs_cis', 'freqs', '_freqs',
'cache', '_cache', 'kv_cache', '_kv_cache', 'attn_bias', '_attn_bias',
'rope_cache', '_rope_cache', 'freqs_cis_cache', '_freqs_cis_cache',
'temporal_ids', 'frame_ids', 'video_ids', 'temp_pos_emb',
]
cleared_count = 0
def clear_attrs(obj, name_prefix=""):
nonlocal cleared_count
for attr in cache_attrs:
if hasattr(obj, attr):
try:
val = getattr(obj, attr)
if val is not None:
setattr(obj, attr, None)
cleared_count += 1
except (AttributeError, TypeError):
pass
clear_attrs(model)
for name, module in model.named_modules():
clear_attrs(module, name)
if cleared_count > 0:
print(f"[ParallelAnything] Cleared {cleared_count} cached tensors")
def aggressive_cleanup():
gc.collect()
if torch.cuda.is_available():
torch.cuda.synchronize()
torch.cuda.empty_cache()
for i in range(torch.cuda.device_count()):
try:
with torch.cuda.device(f'cuda:{i}'):
torch.cuda.synchronize()
torch.cuda.empty_cache()
except:
pass
comfy.model_management.soft_empty_cache()
def cleanup_parallel_model(model_ref):
model = model_ref() if isinstance(model_ref, weakref.ref) else model_ref
if model is None:
return
if not getattr(model, '_true_parallel_active', False):
return
print("[ParallelAnything] Cleaning up parallel model...")
should_purge_cache = getattr(model, '_parallel_purge_cache', True)
should_purge_models = getattr(model, '_parallel_purge_models', False)
# Restore original forward
if hasattr(model, '_original_forward'):
try:
model.forward = model._original_forward
delattr(model, '_original_forward')
except Exception:
pass
# Cleanup replicas
if hasattr(model, '_parallel_replicas'):
replicas = model._parallel_replicas
for dev_name, replica in list(replicas.items()):
try:
if hasattr(replica, 'cpu'):
replica.cpu()
clear_flux_caches(replica)
if hasattr(replica, 'gradient_checkpointing'):
replica.gradient_checkpointing = False
if hasattr(replica, '_gradient_checkpointing_func'):
replica._gradient_checkpointing_func = None
except Exception as e:
print(f"[ParallelAnything] Warning: Error cleaning up replica on {dev_name}: {e}")
try:
delattr(model, '_parallel_replicas')
except Exception:
pass
# Clear other attributes
for attr in ['_true_parallel_active', '_parallel_devices', '_parallel_streams',
'_parallel_weights', '_auto_vram_balance', '_parallel_purge_cache',
'_parallel_purge_models']:
if hasattr(model, attr):
try:
delattr(model, attr)
except Exception:
pass
if should_purge_models:
try:
print("[ParallelAnything] Purging models from VRAM...")
comfy.model_management.unload_all_models()
except Exception as e:
print(f"[ParallelAnything] Warning: Could not unload models: {e}")
gc.collect()
if torch.cuda.is_available():
torch.cuda.empty_cache()
if should_purge_cache:
try:
comfy.model_management.soft_empty_cache()
except:
pass
if torch.cuda.is_available():
for i in range(torch.cuda.device_count()):
try:
with torch.cuda.device(f'cuda:{i}'):
torch.cuda.empty_cache()
except:
pass
def extract_model_config(model):
config = {}
possible_attrs = [
'in_channels', 'out_channels', 'vec_in_dim', 'context_in_dim', 'hidden_size',
'mlp_ratio', 'num_heads', 'depth', 'depth_single_blocks', 'depth_single',
'axes_dim', 'theta', 'patch_size', 'qkv_bias', 'guidance_embed',
'txt_ids_dim', 'img_ids_dim', 'num_res_blocks', 'attention_resolutions',
'dropout', 'channel_mult', 'num_classes', 'use_checkpoint', 'num_heads_upsample',
'use_scale_shift_norm', 'resblock_updown', 'use_new_attention_order',
'adm_in_channels', 'num_noises', 'context_dim', 'n_heads', 'd_head',
'transformer_depth', 'model_channels', 'max_depth', 'num_frames',
'temporal_compression', 'temporal_dim', 'video_length',
]
for attr in possible_attrs:
if hasattr(model, attr):
try:
val = getattr(model, attr)
if not callable(val) and not isinstance(val, (nn.Module, torch.nn.Parameter, torch.Tensor)):
config[attr] = val
except Exception:
pass
if hasattr(model, 'params'):
try:
params = model.params
if isinstance(params, dict):
config.update(params)
elif is_dataclass(params):
for field_info in fields(params):
try:
val = getattr(params, field_info.name)
if not isinstance(val, (torch.Tensor, nn.Module)):
config[field_info.name] = val
except Exception:
pass
else:
params_dict = vars(params)
if params_dict:
config.update({k: v for k, v in params_dict.items() if not isinstance(v, (torch.Tensor, nn.Module))})
except Exception:
pass
if hasattr(model, 'config'):
try:
cfg = model.config
if isinstance(cfg, dict):
config.update({k: v for k, v in cfg.items() if not isinstance(v, (torch.Tensor, nn.Module))})
else:
cfg_dict = {k: v for k, v in vars(cfg).items() if not k.startswith('_') and not callable(v) and not isinstance(v, (torch.Tensor, nn.Module))}
config.update(cfg_dict)
except Exception:
pass
if hasattr(model, 'unet_config') and isinstance(model.unet_config, dict):
config.update({k: v for k, v in model.unet_config.items() if not isinstance(v, (torch.Tensor, nn.Module))})
clean_config = {}
for k, v in config.items():
if v is not None and not isinstance(v, (torch.Tensor, nn.Module)):
try:
copy.deepcopy(v)
clean_config[k] = v
except Exception:
pass
return clean_config
def clone_dataclass_or_object(obj, target_device=None):
if is_dataclass(obj):
try:
field_values = {}
for field_info in fields(obj):
try:
val = getattr(obj, field_info.name)
if isinstance(val, torch.Tensor):
field_values[field_info.name] = val.clone().detach()
elif is_dataclass(val):
field_values[field_info.name] = clone_dataclass_or_object(val)
elif isinstance(val, (list, tuple)):
new_val = []
for v in val:
if is_dataclass(v):
new_val.append(clone_dataclass_or_object(v))
elif isinstance(v, torch.Tensor):
new_val.append(v.clone())
else:
new_val.append(copy.deepcopy(v))
field_values[field_info.name] = type(val)(new_val)
else:
field_values[field_info.name] = copy.deepcopy(val)
except Exception:
# Fallback to direct reference if deep copy fails
field_values[field_info.name] = getattr(obj, field_info.name)
return obj.__class__(**field_values)
except Exception:
pass
try:
return copy.deepcopy(obj)
except Exception:
return obj
def safe_getattr(obj, attr, default=None):
return getattr(obj, attr, default)
def clone_module_simple(module, target_device):
if module is None:
return None
module_class = module.__class__
if isinstance(module, (nn.Linear, nn.Conv2d, nn.Conv1d)):
try:
weight = safe_getattr(module, 'weight', None)
weight_dtype = weight.dtype if weight is not None else torch.float32
has_bias = safe_getattr(module, 'bias', None) is not None
supports_fp8 = device_supports_float8(target_device)
if not supports_fp8 and is_float8_dtype(weight_dtype):
weight_dtype = torch.float16
if isinstance(module, nn.Linear):
new_mod = nn.Linear(
safe_getattr(module, 'in_features'),
safe_getattr(module, 'out_features'),
bias=has_bias,
device=target_device,
dtype=weight_dtype
)
elif isinstance(module, nn.Conv2d):
new_mod = nn.Conv2d(
safe_getattr(module, 'in_channels'),
safe_getattr(module, 'out_channels'),
safe_getattr(module, 'kernel_size', 1),
stride=safe_getattr(module, 'stride', 1),
padding=safe_getattr(module, 'padding', 0),
dilation=safe_getattr(module, 'dilation', 1),
groups=safe_getattr(module, 'groups', 1),
bias=has_bias,
padding_mode=safe_getattr(module, 'padding_mode', 'zeros'),
device=target_device,
dtype=weight_dtype
)
elif isinstance(module, nn.Conv1d):
new_mod = nn.Conv1d(
safe_getattr(module, 'in_channels'),
safe_getattr(module, 'out_channels'),
safe_getattr(module, 'kernel_size', 1),
stride=safe_getattr(module, 'stride', 1),
padding=safe_getattr(module, 'padding', 0),
dilation=safe_getattr(module, 'dilation', 1),
groups=safe_getattr(module, 'groups', 1),
bias=has_bias,
padding_mode=safe_getattr(module, 'padding_mode', 'zeros'),
device=target_device,
dtype=weight_dtype
)
with torch.no_grad():
if weight is not None:
if not supports_fp8 and is_float8_dtype(weight.dtype):
weight = weight.half()
new_mod.weight.copy_(weight)
if has_bias and safe_getattr(module, 'bias') is not None:
new_mod.bias.copy_(module.bias)
return new_mod
except Exception as e:
print(f"[ParallelAnything] Warning: Failed to reconstruct {module_class}: {e}")
if isinstance(module, (nn.LayerNorm, nn.BatchNorm2d, nn.GroupNorm)):
try:
weight = safe_getattr(module, 'weight', None)
weight_dtype = weight.dtype if weight is not None else torch.float32
supports_fp8 = device_supports_float8(target_device)
if not supports_fp8 and is_float8_dtype(weight_dtype):
weight_dtype = torch.float16
if isinstance(module, nn.LayerNorm):
new_mod = nn.LayerNorm(
safe_getattr(module, 'normalized_shape'),
eps=safe_getattr(module, 'eps', 1e-5),
elementwise_affine=safe_getattr(module, 'elementwise_affine', True),
device=target_device,
dtype=weight_dtype
)
elif isinstance(module, nn.BatchNorm2d):
new_mod = nn.BatchNorm2d(
safe_getattr(module, 'num_features'),
eps=safe_getattr(module, 'eps', 1e-5),
momentum=safe_getattr(module, 'momentum', 0.1),
affine=safe_getattr(module, 'affine', True),
track_running_stats=safe_getattr(module, 'track_running_stats', True),
device=target_device,
dtype=weight_dtype
)
elif isinstance(module, nn.GroupNorm):
new_mod = nn.GroupNorm(
safe_getattr(module, 'num_groups'),
safe_getattr(module, 'num_channels'),
eps=safe_getattr(module, 'eps', 1e-5),
affine=safe_getattr(module, 'affine', True),
device=target_device,
dtype=weight_dtype
)
with torch.no_grad():
if weight is not None:
if not supports_fp8 and is_float8_dtype(weight.dtype):
weight = weight.half()
new_mod.weight.copy_(weight)
if safe_getattr(module, 'bias') is not None:
new_mod.bias.copy_(module.bias)
if isinstance(module, (nn.BatchNorm2d, nn.GroupNorm)):
if safe_getattr(module, 'running_mean') is not None:
new_mod.running_mean.copy_(module.running_mean)
if safe_getattr(module, 'running_var') is not None:
new_mod.running_var.copy_(module.running_var)
return new_mod
except Exception as e:
print(f"[ParallelAnything] Warning: Failed to reconstruct norm layer {module_class}: {e}")
try:
new_mod = module_class.__new__(module_class)
nn.Module.__init__(new_mod)
supports_fp8 = device_supports_float8(target_device)
# Copy parameters
for name, param in module.named_parameters(recurse=False):
if param is not None:
new_param_data = param.clone().detach()
if not supports_fp8 and is_float8_dtype(new_param_data.dtype):
new_param_data = new_param_data.half()
new_param = nn.Parameter(new_param_data.to(device=target_device), requires_grad=False)
new_mod.register_parameter(name, new_param)
else:
new_mod.register_parameter(name, None)
# Copy buffers
for name, buffer in module.named_buffers(recurse=False):
if buffer is not None:
new_buffer_data = buffer.clone().detach()
if not supports_fp8 and is_float8_dtype(new_buffer_data.dtype):
new_buffer_data = new_buffer_data.half()
new_buffer = new_buffer_data.to(device=target_device)
new_mod.register_buffer(name, new_buffer)
else:
new_mod.register_buffer(name, None)
# Recursively clone children
for name, child in module.named_children():
if child is not None:
cloned_child = clone_module_simple(child, target_device)
new_mod.add_module(name, cloned_child)
# Copy other attributes
excluded_attrs = {
'_parameters', '_buffers', '_modules', '_non_persistent_buffers_set',
'_backward_pre_hooks', '_backward_hooks', '_forward_pre_hooks',
'_forward_hooks', '_state_dict_hooks', '_load_state_dict_pre_hooks',
'_extra_state', '_modules_to_load'
}
cache_attrs = {
'img_ids', 'txt_ids', '_img_ids', '_txt_ids', 'cached_img_ids', 'cached_txt_ids',
'pos_emb', '_pos_emb', 'pos_embed', '_pos_embed', 'freqs_cis', '_freqs_cis',
'freqs', '_freqs', 'cache', '_cache', 'kv_cache', '_kv_cache', 'attn_bias', '_attn_bias'
}
for key, value in module.__dict__.items():
if key in excluded_attrs:
continue
try:
if is_dataclass(value):
setattr(new_mod, key, clone_dataclass_or_object(value))
elif isinstance(value, torch.Tensor):
if key in cache_attrs:
setattr(new_mod, key, None)
else:
tensor_val = value.clone().detach()
if not supports_fp8 and is_float8_dtype(tensor_val.dtype):
tensor_val = tensor_val.half()
setattr(new_mod, key, tensor_val.to(target_device))
elif isinstance(value, (list, tuple)) and len(value) > 0 and isinstance(value[0], torch.Tensor):
if key in cache_attrs:
setattr(new_mod, key, None)
else:
converted = []
for t in value:
t_conv = t.clone().detach()
if not supports_fp8 and is_float8_dtype(t_conv.dtype):
t_conv = t_conv.half()
converted.append(t_conv.to(target_device))
setattr(new_mod, key, type(value)(converted))
else:
setattr(new_mod, key, copy.deepcopy(value))
except Exception:
pass
return new_mod
except Exception as e:
raise RuntimeError(f"Failed to clone module {module_class}: {e}")
def safe_model_clone(source_model, target_device, disable_flash=False):
clear_flux_caches(source_model)
try:
src_device = next(source_model.parameters()).device
except StopIteration:
src_device = torch.device('cpu')
if str(src_device) == str(target_device):
print(f"[ParallelAnything] Model already on {target_device}, using reference...")
clear_flux_caches(source_model)
return source_model
# Move to CPU first if on GPU
if src_device.type == 'cuda':
model_cpu = source_model.cpu()
if torch.cuda.is_available():
torch.cuda.synchronize()
torch.cuda.empty_cache()
comfy.model_management.soft_empty_cache()
else:
model_cpu = source_model
model_class = model_cpu.__class__
replica = None
method_used = "unknown"
try:
print(f"[ParallelAnything] Attempting efficient clone to {target_device}...")
config = extract_model_config(model_cpu)
state_dict = model_cpu.state_dict()
if not config:
raise RuntimeError("Could not extract model config")
try:
replica = model_class(**config)
replica = replica.to(target_device, non_blocking=False)
except TypeError as e:
if "missing" in str(e) and "required" in str(e):
try:
replica = model_class(config)
replica = replica.to(target_device, non_blocking=False)
except Exception:
config_obj = SimpleNamespace(**config)
replica = model_class(config_obj)
replica = replica.to(target_device, non_blocking=False)
else:
raise
print(f"[ParallelAnything] Loading parameters incrementally...")
supports_fp8 = device_supports_float8(target_device)
with torch.no_grad():
for key in list(state_dict.keys()):
try:
param = state_dict[key]
if '.' in key:
parts = key.split('.')
module = replica
for part in parts[:-1]:
module = getattr(module, part)
target_param = getattr(module, parts[-1])
else:
target_param = getattr(replica, key)
if isinstance(target_param, (torch.nn.Parameter, torch.Tensor)):
param_data = param.to(target_device, non_blocking=False)
if is_float8_dtype(param_data.dtype) and not supports_fp8:
param_data = param_data.half()
target_param.data.copy_(param_data)
del state_dict[key]
del param
if len(state_dict) % 50 == 0 and torch.cuda.is_available():
torch.cuda.empty_cache()
except Exception as e:
print(f"[ParallelAnything] Warning: Could not load {key}: {e}")
del state_dict
if src_device.type != 'cuda':
del model_cpu
gc.collect()
if torch.cuda.is_available():
torch.cuda.empty_cache()
method_used = "incremental_gpu"
except Exception as recon_error:
print(f"[ParallelAnything] Config reconstruction failed: {recon_error}")
print(f"[ParallelAnything] Attempting manual recursive cloning...")
replica = clone_module_simple(model_cpu, target_device)
method_used = "manual_recursive_clone"
if src_device.type != 'cuda':
del model_cpu
gc.collect()
if replica is None:
raise RuntimeError("All clone methods failed")
clear_flux_caches(replica)
if not device_supports_float8(target_device):
print(f"[ParallelAnything] Converting FP8 weights to FP16 for {target_device}...")
def convert_fp8_recursive(m):
for name, param in m.named_parameters():
if is_float8_dtype(param.dtype):
param.data = param.data.half()
for name, buffer in m.named_buffers():
if is_float8_dtype(buffer.dtype):
buffer.data = buffer.data.half()
for child in m.children():
convert_fp8_recursive(child)
convert_fp8_recursive(replica)
if hasattr(replica, 'gradient_checkpointing'):
replica.gradient_checkpointing = False
if hasattr(replica, '_gradient_checkpointing_func'):
replica._gradient_checkpointing_func = None
if hasattr(replica, 'hooks'):
replica.hooks = []
if hasattr(replica, '_hf_hook'):
replica._hf_hook = None
replica.eval()
for param in replica.parameters():
param.requires_grad = False
for buffer in replica.buffers():
if buffer.device != target_device:
buffer.data = buffer.data.to(target_device)
if disable_flash:
disable_flash_xformers(replica)
print(f"[ParallelAnything] Cloned via {method_used} to {target_device}")
return replica
def get_free_vram(device_name):
try:
if device_name.startswith("cuda"):
idx = int(device_name.split(":")[-1])
torch.cuda.set_device(idx)
free_memory = (
torch.cuda.get_device_properties(idx).total_memory - torch.cuda.memory_allocated(idx)
)
return free_memory / (1024 ** 2)
except Exception:
pass
return 0
def auto_split_batch(batch_size, devices, weights):
if not any(d.startswith("cuda") for d in devices):
return [max(1, int(batch_size * w)) for w in weights]
vram_avail = []
for d in devices:
if d.startswith("cuda"):
vram_avail.append(get_free_vram(d))
else:
vram_avail.append(0)
total_vram = sum(vram_avail)
if total_vram == 0:
return [max(1, int(batch_size * w)) for w in weights]
adjusted_weights = []
for i, (w, vram) in enumerate(zip(weights, vram_avail)):
if vram > 0:
vram_weight = vram / total_vram
adjusted = 0.7 * w + 0.3 * vram_weight
else:
adjusted = w
adjusted_weights.append(adjusted)
total = sum(adjusted_weights)
adjusted_weights = [w/total for w in adjusted_weights]
split_sizes = [max(1, int(batch_size * w)) for w in adjusted_weights]
split_sizes[-1] = batch_size - sum(split_sizes[:-1])
return split_sizes
class ParallelDevice:
@classmethod
def get_available_devices(cls):
devices = ["cpu"]
if torch.cuda.is_available():
for i in range(torch.cuda.device_count()):
devices.append(f"cuda:{i}")
if hasattr(torch.backends, 'mps') and torch.backends.mps.is_available():
devices.append("mps")
if hasattr(torch, 'xpu') and torch.xpu.is_available():
for i in range(torch.xpu.device_count()):
devices.append(f"xpu:{i}")
try:
import torch_directml
for i in range(torch_directml.device_count()):
devices.append(f"privateuseone:{i}")
except ImportError:
pass
return devices
@classmethod
def INPUT_TYPES(s):
available = s.get_available_devices()
default = "cuda:0" if any(d.startswith("cuda:0") for d in available) else available[0]
return {
"required": {
"device_id": (available, {
"default": default,
"tooltip": "Select available compute device (CPU/CUDA/MPS/XPU)"
}),
"percentage": ("FLOAT", {
"default": 50.0,
"min": 1.0,
"max": 100.0,
"step": 1.0,
"tooltip": "Percentage of batch (or layers for batch=1) to process on this device"
}),
},
"optional": {
"previous_devices": ("DEVICE_CHAIN", {
"tooltip": "Connect from another ParallelDevice node to chain multiple GPUs"
}),
}
}
RETURN_TYPES = ("DEVICE_CHAIN",)
RETURN_NAMES = ("device_chain",)
FUNCTION = "add_device"
CATEGORY = "utils/hardware"
DESCRIPTION = "Add a GPU/CPU/MPS/XPU device to the parallel processing chain"
def add_device(self, device_id, percentage, previous_devices=None):
if previous_devices is None:
previous_devices = []
config = {
"device": device_id,
"percentage": float(percentage),
"weight": float(percentage) / 100.0
}
new_chain = previous_devices.copy()
new_chain.append(config)
return (new_chain,)
class ParallelDeviceList:
@classmethod
def get_available_devices(cls):
devices = ["cpu"]
if torch.cuda.is_available():
for i in range(torch.cuda.device_count()):
devices.append(f"cuda:{i}")
if hasattr(torch.backends, 'mps') and torch.backends.mps.is_available():
devices.append("mps")
if hasattr(torch, 'xpu') and torch.xpu.is_available():
for i in range(torch.xpu.device_count()):
devices.append(f"xpu:{i}")
return devices
@classmethod
def INPUT_TYPES(s):
devices = s.get_available_devices()
def_dev = "cuda:0" if "cuda:0" in devices else devices[0]
return {
"required": {
"device_1": (devices, {"default": def_dev}),
"pct_1": ("FLOAT", {"default": 50.0, "min": 1.0, "max": 100.0, "step": 1.0}),
"device_2": (devices, {"default": devices[1] if len(devices) > 1 else def_dev}),
"pct_2": ("FLOAT", {"default": 50.0, "min": 0.0, "max": 100.0, "step": 1.0}),
},
"optional": {
"device_3": (devices, {"default": devices[2] if len(devices) > 2 else "cpu"}),
"pct_3": ("FLOAT", {"default": 0.0, "min": 0.0, "max": 100.0, "step": 1.0}),
"device_4": (devices, {"default": devices[3] if len(devices) > 3 else "cpu"}),
"pct_4": ("FLOAT", {"default": 0.0, "min": 0.0, "max": 100.0, "step": 1.0}),
}
}
RETURN_TYPES = ("DEVICE_CHAIN",)
RETURN_NAMES = ("device_chain",)
FUNCTION = "create_list"
CATEGORY = "utils/hardware"
def create_list(self, device_1, pct_1, device_2, pct_2, device_3="cpu", pct_3=0, device_4="cpu", pct_4=0):
chain = []
devices = [(device_1, pct_1), (device_2, pct_2), (device_3, pct_3), (device_4, pct_4)]
for dev_str, pct in devices:
if pct > 0:
chain.append({
"device": dev_str,
"percentage": float(pct),
"weight": float(pct) / 100.0
})
return (chain,)
class ParallelAnything:
@classmethod
def INPUT_TYPES(s):
return {
"required": {
"model": ("MODEL",),
"device_chain": ("DEVICE_CHAIN", {"tooltip": "Connect from ParallelDevice nodes"}),
},
"optional": {
"workload_split": ("BOOLEAN", {
"default": True,
"tooltip": "Enable multi-device processing"
}),
"auto_vram_balance": ("BOOLEAN", {
"default": True,
"tooltip": "Automatically adjust batch split based on available VRAM"
}),
"purge_cache": ("BOOLEAN", {
"default": True,
"tooltip": "Purge CUDA cache when cleaning up parallel resources"
}),
"purge_models": ("BOOLEAN", {
"default": False,
"tooltip": "Unload all models from VRAM when cleaning up (aggressive memory clearing)"
}),
}
}
RETURN_TYPES = ("MODEL",)
RETURN_NAMES = ("model",)
FUNCTION = "setup_parallel"
CATEGORY = "utils/hardware"
def setup_parallel(self, model, device_chain, workload_split=True, auto_vram_balance=False, purge_cache=True, purge_models=False):
if model is None or not device_chain:
return (model,)
# Extract the diffusion model from ComfyUI model wrapper
if hasattr(model, 'model') and hasattr(model.model, 'diffusion_model'):
target_model = model.model.diffusion_model
model_wrapper = model
elif hasattr(model, 'diffusion_model'):
target_model = model.diffusion_model
model_wrapper = None
else:
target_model = model
model_wrapper = None
# CRITICAL FIX: Check if model is stranded on CPU BEFORE determining original_device
# This happens when previous run moved it to CPU for safe cloning but didn't restore it
try:
current_device = next(target_model.parameters()).device
if current_device.type == 'cpu':
# Check if ComfyUI expects it elsewhere (load_device hint)
expected_device = None
if hasattr(model, 'load_device'):
expected_device = model.load_device
elif hasattr(model, 'model') and hasattr(model.model, 'load_device'):
expected_device = model.model.load_device
# If we have a hint that it should be on CUDA, restore it
if expected_device is not None and expected_device.type == 'cuda':
print(f"[ParallelAnything] Restoring stranded model from CPU to {expected_device}")
target_model = target_model.to(str(expected_device))
if torch.cuda.is_available():
torch.cuda.synchronize()
# Also check model_management's current device
else:
mgmt_device = comfy.model_management.get_torch_device()
if mgmt_device.type == 'cuda':
print(f"[ParallelAnything] Restoring stranded model from CPU to {mgmt_device}")
target_model = target_model.to(mgmt_device)
if torch.cuda.is_available():
torch.cuda.synchronize()
except StopIteration:
pass
except Exception as e:
print(f"[ParallelAnything] Warning during CPU restoration: {e}")
# NOW determine original device after potential restoration
try:
original_device = next(target_model.parameters()).device
original_device_str = str(original_device)
except StopIteration:
original_device = torch.device('cpu')
original_device_str = "cpu"
# Check if ComfyUI model has patches (LoRAs) that need to be applied
has_lora_patches = False
patches_location = None
if model_wrapper is not None:
# Check various locations where ComfyUI might store patches
locations = [
('patches', lambda m: m.patches),
('model_patcher.patches', lambda m: m.model_patcher.patches if hasattr(m, 'model_patcher') else None),
('model_patcher.patches_dict', lambda m: m.model_patcher.patches_dict if hasattr(m, 'model_patcher') else None),
]
for name, getter in locations:
try:
val = getter(model_wrapper)
if val and len(val) > 0:
has_lora_patches = True
patches_location = name
print(f"[ParallelAnything] Found {len(val)} patches in {name}")
except Exception:
pass
# Apply patches if found
if has_lora_patches:
try:
print("[ParallelAnything] Applying LoRA/Custom patches before cloning...")
if hasattr(model_wrapper, 'patch_model'):
model_wrapper.patch_model(device_to=comfy.model_management.get_torch_device())
print("[ParallelAnything] Patches applied successfully")
elif hasattr(model_wrapper, 'model_patcher') and hasattr(model_wrapper.model_patcher, 'patch_model'):
model_wrapper.model_patcher.patch_model(device_to=comfy.model_management.get_torch_device())