Advanced mathematical types and functions for Swift
Swift Numerics provides a set of modules that support numerical computing in Swift.
These modules fall broadly into two categories:
There is some overlap between these two categories, and an API that begins in the first category may migrate into the second as it matures and new uses are discovered.
Swift Numerics modules are fine-grained.
For example, if you need support for Complex numbers, you can import ComplexModule[1] as a standalone module:
import ComplexModule
let z = Complex<Double>.i
There is also a top-level Numerics
module that re-exports the complete public interface of Swift Numerics:
import Numerics
// The entire Swift Numerics API is now available
Swift Numerics modules have minimal dependencies on other projects.
The current modules assume only the availability of the Swift and C standard libraries and the runtime support provided by compiler-rt.
Future expansion may assume the availability of other standard interfaces, such as BLAS (Basic Linear Algebra Subprograms) and LAPACK (Linear Algebra Package), but modules with more specialized dependencies (or dependencies that are not available on all platforms supported by Swift) belong in a separate package.
Because we intend to make it possible to adopt Swift Numerics modules in the standard library at some future point, Swift Numerics uses the same license and contribution guidelines as the Swift project.
To use Swift Numerics in a SwiftPM project:
Package.swift
file:.package(url: "https://github.com/apple/swift-numerics", from: "1.0.0"),
Numerics
as a dependency for your target:.target(name: "MyTarget", dependencies: [
.product(name: "Numerics", package: "swift-numerics"),
"AnotherModule"
]),
import Numerics
in your source code.The Swift Numerics package is source stable; version numbers follow Semantic Versioning.
The public API of the swift-numerics
package consists of non-underscored declarations that are marked either public
or usableFromInline
in modules re-exported by the top-level Numerics
module.
Interfaces that aren’t part of the public API may continue to change in any release, including patch releases.
Note that contents of the _NumericsShims
and _TestSupport
modules, as well as contents of the Tests
directory, explicitly are not public API.
The definitions therein may therefore change at whim, and the entire module may be removed in any new release.
If you have a use case that requires underscored operations, please raise an issue to request that they be made public API.
Future minor versions of the package may introduce changes to these rules as needed.
We’d like this package to quickly embrace Swift language and toolchain improvements that are relevant to its mandate.
Accordingly, from time to time, we expect that new versions of this package will require clients to upgrade to a more recent Swift toolchain release.
Requiring a new Swift release will only require a minor version bump.
Swift Numerics is a standalone library that is separate from the core Swift project, but it will sometimes act as a staging ground for APIs that will later be incorporated into the Swift Standard Library.
When that happens, such changes will be proposed to the Swift Standard Library using the established evolution process of the Swift project.
Swift Numerics uses GitHub issues to track bugs and features. We use pull requests for development.
Questions about how to use Swift Numerics modules, or issues that are not clearly bugs can be discussed in the “Swift Numerics” section of the Swift forums.
RealModule
ComplexModule
IntegerUtilities
(on main only, not yet present in a released tag)The module is named ComplexModule
instead of Complex
because Swift is currently unable to use the fully-qualified name for types when a type and module have the same name (discussion here: https://forums.swift.org/t/pitch-fully-qualified-name-syntax/28482).
This would prevent users of Swift Numerics who don’t need generic types from doing things such as:
import Complex
// I know I only ever want Complex<Double>, so I shouldn't need the generic parameter.
typealias Complex = Complex.Complex<Double> // This doesn't work, because name lookup fails.
For this reason, modules that would have this ambiguity are suffixed with Module
within Swift Numerics:
import ComplexModule
// I know I only ever want Complex<Double>, so I shouldn't need the generic parameter.
typealias Complex = ComplexModule.Complex<Double>
// But I can still refer to the generic type by qualifying the name if I need it occasionally:
let a = ComplexModule.Complex<Float>
The Real
module does not contain a Real
type, but does contain a Real
protocol.
Users may want to define their own Real
type (and possibly re-export the Real
module)–that is why the suffix is also applied there.
New modules have to evaluate this decision carefully, but can err on the side of adding the suffix.
It’s expected that most users will simply import Numerics
, so this isn’t an issue for them. ↩︎