From 115feab3df3b01e57c1003b30e8ed5875e39a742 Mon Sep 17 00:00:00 2001 From: Pedro Cuenca Date: Wed, 22 Feb 2023 12:55:55 +0100 Subject: [PATCH] Simplify labels. --- Diffusion-macOS/ControlsView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Diffusion-macOS/ControlsView.swift b/Diffusion-macOS/ControlsView.swift index db32050..b0a68a1 100644 --- a/Diffusion-macOS/ControlsView.swift +++ b/Diffusion-macOS/ControlsView.swift @@ -304,9 +304,9 @@ struct ControlsView: View { Divider() DisclosureGroup(isExpanded: $disclosedAdvanced) { Picker(selection: $generation.computeUnits, label: Text("Use")) { - Text("CPU and GPU").tag(ComputeUnits.cpuAndGPU) - Text("CPU and Neural Engine").tag(ComputeUnits.cpuAndNeuralEngine) - Text("CPU, GPU and NE").tag(ComputeUnits.all) + Text("GPU").tag(ComputeUnits.cpuAndGPU) + Text("Neural Engine").tag(ComputeUnits.cpuAndNeuralEngine) + Text("GPU and Neural Engine").tag(ComputeUnits.all) } .pickerStyle(.radioGroup) .onChange(of: generation.computeUnits) { units in