You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Render preview image per step, upgrade steps UI
* Update UI for preview options
* Reset preview image if disabled or at startup
* Update preview for ios
* Update preview help content text
* Add new option for denoised intermediates
* Cleanup edits from CR
- Also includes new Package.resolved
// Compute the actual steps at which previews should be made. For each preview, we multiply the ideal step size by the preview number, and round to the nearest integer.
36
+
// The result is converted to a `Set` for fast membership tests.
37
+
letpreviewIndices:Set<Int>=Set((0..<numPreviews).map{ previewIndex in
38
+
returnInt(round(Double(previewIndex)* idealStep))
39
+
})
40
+
41
+
// Construct an array of booleans where each value indicates whether or not a preview should be made at that step.
0 commit comments