File tree Expand file tree Collapse file tree
Sources/Matft/core/object Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public class MfData: MfDataProtocol{
7171 case . Double:
7272 // dynamic allocation
7373 self . data_real = allocate_doubledata_from_flattenArray ( & flatten_realArray, toBool: mftype == . Bool)
74- self . data_imag = allocate_doubledata_from_flattenArray ( & flatten_imagArray, toBool: mftype == . Bool)
74+ self . data_imag = allocate_floatdata_from_flattenArray ( & flatten_imagArray, toBool: mftype == . Bool)
7575 }
7676 self . storedSize = flatten_realArray. count
7777 self . mftype = mftype
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import Matft
44/// Tests for WASI fallback implementations
55/// These tests validate the pure Swift implementations that are used when Accelerate is not available (e.g., on WASI)
66/// The tests run on macOS to ensure the fallback logic is correct before deploying to WASI
7- /* These tests were failing on CI only so we disabled them temporally
7+
88final class WASIFallbackTests : XCTestCase {
99
1010 // MARK: - Type Conversion Tests
@@ -465,5 +465,3 @@ final class WASIFallbackTests: XCTestCase {
465465 XCTAssertEqual ( scalar, 42 )
466466 }
467467}
468-
469- */
You can’t perform that action at this time.
0 commit comments