@@ -56,6 +56,8 @@ struct ControlsView: View {
56
56
@State private var disclosedGuidance = false
57
57
@State private var disclosedSteps = false
58
58
@State private var disclosedSeed = false
59
+ @State private var disclosedAdvanced = false
60
+ @State private var useANE = ( Settings . shared. userSelectedAttentionVariant ?? ModelInfo . defaultAttention) == . splitEinsum
59
61
60
62
// TODO: refactor download with similar code in Loading.swift (iOS)
61
63
@State private var stateSubscriber : Cancellable ?
@@ -64,28 +66,35 @@ struct ControlsView: View {
64
66
65
67
// TODO: make this computed, and observable, and easy to read
66
68
@State private var mustShowSafetyCheckerDisclaimer = false
67
-
69
+ @State private var mustShowModelDownloadDisclaimer = false // When changing advanced settings
70
+
68
71
@State private var showModelsHelp = false
69
72
@State private var showPromptsHelp = false
70
73
@State private var showGuidanceHelp = false
71
74
@State private var showStepsHelp = false
72
75
@State private var showSeedHelp = false
73
-
76
+ @State private var showAdvancedHelp = false
77
+
74
78
// Reasonable range for the slider
75
79
let maxSeed : UInt32 = 1000
76
80
77
81
func updateSafetyCheckerState( ) {
78
82
mustShowSafetyCheckerDisclaimer = generation. disableSafety && !Settings. shared. safetyCheckerDisclaimerShown
79
83
}
80
84
85
+ func updateANEState( ) {
86
+ Settings . shared. userSelectedAttentionVariant = useANE ? . splitEinsum : . original
87
+ modelDidChange ( model: Settings . shared. currentModel)
88
+ }
89
+
81
90
func modelDidChange( model: ModelInfo ) {
82
91
print ( " Loading model \( model) " )
83
92
Settings . shared. currentModel = model
84
93
85
94
pipelineLoader? . cancel ( )
86
95
pipelineState = . downloading( 0 )
87
96
Task . init {
88
- let loader = PipelineLoader ( model: model, maxSeed: maxSeed)
97
+ let loader = PipelineLoader ( model: model, variant : Settings . shared . userSelectedAttentionVariant , maxSeed: maxSeed)
89
98
self . pipelineLoader = loader
90
99
stateSubscriber = loader. statePublisher. sink { state in
91
100
DispatchQueue . main. async {
@@ -114,16 +123,20 @@ struct ControlsView: View {
114
123
}
115
124
}
116
125
126
+ func isModelDownloaded( _ model: ModelInfo , variant: AttentionVariant ? = nil ) -> Bool {
127
+ PipelineLoader ( model: model, variant: variant ?? Settings . shared. userSelectedAttentionVariant) . ready
128
+ }
129
+
117
130
func modelLabel( _ model: ModelInfo ) -> Text {
118
- let downloaded = PipelineLoader ( model: model ) . ready
131
+ let downloaded = isModelDownloaded ( model)
119
132
let prefix = downloaded ? " ● " : " ◌ " //"○ "
120
133
return Text ( prefix) . foregroundColor ( downloaded ? . accentColor : . secondary) + Text( model. modelVersion)
121
134
}
122
135
123
136
var body : some View {
124
137
VStack ( alignment: . leading) {
125
138
126
- Label ( " Adjustments " , systemImage: " gearshape.2 " )
139
+ Label ( " Generation Options " , systemImage: " gearshape.2 " )
127
140
. font ( . headline)
128
141
. fontWeight ( . bold)
129
142
Divider ( )
@@ -217,7 +230,6 @@ struct ControlsView: View {
217
230
}
218
231
} . foregroundColor ( . secondary)
219
232
}
220
- Divider ( )
221
233
222
234
DisclosureGroup ( isExpanded: $disclosedSteps) {
223
235
CompactSlider ( value: $generation. steps, in: 0 ... 150 , step: 5 ) {
@@ -244,7 +256,6 @@ struct ControlsView: View {
244
256
}
245
257
} . foregroundColor ( . secondary)
246
258
}
247
- Divider ( )
248
259
249
260
DisclosureGroup ( isExpanded: $disclosedSeed) {
250
261
let sliderLabel = generation. seed < 0 ? " Random Seed " : " Seed "
@@ -272,6 +283,47 @@ struct ControlsView: View {
272
283
}
273
284
} . foregroundColor ( . secondary)
274
285
}
286
+
287
+ if hasANE {
288
+ Divider ( )
289
+ DisclosureGroup ( isExpanded: $disclosedAdvanced) {
290
+ HStack {
291
+ Toggle ( " Use Neural Engine " , isOn: $useANE) . onChange ( of: useANE) { value in
292
+ guard let currentModel = ModelInfo . from ( modelVersion: model) else { return }
293
+ let variantDownloaded = isModelDownloaded ( currentModel, variant: useANE ? . splitEinsum : . original)
294
+ if variantDownloaded {
295
+ updateANEState ( )
296
+ } else {
297
+ mustShowModelDownloadDisclaimer. toggle ( )
298
+ }
299
+ }
300
+ . padding ( . leading, 10 )
301
+ Spacer ( )
302
+ }
303
+ . alert ( " Download Required " , isPresented: $mustShowModelDownloadDisclaimer, actions: {
304
+ Button ( " Cancel " , role: . destructive) { useANE. toggle ( ) }
305
+ Button ( " Download " , role: . cancel) { updateANEState ( ) }
306
+ } , message: {
307
+ Text ( " This setting requires a new version of the selected model. " )
308
+ } )
309
+ } label: {
310
+ HStack {
311
+ Label ( " Advanced " , systemImage: " terminal " ) . foregroundColor ( . secondary)
312
+ Spacer ( )
313
+ if disclosedAdvanced {
314
+ Button {
315
+ showAdvancedHelp. toggle ( )
316
+ } label: {
317
+ Image ( systemName: " info.circle " )
318
+ }
319
+ . buttonStyle ( . plain)
320
+ . popover ( isPresented: $showAdvancedHelp, arrowEdge: . trailing) {
321
+ advancedHelp ( $showAdvancedHelp)
322
+ }
323
+ }
324
+ } . foregroundColor ( . secondary)
325
+ }
326
+ }
275
327
}
276
328
}
277
329
. disclosureGroupStyle ( LabelToggleDisclosureGroupStyle ( ) )
0 commit comments