Skip to content

Commit d2231f4

Browse files
authored
Fix typo in fast branch explanation
1 parent 8d523f9 commit d2231f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func convertAudioFileToPCMArray(fileURL: URL, completionHandler: @escaping (Resu
117117

118118
You may find the performance of the transcription slow when compiling your app for the `Debug` build configuration. This is because the compiler doesn't fully optimize SwiftWhisper unless the build configuration is set to `Release`.
119119

120-
You can get around this by installing a version of SwiftWhisper that uses `.unsafeFlags(["-03"])` to force a maximum optimization. The easiest way to do this is to use the latest commit on the [`fast`](https://github.com/exPHAT/SwiftWhisper/tree/fast) branch. Alternatively, you can configure your scheme to build in the `Release` configuration.
120+
You can get around this by installing a version of SwiftWhisper that uses `.unsafeFlags(["-O3"])` to force maximum optimization. The easiest way to do this is to use the latest commit on the [`fast`](https://github.com/exPHAT/SwiftWhisper/tree/fast) branch. Alternatively, you can configure your scheme to build in the `Release` configuration.
121121

122122
```swift
123123
...

0 commit comments

Comments
 (0)