Skip to content
Closed
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion StabilityMatrix.Core/Models/Packages/ComfyZluda.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,11 @@ public override List<LaunchOptionDefinition> LaunchOptions
},
};

options.AddRange(base.LaunchOptions.Where(x => x.Name != "Cross Attention Method"));
options.AddRange(
base.LaunchOptions.Where(x =>
x.Name != "Cross Attention Method" && x.Name != "Enable Manager"
)
);
Comment thread
NeuralFault marked this conversation as resolved.
return options;
}
}
Expand Down
Loading