This directory contains the Swift Benchmark Suite.
To run Swift benchmarks, pass the --benchmark
flag to build-script
. The
current benchmark results will be compared to the previous run's results if
available. Results for each benchmark run are logged for future comparison.
For branch based development, take a baseline benchmark on the Swift master
branch, switch to a development branch containing potentially performance
impacting changes, and run the benchmarks again. Upon benchmark completion, the
benchmark results for the development branch will be compared to the most
recent benchmark results for master
.
By default, Swift benchmarks for OS X are compiled during the Swift build process. To build Swift benchmarks for additional platforms, pass the following flags:
$ swift/utils/build-script --ios --watchos --tvos
OS X benchmark driver binaries are placed in bin
alongside swiftc
.
Additional platform binaries are placed in the benchmark/bin
build directory.
To build the Swift benchmarks using only an Xcode installation: install an Xcode version with Swift support, install cmake 2.8.12, and ensure Xcode is selected with xcode-select.
The following build options are available:
-DSWIFT_EXEC
- An absolute path to the Swift driver (
swiftc
) to use to compile the benchmarks (default: Xcode'sswiftc
)
- An absolute path to the Swift driver (
-DSWIFT_LIBRARY_PATH
- An absolute path to the Swift standard library to use during compilation
(default:
swiftc_directory
/../lib/swift)
- An absolute path to the Swift standard library to use during compilation
(default:
-DONLY_PLATFORMS
- A list of platforms to build the benchmarks for (default: "macosx;iphoneos;appletvos;watchos")
-DSWIFT_OPTIMIZATION_LEVELS
- A list of Swift optimization levels to build against (default: "O;Onone;Ounchecked")
-DSWIFT_BENCHMARK_EMIT_SIB
- A boolean value indicating whether .sib files should be generated alongside .o files (default: FALSE)
The following build targets are available:
swift-benchmark-macosx-x86_64
swift-benchmark-iphoneos-arm64
swift-benchmark-iphoneos-armv7
swift-benchmark-appletvos-arm64
swift-benchmark-watchos-armv7k
Build steps (with example options):
$ cd benchmark
$ mkdir build
$ cd build
$ cmake ..
$ make -j8 swift-benchmark-macosx-x86_64
Benchmark driver binaries are placed in build/bin
and the required Swift
standard library dylibs are placed in build/lib
. The drivers dynamically link
Swift standard library dylibs from a path relative to their location
(../lib/swift) so the standard library should be distributed alongside them.
./Driver [ test_name [ test_name ] ] [ option [ option ] ]
--num-iters
- Control the number of loop iterations in each test sample
--num-samples
- Control the number of samples to take for each test
--list
- Print a list of available tests
$ ./Benchmark_O --num-iters=1 --num-samples=1
$ ./Benchmark_Onone --list
$ ./Benchmark_Ounchecked Ackermann
scripts/generate_harness/generate_harness.py
generates and replaces
CMakeLists.txt
and utils/main.swift
from single and multiple file tests
contained in the directories single-source
and multi-source
. It gathers
information about the tests and then generates the files from templates using
jinja2. The motivation for creating this script was to eliminate the need to
manually add at least three lines to harness files (one to CMakeLists.txt
and
two to utils/main.swift
) for every new benchmark added.
Warning:
Since CMakeLists.txt
and utils/main.swift
are now generated from templates,
they should not be directly modified. Work may be lost if the harness is
executed after making changes to derived files. Instead, modifications should
be made to the template files stored in the scripts/generate_harness
directory.
Start by installing jinja2 if it isn't already installed:
$ sudo easy_install -U jinja2
To generate CMakeLists.txt
and utils/main.swift
from test sources, run the
command:
$ scripts/generate_harness/generate_harness.py
Note:
Ensure generate_harness.py
remains in scripts/generate_harness
as it
modifies files relative to its location instead of the current working
directory.
To make changes to CMakeLists.txt
or utils/main.swift
, modify the template
files CMakeLists.txt_template
and main.swift_template
stored in the
scripts/generate_harness
directory. These are jinja2 templates, rendered by
jinja2 calls in generate_harness.py
, so ensure static changes don't interfere
with the template portions. Test changes by regenerating the harness
(Generating harness files) and rebuilding the repository with build-script
.
The harness generator supports both single and multiple file tests.
To add a new single file test:
- Add a new Swift file (
YourTestNameHere.swift
), built according to the template below, to thesingle-source
directory. - Regenerate harness files by following the directions in Generating harness files before committing changes.
To add a new multiple file test:
-
Add a new directory and files under the
multi-source
directory as specified below:├── multi-source │ ├── YourTestName │ │ ├── TestFile1.swift │ │ ├── TestFile2.swift │ │ ├── TestFile3.swift
At least one run function (specified in the template below) must exist in the files.
-
Regenerate harness files by following the directions in Generating harness files before committing changes.
Note:
The generator script looks for functions prefixed with run_
in order to
populate utils/main.swift
.
Each iteration of work performed in the for-loop below should run in under a few milliseconds. The benchmark driver will automatically calculate the necessary number of iterations to run each benchmark in approximately one second.
Performance Test Template
// YourTestNameHere benchmark
//
// rdar:https://problem/00000000
import Foundation
import TestsUtils
@inline(never)
public func run_YourTestNameHere(N: Int) {
# Declare variables
for i in 1...N {
# Perform work
# Verify work was done; break otherwise
}
# Assert with CheckResults that work was done
}