Merge pull request #63106 from valeriyvan/Benchmark-UnsafeRawBufferPointer-first

[benchmark] Add benchmark for UnsafeMutableRawBufferPointer firstIndex(of:) and lastIndex(of:)
This commit is contained in:
swift-ci
2023-01-31 21:34:52 -08:00
committed by GitHub
3 changed files with 111 additions and 0 deletions

View File

@@ -45,6 +45,7 @@ set(SWIFT_BENCH_MODULES
single-source/Breadcrumbs
single-source/BucketSort
single-source/BufferFill
single-source/BufferFind
single-source/ByteSwap
single-source/COWTree
single-source/COWArrayGuaranteedParameterOverhead

View File

@@ -0,0 +1,108 @@
//===--- BufferFind.swift -------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2021 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import TestsUtils
public var benchmarks: [BenchmarkInfo] = [
// size 1000, alignment 0
BenchmarkInfo(
name: "RawBuffer.1000.findFirst",
runFunction: run_BufferFindFirst,
tags: [.validation, .api],
setUpFunction: buffer1000Setup,
tearDownFunction: bufferTeardown
),
BenchmarkInfo(
name: "RawBuffer.1000.findLast",
runFunction: run_BufferFindLast,
tags: [.validation, .api],
setUpFunction: buffer1000Setup,
tearDownFunction: bufferTeardown
),
// size 15, alignment 0
BenchmarkInfo(
name: "RawBuffer.15.findFirst",
runFunction: run_BufferFindFirst,
tags: [.validation, .api],
setUpFunction: buffer15Setup,
tearDownFunction: bufferTeardown
),
BenchmarkInfo(
name: "RawBuffer.15.findLast",
runFunction: run_BufferFindLast,
tags: [.validation, .api],
setUpFunction: buffer15Setup,
tearDownFunction: bufferTeardown
),
// size 7, alignment 0
BenchmarkInfo(
name: "RawBuffer.7.findFirst",
runFunction: run_BufferFindFirst,
tags: [.validation, .api],
setUpFunction: buffer7Setup,
tearDownFunction: bufferTeardown
),
BenchmarkInfo(
name: "RawBuffer.7.findLast",
runFunction: run_BufferFindLast,
tags: [.validation, .api],
setUpFunction: buffer7Setup,
tearDownFunction: bufferTeardown
)
]
var buffer: UnsafeMutableRawBufferPointer = .init(start: nil, count: 0)
func buffer1000Setup() {
bufferSetup(size: 1000, alignment: 0)
}
func buffer15Setup() {
bufferSetup(size: 15, alignment: 0)
}
func buffer7Setup() {
bufferSetup(size: 7, alignment: 0)
}
func bufferTeardown() {
buffer.deallocate()
buffer = .init(start: nil, count: 0)
}
func bufferSetup(size: Int, alignment: Int) {
buffer = UnsafeMutableRawBufferPointer.allocate(byteCount: size, alignment: alignment)
buffer.initializeMemory(as: UInt8.self, repeating: UInt8.min)
buffer[size / 2] = UInt8.max
}
@inline(never)
public func run_BufferFindFirst(n: Int) {
var offset = 0
for _ in 0 ..< n * 10_000 {
if let index = buffer.firstIndex(of: UInt8.max) {
offset += index
}
}
blackHole(offset)
}
@inline(never)
public func run_BufferFindLast(n: Int) {
var offset = 0
for _ in 0 ..< n * 10_000 {
if let index = buffer.lastIndex(of: UInt8.max) {
offset += index
}
}
blackHole(offset)
}

View File

@@ -33,6 +33,7 @@ import BitCount
import Breadcrumbs
import BucketSort
import BufferFill
import BufferFind
import ByteSwap
import COWTree
import COWArrayGuaranteedParameterOverhead
@@ -221,6 +222,7 @@ register(BitCount.benchmarks)
register(Breadcrumbs.benchmarks)
register(BucketSort.benchmarks)
register(BufferFill.benchmarks)
register(BufferFind.benchmarks)
register(ByteSwap.benchmarks)
register(COWTree.benchmarks)
register(COWArrayGuaranteedParameterOverhead.benchmarks)