-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into fea/support-for-span-like-arrow-filter-policy
- Loading branch information
Showing
8 changed files
with
432 additions
and
571 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
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,96 @@ | ||
/* | ||
* Copyright (c) 2024, NVIDIA CORPORATION. | ||
* | ||
* 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 <benchmark_defaults.hpp> | ||
#include <benchmark_utils.hpp> | ||
|
||
#include <cuco/static_set.cuh> | ||
#include <cuco/utility/key_generator.cuh> | ||
|
||
#include <nvbench/nvbench.cuh> | ||
|
||
#include <thrust/device_vector.h> | ||
#include <thrust/transform.h> | ||
|
||
using namespace cuco::benchmark; | ||
using namespace cuco::utility; | ||
|
||
/** | ||
* @brief A benchmark evaluating `cuco::static_set::retrieve` performance | ||
*/ | ||
template <typename Key, typename Dist> | ||
void static_set_retrieve(nvbench::state& state, nvbench::type_list<Key, Dist>) | ||
{ | ||
auto const num_keys = state.get_int64("NumInputs"); | ||
auto const occupancy = state.get_float64("Occupancy"); | ||
auto const matching_rate = state.get_float64("MatchingRate"); | ||
|
||
std::size_t const size = num_keys / occupancy; | ||
|
||
thrust::device_vector<Key> keys(num_keys); | ||
|
||
key_generator gen; | ||
gen.generate(dist_from_state<Dist>(state), keys.begin(), keys.end()); | ||
|
||
gen.dropout(keys.begin(), keys.end(), matching_rate); | ||
|
||
state.add_element_count(num_keys); | ||
|
||
cuco::static_set<Key> set{size, cuco::empty_key<Key>{-1}}; | ||
set.insert(keys.begin(), keys.end()); | ||
|
||
auto const output_size = set.count(keys.begin(), keys.end()); | ||
thrust::device_vector<Key> output_match(output_size); | ||
auto output_probe_begin = thrust::discard_iterator{}; | ||
|
||
state.exec(nvbench::exec_tag::sync, [&](nvbench::launch& launch) { | ||
set.retrieve( | ||
keys.begin(), keys.end(), output_probe_begin, output_match.begin(), {launch.get_stream()}); | ||
}); | ||
} | ||
|
||
NVBENCH_BENCH_TYPES(static_set_retrieve, | ||
NVBENCH_TYPE_AXES(defaults::KEY_TYPE_RANGE, | ||
nvbench::type_list<distribution::uniform>)) | ||
.set_name("static_set_retrieve_uniform_occupancy") | ||
.set_type_axes_names({"Key", "Distribution"}) | ||
.set_max_noise(defaults::MAX_NOISE) | ||
.add_int64_axis("NumInputs", {defaults::N}) | ||
.add_float64_axis("Occupancy", defaults::OCCUPANCY_RANGE) | ||
.add_float64_axis("MatchingRate", {defaults::MATCHING_RATE}) | ||
.add_int64_axis("Multiplicity", {defaults::MULTIPLICITY}); | ||
|
||
NVBENCH_BENCH_TYPES(static_set_retrieve, | ||
NVBENCH_TYPE_AXES(defaults::KEY_TYPE_RANGE, | ||
nvbench::type_list<distribution::uniform>)) | ||
.set_name("static_set_retrieve_uniform_matching_rate") | ||
.set_type_axes_names({"Key", "Distribution"}) | ||
.set_max_noise(defaults::MAX_NOISE) | ||
.add_int64_axis("NumInputs", {defaults::N}) | ||
.add_float64_axis("Occupancy", {defaults::OCCUPANCY}) | ||
.add_float64_axis("MatchingRate", defaults::MATCHING_RATE_RANGE) | ||
.add_int64_axis("Multiplicity", {defaults::MULTIPLICITY}); | ||
|
||
NVBENCH_BENCH_TYPES(static_set_retrieve, | ||
NVBENCH_TYPE_AXES(defaults::KEY_TYPE_RANGE, | ||
nvbench::type_list<distribution::uniform>)) | ||
.set_name("static_set_retrieve_uniform_multiplicity") | ||
.set_type_axes_names({"Key", "Distribution"}) | ||
.set_max_noise(defaults::MAX_NOISE) | ||
.add_int64_axis("NumInputs", {defaults::N}) | ||
.add_float64_axis("Occupancy", {defaults::OCCUPANCY}) | ||
.add_float64_axis("MatchingRate", {defaults::MATCHING_RATE}) | ||
.add_int64_axis("Multiplicity", defaults::MULTIPLICITY_RANGE); |
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.