File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed
StabilityMatrix.Core/Models/Api/Comfy/Nodes Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 100100 <StyleInclude Source =" Controls/Inference/WanModelCard.axaml" />
101101 <StyleInclude Source =" Controls/Inference/PlasmaNoiseCard.axaml" />
102102 <StyleInclude Source =" Controls/Inference/NrsCard.axaml" />
103+ <StyleInclude Source =" Controls/Inference/CfzCudnnToggleCard.axaml" />
103104 <labs : ControlThemes />
104105
105106 <Style Selector =" DockControl" >
Original file line number Diff line number Diff line change @@ -93,11 +93,11 @@ RunningPackageService runningPackageService
9393 {
9494 modulesCard . AvailableModules = new [ ]
9595 {
96- typeof ( FluxHiresFixModule ) ,
97- typeof ( UpscalerModule ) ,
9896 typeof ( CfzCudnnToggleModule ) ,
99- typeof ( SaveImageModule ) ,
10097 typeof ( FaceDetailerModule ) ,
98+ typeof ( FluxHiresFixModule ) ,
99+ typeof ( SaveImageModule ) ,
100+ typeof ( UpscalerModule ) ,
101101 } ;
102102 modulesCard . DefaultModules = new [ ] { typeof ( FluxHiresFixModule ) , typeof ( UpscalerModule ) } ;
103103 modulesCard . InitializeDefaults ( ) ;
Original file line number Diff line number Diff line change @@ -100,11 +100,11 @@ TabContext tabContext
100100 {
101101 modulesCard . AvailableModules = new [ ]
102102 {
103- typeof ( HiresFixModule ) ,
104- typeof ( UpscalerModule ) ,
105103 typeof ( CfzCudnnToggleModule ) ,
106- typeof ( SaveImageModule ) ,
107104 typeof ( FaceDetailerModule ) ,
105+ typeof ( HiresFixModule ) ,
106+ typeof ( SaveImageModule ) ,
107+ typeof ( UpscalerModule ) ,
108108 } ;
109109 modulesCard . DefaultModules = new [ ] { typeof ( HiresFixModule ) , typeof ( UpscalerModule ) } ;
110110 modulesCard . InitializeDefaults ( ) ;
Original file line number Diff line number Diff line change @@ -1007,8 +1007,8 @@ public record CUDNNToggleAutoPassthrough
10071007 public ModelNodeConnection ? Model { get ; init ; }
10081008 public ConditioningNodeConnection ? Conditioning { get ; init ; }
10091009 public LatentNodeConnection ? Latent { get ; init ; }
1010- public required bool enable_cudnn { get ; init ; } = false ;
1011- public required bool cudnn_benchmark { get ; init ; } = false ;
1010+ public required bool EnableCudnn { get ; init ; } = false ;
1011+ public required bool CudnnBenchmark { get ; init ; } = false ;
10121012 }
10131013
10141014 /// <summary>
You can’t perform that action at this time.
0 commit comments