align all functions to make micro benchmarks more stable (#1739)
Motivation: After chatting to the Swift perf team, they thought it may be a good idea to align all functions in our performance tests which may make the micro benchmarks more stable. Modifications: Align all functions/blocks. Result: Hopefully more stable micro benchmarks.
This commit is contained in:
parent
a0c968a619
commit
ef9e98a592
|
@ -40,7 +40,7 @@ services:
|
|||
|
||||
performance-test:
|
||||
<<: *common
|
||||
command: /bin/bash -xcl "swift build -c release && ./.build/release/NIOPerformanceTester"
|
||||
command: /bin/bash -xcl "swift build -c release -Xswiftc -Xllvm -Xswiftc -align-all-functions=5 -Xswiftc -Xllvm -Xswiftc -align-all-blocks=5 && ./.build/release/NIOPerformanceTester"
|
||||
|
||||
# util
|
||||
|
||||
|
|
Loading…
Reference in New Issue