//===--- Walsh.swift ------------------------------------------------------===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See http://swift.org/LICENSE.txt for license information // See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------===// import TestsUtils import Darwin func IsPowerOfTwo(x: Int) -> Bool { return (x & (x - 1)) == 0 } //Fast Walsh Hadamard Transform func WalshTransform(data: inout [Double]) { assert(IsPowerOfTwo(data.count), "Not a power of two") var temp = [Double](repeating: 0, count: data.count) var ret = WalshImpl(&data, &temp, 0, data.count) for i in 0.. [Double] { if (size == 1) { return data } let stride = size/2 for i in 0..