-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4044 from StephanTLavavej/flat_set-update
Merge `main` to `feature/flat_set`
- Loading branch information
Showing
106 changed files
with
3,495 additions
and
1,083 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright (c) Microsoft Corporation. | ||
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
# run the `validator` tool, and ensure code is properly clang-formatted | ||
|
||
jobs: | ||
- job: Code_Format_Validation | ||
timeoutInMinutes: 5 | ||
displayName: 'Validation' | ||
steps: | ||
- script: | | ||
if exist "$(tmpDir)" ( | ||
rmdir /S /Q $(tmpDir) | ||
) | ||
mkdir $(tmpDir) | ||
displayName: 'Setup TMP Directory' | ||
- checkout: self | ||
clean: true | ||
submodules: false | ||
- script: | | ||
cd $(Build.SourcesDirectory) | ||
git clean --quiet -x -d -f -f | ||
displayName: 'Clean after checkout' | ||
- script: | | ||
call "%ProgramFiles%\Microsoft Visual Studio\2022\Preview\Common7\Tools\VsDevCmd.bat" ^ | ||
-host_arch=amd64 -arch=amd64 -no_logo | ||
cmake -G Ninja -S $(Build.SourcesDirectory)/tools -B $(tmpDir)/format-validate-build | ||
cmake --build $(tmpDir)/format-validate-build | ||
displayName: 'Build format and validation' | ||
timeoutInMinutes: 5 | ||
env: { TMP: $(tmpDir), TEMP: $(tmpDir) } | ||
- script: | | ||
call "%ProgramFiles%\Microsoft Visual Studio\2022\Preview\Common7\Tools\VsDevCmd.bat" ^ | ||
-host_arch=amd64 -arch=amd64 -no_logo | ||
cmake --build $(tmpDir)/format-validate-build --target run-format | ||
displayName: 'clang-format Files' | ||
timeoutInMinutes: 5 | ||
env: { TMP: $(tmpDir), TEMP: $(tmpDir) } | ||
- script: | | ||
call "%ProgramFiles%\Microsoft Visual Studio\2022\Preview\Common7\Tools\VsDevCmd.bat" ^ | ||
-host_arch=amd64 -arch=amd64 -no_logo | ||
cmake --build $(tmpDir)/format-validate-build --target run-validate | ||
displayName: 'Validate Files' | ||
timeoutInMinutes: 2 | ||
env: { TMP: $(tmpDir), TEMP: $(tmpDir) } | ||
- task: Powershell@2 | ||
displayName: 'Create Diff' | ||
inputs: | ||
filePath: azure-devops/create-prdiff.ps1 | ||
pwsh: false | ||
condition: succeededOrFailed() | ||
env: { TMP: $(tmpDir), TEMP: $(tmpDir) } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
#include <algorithm> | ||
#include <benchmark/benchmark.h> | ||
#include <cstddef> | ||
#include <cstdint> | ||
#include <cstdio> | ||
#include <queue> | ||
#include <random> | ||
#include <span> | ||
#include <string> | ||
#include <string_view> | ||
#include <vector> | ||
using namespace std; | ||
|
||
namespace { | ||
constexpr size_t vec_size = 10'000; | ||
|
||
template <class T, class Fn> | ||
auto create_vec(Fn transformation) { | ||
vector<T> vec(vec_size); | ||
for (mt19937_64 rnd(1); auto& e : vec) { | ||
e = transformation(rnd()); | ||
} | ||
return vec; | ||
} | ||
|
||
template <class T> | ||
T cast_to(uint64_t val) { | ||
return static_cast<T>(val); | ||
} | ||
|
||
const auto vec_u8 = create_vec<uint8_t>(cast_to<uint8_t>); | ||
const auto vec_u16 = create_vec<uint16_t>(cast_to<uint16_t>); | ||
const auto vec_u32 = create_vec<uint32_t>(cast_to<uint32_t>); | ||
const auto vec_u64 = create_vec<uint64_t>(cast_to<uint64_t>); | ||
const auto vec_float = create_vec<float>(cast_to<float>); | ||
const auto vec_double = create_vec<double>(cast_to<double>); | ||
|
||
const auto vec_str = create_vec<string>([](uint64_t val) { return to_string(static_cast<uint32_t>(val)); }); | ||
const auto vec_wstr = create_vec<wstring>([](uint64_t val) { return to_wstring(static_cast<uint32_t>(val)); }); | ||
|
||
template <class T, const auto& Data> | ||
void BM_push_range(benchmark::State& state) { | ||
const size_t frag_size = static_cast<size_t>(state.range(0)); | ||
|
||
for (auto _ : state) { | ||
priority_queue<T> que; | ||
span spn{Data}; | ||
|
||
while (!spn.empty()) { | ||
const size_t take_size = min(spn.size(), frag_size); | ||
que.push_range(spn.first(take_size)); | ||
spn = spn.subspan(take_size); | ||
} | ||
benchmark::DoNotOptimize(que); | ||
} | ||
} | ||
|
||
template <size_t L> | ||
void putln(const benchmark::State&) { | ||
static bool b = [] { | ||
puts(""); | ||
return true; | ||
}(); | ||
} | ||
} // namespace | ||
|
||
#define TEST_PUSH_RANGE(T, source) \ | ||
BENCHMARK(BM_push_range<T, source>) \ | ||
->Setup(putln<__LINE__>) \ | ||
->RangeMultiplier(100) \ | ||
->Range(1, vec_size) \ | ||
->Arg(vec_size / 2 + 1); | ||
|
||
TEST_PUSH_RANGE(uint8_t, vec_u8); | ||
TEST_PUSH_RANGE(uint16_t, vec_u16); | ||
TEST_PUSH_RANGE(uint32_t, vec_u32); | ||
TEST_PUSH_RANGE(uint64_t, vec_u64); | ||
TEST_PUSH_RANGE(float, vec_float); | ||
TEST_PUSH_RANGE(double, vec_double); | ||
|
||
TEST_PUSH_RANGE(string_view, vec_str); | ||
TEST_PUSH_RANGE(string, vec_str); | ||
TEST_PUSH_RANGE(wstring_view, vec_wstr); | ||
TEST_PUSH_RANGE(wstring, vec_wstr); | ||
|
||
BENCHMARK_MAIN(); |
100 changes: 100 additions & 0 deletions
100
benchmarks/src/std/containers/sequences/vector.bool/copy/test.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
#include <benchmark/benchmark.h> | ||
// | ||
#include <algorithm> | ||
#include <random> | ||
#include <vector> | ||
|
||
using namespace std; | ||
|
||
static vector<bool> createRandomVector(const size_t size) { | ||
static mt19937 gen{random_device{}()}; | ||
vector<bool> result(size); | ||
generate_n(result.begin(), size, [] { return bernoulli_distribution{0.5}(gen); }); | ||
return result; | ||
} | ||
|
||
static void copy_block_aligned(benchmark::State& state) { | ||
const auto size = state.range(0); | ||
const vector<bool> source = createRandomVector(size); | ||
vector<bool> dest(size, false); | ||
|
||
for (auto _ : state) { | ||
copy(source.cbegin(), source.cend(), dest.begin()); | ||
} | ||
} | ||
|
||
static void copy_source_misaligned(benchmark::State& state) { | ||
const auto size = state.range(0); | ||
const vector<bool> source = createRandomVector(size); | ||
vector<bool> dest(size, false); | ||
|
||
for (auto _ : state) { | ||
copy(source.cbegin() + 1, source.cend(), dest.begin()); | ||
} | ||
} | ||
|
||
static void copy_dest_misaligned(benchmark::State& state) { | ||
const auto size = state.range(0); | ||
const vector<bool> source = createRandomVector(size); | ||
vector<bool> dest(size, false); | ||
|
||
for (auto _ : state) { | ||
copy(source.cbegin(), source.cend() - 1, dest.begin() + 1); | ||
} | ||
} | ||
|
||
// Special benchmark for matching char alignment | ||
static void copy_matching_alignment(benchmark::State& state) { | ||
const auto size = state.range(0); | ||
const vector<bool> source = createRandomVector(size); | ||
vector<bool> dest(size, false); | ||
|
||
for (auto _ : state) { | ||
copy(source.cbegin() + 5, source.cend(), dest.begin() + 5); | ||
} | ||
} | ||
|
||
// Special benchmarks for single block corner case | ||
static void copy_both_single_blocks(benchmark::State& state) { | ||
const vector<bool> source = createRandomVector(50); | ||
vector<bool> dest(50, false); | ||
|
||
const size_t length = 20; | ||
for (auto _ : state) { | ||
copy(source.cbegin() + 5, source.cbegin() + 5 + length, dest.begin() + 5); | ||
} | ||
} | ||
|
||
static void copy_source_single_block(benchmark::State& state) { | ||
const vector<bool> source = createRandomVector(50); | ||
vector<bool> dest(50, false); | ||
|
||
const size_t length = 20; | ||
for (auto _ : state) { | ||
copy(source.cbegin() + 5, source.cbegin() + 5 + length, dest.begin() + 25); | ||
} | ||
} | ||
|
||
static void copy_dest_single_block(benchmark::State& state) { | ||
const vector<bool> source = createRandomVector(50); | ||
vector<bool> dest(50, false); | ||
|
||
const size_t length = 20; | ||
for (auto _ : state) { | ||
copy(source.cbegin() + 25, source.cbegin() + 25 + length, dest.begin() + 5); | ||
} | ||
} | ||
|
||
BENCHMARK(copy_block_aligned)->RangeMultiplier(64)->Range(64, 64 << 10); | ||
BENCHMARK(copy_source_misaligned)->RangeMultiplier(64)->Range(64, 64 << 10); | ||
BENCHMARK(copy_dest_misaligned)->RangeMultiplier(64)->Range(64, 64 << 10); | ||
BENCHMARK(copy_matching_alignment)->RangeMultiplier(64)->Range(64, 64 << 10); | ||
|
||
BENCHMARK(copy_both_single_blocks); | ||
BENCHMARK(copy_source_single_block); | ||
BENCHMARK(copy_dest_single_block); | ||
|
||
BENCHMARK_MAIN(); |
Oops, something went wrong.