fannkuch-redux Swift #3 program
source code
/* The Computer Language Benchmarks Game
https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
contributed by Ralph Ganszky
converted to Swift 3 by Daniel Muellenborn
*/
import Glibc
import Dispatch
// Get number of elements to permute
let n: Int
if CommandLine.arguments.count > 1 {
n = Int(CommandLine.arguments[1]) ?? 12
} else {
n = 12
}
// Calculate factorials
var fact = UnsafeMutablePointer<Int>.allocate(capacity: n+1)
fact[0] = 1
for i in 1...n {
fact[i] = fact[i-1] * i
}
// Determine number of tasks
let nchunks = 150
let chunksz = (fact[n] + nchunks - 1) / nchunks
let ntasks = (fact[n] + chunksz - 1) / chunksz
// Allocate result vectors
var maxFlips = [Int](repeating: 0, count: ntasks)
var chkSums = [Int](repeating: 0, count: ntasks)
struct Fannkuch {
let n: Int
var p: UnsafeMutablePointer<Int>
var pp: UnsafeMutablePointer<Int>
var count: UnsafeMutablePointer<Int>
init(n: Int) {
self.n = n
// Allocate buffers of this instance
p = UnsafeMutablePointer<Int>.allocate(capacity: n)
pp = UnsafeMutablePointer<Int>.allocate(capacity: n)
count = UnsafeMutablePointer<Int>.allocate(capacity: n)
}
mutating func firstPermutation(_ idx: Int) {
for i in 0..<n {
p[i] = i
}
let start = n - 1
var indx = idx
for i in stride(from: start, to: 0, by: -1) {
let d = indx / fact[i]
count[i] = d
indx = indx % fact[i]
pp.assign(from: p, count: i+1)
for j in 0...i {
p[j] = j+d <= i ? pp[j+d] : pp[j+d-i-1]
}
}
}
mutating func nextPermutation() -> Bool {
var first = p[1]
p[1] = p[0]
p[0] = first
var i = 1
count[i] += 1
while count[i] > i {
count[i] = 0
i += 1
p[0] = p[1]
let next = p[0]
for j in 1..<i {
p[j] = p[j+1]
}
p[i] = first
first = next
count[i] += 1
}
return true
}
mutating func countFlips() -> Int {
var flips = 1
var first = p[0]
if p[first] != 0 {
pp.assign(from: p, count: n)
repeat {
flips += 1
var lo = 1
var hi = first - 1
while lo < hi {
let t = pp[lo]
pp[lo] = pp[hi]
pp[hi] = t
lo += 1
hi -= 1
}
let t = pp[first]
pp[first] = first
first = t
} while pp[first] != 0
}
return flips
}
mutating func runTask(_ task: Int) {
let idxMin = task * chunksz
let idxMax = (fact[n] < idxMin + chunksz) ? fact[n] : idxMin + chunksz
// Determine first permutation
firstPermutation(idxMin)
var maxflips = 1
var chksum = 0
var i = idxMin
while true {
if p[0] != 0 {
let flips = countFlips()
if flips > maxflips {
maxflips = flips
}
chksum += i%2 == 0 ? flips : -flips
}
i += 1
if i == idxMax {
break
}
let _ = nextPermutation()
}
maxFlips[task] = maxflips
chkSums[task] = chksum
p.deallocate()
pp.deallocate()
count.deallocate()
}
}
func printResult(_ n: Int, res: Int, chk: Int) {
print("\(chk)\nPfannkuchen(\(n)) = \(res)")
}
let queue = DispatchQueue.global(qos: .default)
DispatchQueue.concurrentPerform(iterations: ntasks) { i in
var fannkuch = Fannkuch(n: n)
fannkuch.runTask(i)
}
// Collect results
var res = 0
for flips in maxFlips {
if flips > res {
res = flips
}
}
var chksum = 0
for chk in chkSums {
chksum += chk
}
printResult(n, res: res, chk: chksum)
fact.deallocate()
notes, command-line, and program output
NOTES:
64-bit Ubuntu quad core
Swift version 6.0
(swift-6.0-RELEASE)
Target: x86_64-unknown-linux-gnu
Wed, 18 Sep 2024 23:13:04 GMT
MAKE:
/opt/src/swift-6.0-RELEASE/usr/bin/swiftc fannkuchredux.swift-3.swift -Ounchecked -wmo -o fannkuchredux.swift-3.swift_run
fannkuchredux.swift-3.swift:60:13: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
58 | indx = indx % fact[i]
59 |
60 | pp.assign(from: p, count: i+1)
| |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
| `- note: use 'update(from:count:)' instead
61 | for j in 0...i {
62 | p[j] = j+d <= i ? pp[j+d] : pp[j+d-i-1]
fannkuchredux.swift-3.swift:93:13: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
91 | var first = p[0]
92 | if p[first] != 0 {
93 | pp.assign(from: p, count: n)
| |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)'
| `- note: use 'update(from:count:)' instead
94 | repeat {
95 | flips += 1
14.23s to complete and log all make actions
COMMAND LINE:
./fannkuchredux.swift-3.swift_run 12
PROGRAM OUTPUT:
3968050
Pfannkuchen(12) = 65