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
* Update FFT Tests
I removed SinglePrecisionComplexConversions and DoublePrecisionComplexConversions - they weren't testing any new API.
2DSinglePrecision, 2DDoublePrecision, 1DSinglePrecision, and 1DDoublePrecision have all been updated to no longer use the deprecated initializer and avoid the temporary pointer warnings.
* Deprecate Split Complex inits
Deprecate init(fromInputArray:realParts:imaginaryParts:) for DSPSplitComplex and DSPDoubleSplitComplex
* Fix Availability
@available(macOS, introduced:10.15, deprecated, message:"Use the `withUnsafeMutableBufferPointer` method on the real and imaginary arrays to create `DSPSplitComplex` for a defined scope.")
333
+
@available(iOS, introduced:13.0, deprecated, message:"Use the `withUnsafeMutableBufferPointer` method on the real and imaginary arrays to create `DSPSplitComplex` for a defined scope.")
334
+
@available(watchOS, introduced:6.0, deprecated, message:"Use the `withUnsafeMutableBufferPointer` method on the real and imaginary arrays to create `DSPSplitComplex` for a defined scope.")
335
+
@available(tvOS, introduced:13.0, deprecated, message:"Use the `withUnsafeMutableBufferPointer` method on the real and imaginary arrays to create `DSPSplitComplex` for a defined scope.")
336
+
@available(*, deprecated, message:"Use the `withUnsafeMutableBufferPointer` method on the real and imaginary arrays to create `DSPSplitComplex` for a defined scope.")
334
337
extensionDSPSplitComplex{
335
338
336
339
/// Creates a new `DSPSplitComplex` structure from a real array not in even-odd split configuration.
@available(macOS, introduced:10.15, deprecated, message:"Use the `withUnsafeMutableBufferPointer` method on the real and imaginary arrays to create `DSPSplitComplex` for a defined scope.")
360
+
@available(iOS, introduced:13.0, deprecated, message:"Use the `withUnsafeMutableBufferPointer` method on the real and imaginary arrays to create `DSPSplitComplex` for a defined scope.")
361
+
@available(watchOS, introduced:6.0, deprecated, message:"Use the `withUnsafeMutableBufferPointer` method on the real and imaginary arrays to create `DSPSplitComplex` for a defined scope.")
362
+
@available(tvOS, introduced:13.0, deprecated, message:"Use the `withUnsafeMutableBufferPointer` method on the real and imaginary arrays to create `DSPSplitComplex` for a defined scope.")
363
+
@available(*, deprecated, message:"Use the `withUnsafeMutableBufferPointer` method on the real and imaginary arrays to create `DSPSplitComplex` for a defined scope.")
357
364
extensionDSPDoubleSplitComplex{
358
365
359
366
/// Creates a new `DSPDoubleSplitComplex` structure from a real array not in even-odd split configuration.
0 commit comments