forked from facebookincubator/velox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Optimize json_parse (facebookincubator#11924)
Summary: Pull Request resolved: facebookincubator#11924 bypass-github-export-checks Reviewed By: kgpai Differential Revision: D67538322 fbshipit-source-id: 7bbc0b052f57ead922862966cff0ce2b69eadcd3
- Loading branch information
Showing
12 changed files
with
727 additions
and
292 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,145 @@ | ||
/* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
#pragma once | ||
|
||
#include "velox/common/base/Exceptions.h" | ||
|
||
namespace facebook::velox { | ||
|
||
constexpr int kSortingNetworkMaxSize = 16; | ||
|
||
template <typename T, typename LessThan = std::less<T>> | ||
void sortingNetwork(T* data, int size, LessThan&& lt = {}); | ||
|
||
namespace detail { | ||
|
||
// Compile time generated Bose-Nelson sorting network. | ||
// | ||
// https://bertdobbelaere.github.io/sorting_networks.html | ||
// https://github.com/Vectorized/Static-Sort/blob/master/include/static_sort.h | ||
template <int kSize> | ||
class SortingNetworkImpl { | ||
public: | ||
template <typename T, typename LessThan> | ||
static void apply(T* data, LessThan&& lt) { | ||
PS<T, LessThan, 1, kSize, (kSize <= 1)> ps(data, lt); | ||
} | ||
|
||
private: | ||
template <int I, int J, typename T, typename LessThan> | ||
static void compareExchange(T* data, LessThan lt) { | ||
// This is branchless if `lt' is branchless. | ||
auto c = lt(data[I], data[J]); | ||
auto min = c ? data[I] : data[J]; | ||
data[J] = c ? data[J] : data[I]; | ||
data[I] = min; | ||
} | ||
|
||
template <typename T, typename LessThan, int I, int J, int X, int Y> | ||
struct PB { | ||
PB(T* data, LessThan lt) { | ||
enum { | ||
L = X >> 1, | ||
M = (X & 1 ? Y : Y + 1) >> 1, | ||
IAddL = I + L, | ||
XSubL = X - L, | ||
}; | ||
PB<T, LessThan, I, J, L, M> p0(data, lt); | ||
PB<T, LessThan, IAddL, J + M, XSubL, Y - M> p1(data, lt); | ||
PB<T, LessThan, IAddL, J, XSubL, M> p2(data, lt); | ||
} | ||
}; | ||
|
||
template <typename T, typename LessThan, int I, int J> | ||
struct PB<T, LessThan, I, J, 1, 1> { | ||
PB(T* data, LessThan lt) { | ||
compareExchange<I - 1, J - 1>(data, lt); | ||
} | ||
}; | ||
|
||
template <typename T, typename LessThan, int I, int J> | ||
struct PB<T, LessThan, I, J, 1, 2> { | ||
PB(T* data, LessThan lt) { | ||
compareExchange<I - 1, J>(data, lt); | ||
compareExchange<I - 1, J - 1>(data, lt); | ||
} | ||
}; | ||
|
||
template <typename T, typename LessThan, int I, int J> | ||
struct PB<T, LessThan, I, J, 2, 1> { | ||
PB(T* data, LessThan lt) { | ||
compareExchange<I - 1, J - 1>(data, lt); | ||
compareExchange<I, J - 1>(data, lt); | ||
} | ||
}; | ||
|
||
template <typename T, typename LessThan, int I, int M, bool kStop> | ||
struct PS { | ||
PS(T* data, LessThan lt) { | ||
enum { L = M >> 1, IAddL = I + L, MSubL = M - L }; | ||
PS<T, LessThan, I, L, (L <= 1)> ps0(data, lt); | ||
PS<T, LessThan, IAddL, MSubL, (MSubL <= 1)> ps1(data, lt); | ||
PB<T, LessThan, I, IAddL, L, MSubL> pb(data, lt); | ||
} | ||
}; | ||
|
||
template <typename T, typename LessThan, int I, int M> | ||
struct PS<T, LessThan, I, M, true> { | ||
PS(T* /*data*/, LessThan /*lt*/) {} | ||
}; | ||
}; | ||
|
||
} // namespace detail | ||
|
||
template <typename T, typename LessThan> | ||
void sortingNetwork(T* data, int size, LessThan&& lt) { | ||
switch (size) { | ||
case 0: | ||
case 1: | ||
return; | ||
|
||
#ifdef VELOX_SORTING_NETWORK_IMPL_APPLY_CASE | ||
#error "Macro name clash: VELOX_SORTING_NETWORK_IMPL_APPLY_CASE" | ||
#endif | ||
#define VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(_n) \ | ||
case _n: \ | ||
detail::SortingNetworkImpl<_n>::apply(data, std::forward<LessThan>(lt)); \ | ||
return; | ||
|
||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(2) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(3) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(4) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(5) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(6) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(7) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(8) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(9) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(10) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(11) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(12) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(13) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(14) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(15) | ||
VELOX_SORTING_NETWORK_IMPL_APPLY_CASE(16) | ||
|
||
#undef VELOX_SORTING_NETWORK_IMPL_APPLY_CASE | ||
|
||
default: | ||
VELOX_UNREACHABLE(); | ||
} | ||
} | ||
|
||
} // namespace facebook::velox |
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
134 changes: 134 additions & 0 deletions
134
velox/common/base/benchmarks/SortingNetworkBenchmark.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,134 @@ | ||
/* | ||
* Copyright (c) Facebook, Inc. and its affiliates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#include "velox/common/base/SortingNetwork.h" | ||
|
||
#include <folly/Benchmark.h> | ||
#include <folly/Random.h> | ||
#include <folly/init/Init.h> | ||
|
||
#define VELOX_BENCHMARK(_type, _name, ...) \ | ||
[[maybe_unused]] _type _name(FOLLY_PP_STRINGIZE(_name), __VA_ARGS__) | ||
|
||
namespace facebook::velox { | ||
namespace { | ||
|
||
template <typename T> | ||
class SortingNetworkBenchmark { | ||
public: | ||
SortingNetworkBenchmark(const char* name, int minLen, int maxLen) { | ||
int totalLen = 0; | ||
for (int i = 0; i < kNumSorts; ++i) { | ||
lengths_.push_back(folly::Random::rand32(minLen, maxLen)); | ||
totalLen += lengths_.back(); | ||
} | ||
data_.resize(totalLen); | ||
generateData(); | ||
folly::addBenchmark(__FILE__, fmt::format("{}_std", name), [this] { | ||
return run([](auto* indices, int len, auto lt) { | ||
std::sort(indices, indices + len, lt); | ||
}); | ||
}); | ||
folly::addBenchmark( | ||
__FILE__, fmt::format("%{}_sorting_network", name), [this] { | ||
return run([](auto* indices, int len, auto lt) { | ||
sortingNetwork(indices, len, lt); | ||
}); | ||
}); | ||
} | ||
|
||
private: | ||
static constexpr int kNumSorts = 10'000; | ||
|
||
void generateData(); | ||
|
||
template <typename Sort> | ||
unsigned run(Sort sort) const { | ||
std::vector<int32_t> indices; | ||
BENCHMARK_SUSPEND { | ||
for (int i = 0; i < kNumSorts; ++i) { | ||
indices.reserve(lengths_[i]); | ||
} | ||
} | ||
auto* buf = data_.data(); | ||
for (int i = 0; i < kNumSorts; ++i) { | ||
indices.resize(lengths_[i]); | ||
std::iota(indices.begin(), indices.end(), 0); | ||
sort(indices.data(), lengths_[i], [&](auto i, auto j) { | ||
return buf[i] < buf[j]; | ||
}); | ||
buf += lengths_[i]; | ||
} | ||
folly::doNotOptimizeAway(indices); | ||
return kNumSorts; | ||
} | ||
|
||
std::vector<int8_t> lengths_; | ||
std::vector<T> data_; | ||
}; | ||
|
||
template <> | ||
void SortingNetworkBenchmark<int32_t>::generateData() { | ||
for (int i = 0; i < data_.size(); ++i) { | ||
data_[i] = folly::Random::rand32(); | ||
} | ||
} | ||
|
||
template <> | ||
void SortingNetworkBenchmark<std::string>::generateData() { | ||
for (auto& s : data_) { | ||
s.resize(folly::Random::rand32(4, 32)); | ||
for (int i = 0; i < s.size(); ++i) { | ||
s[i] = folly::Random::rand32(128); | ||
} | ||
} | ||
} | ||
|
||
struct ThreeWords { | ||
std::array<uint64_t, 3> value; | ||
|
||
bool operator<(const ThreeWords& other) const { | ||
return value < other.value; | ||
} | ||
}; | ||
|
||
template <> | ||
void SortingNetworkBenchmark<ThreeWords>::generateData() { | ||
for (auto& x : data_) { | ||
for (auto& y : x.value) { | ||
y = folly::Random::rand64(); | ||
} | ||
} | ||
} | ||
|
||
} // namespace | ||
} // namespace facebook::velox | ||
|
||
int main(int argc, char* argv[]) { | ||
using namespace facebook::velox; | ||
folly::Init follyInit(&argc, &argv); | ||
VELOX_BENCHMARK(SortingNetworkBenchmark<int32_t>, int32_2, 2, 4); | ||
VELOX_BENCHMARK(SortingNetworkBenchmark<int32_t>, int32_4, 4, 8); | ||
VELOX_BENCHMARK(SortingNetworkBenchmark<int32_t>, int32_8, 8, 16); | ||
VELOX_BENCHMARK(SortingNetworkBenchmark<std::string>, string_2, 2, 4); | ||
VELOX_BENCHMARK(SortingNetworkBenchmark<std::string>, string_4, 4, 8); | ||
VELOX_BENCHMARK(SortingNetworkBenchmark<std::string>, string_8, 8, 16); | ||
VELOX_BENCHMARK(SortingNetworkBenchmark<ThreeWords>, ThreeWords_2, 2, 4); | ||
VELOX_BENCHMARK(SortingNetworkBenchmark<ThreeWords>, ThreeWords_4, 4, 8); | ||
VELOX_BENCHMARK(SortingNetworkBenchmark<ThreeWords>, ThreeWords_8, 8, 16); | ||
folly::runBenchmarks(); | ||
return 0; | ||
} |
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
Oops, something went wrong.