-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/dev' into retrieve
- Loading branch information
Showing
59 changed files
with
1,647 additions
and
881 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
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,93 @@ | ||
/* | ||
* Copyright (c) 2023-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_map.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_map::insert_or_apply` performance | ||
*/ | ||
template <typename Key, typename Value, typename Dist> | ||
std::enable_if_t<(sizeof(Key) == sizeof(Value)), void> static_map_insert_or_apply( | ||
nvbench::state& state, nvbench::type_list<Key, Value, Dist>) | ||
{ | ||
using pair_type = cuco::pair<Key, Value>; | ||
|
||
auto const num_keys = state.get_int64_or_default("NumInputs", defaults::N); | ||
auto const occupancy = state.get_float64_or_default("Occupancy", defaults::OCCUPANCY); | ||
auto const multiplicity = state.get_int64_or_default("Multiplicity", defaults::MULTIPLICITY); | ||
|
||
std::size_t const size = cuco::detail::int_div_ceil(num_keys, multiplicity) / occupancy; | ||
|
||
thrust::device_vector<Key> keys(num_keys); | ||
|
||
key_generator gen; | ||
gen.generate(dist_from_state<Dist>(state), keys.begin(), keys.end()); | ||
|
||
thrust::device_vector<pair_type> pairs(num_keys); | ||
thrust::transform(keys.begin(), keys.end(), pairs.begin(), [] __device__(Key const& key) { | ||
return pair_type(key, static_cast<Value>(key)); | ||
}); | ||
|
||
state.add_element_count(num_keys); | ||
|
||
cuco::static_map map{size, cuco::empty_key<Key>{-1}, cuco::empty_value<Value>{0}}; | ||
|
||
state.exec(nvbench::exec_tag::timer, [&](nvbench::launch& launch, auto& timer) { | ||
map.clear_async({launch.get_stream()}); | ||
|
||
timer.start(); | ||
map.insert_or_apply_async( | ||
pairs.begin(), pairs.end(), cuco::op::reduce::sum, {launch.get_stream()}); | ||
timer.stop(); | ||
}); | ||
} | ||
|
||
template <typename Key, typename Value, typename Dist> | ||
std::enable_if_t<(sizeof(Key) != sizeof(Value)), void> static_map_insert_or_apply( | ||
nvbench::state& state, nvbench::type_list<Key, Value, Dist>) | ||
{ | ||
state.skip("Key should be the same type as Value."); | ||
} | ||
|
||
NVBENCH_BENCH_TYPES(static_map_insert_or_apply, | ||
NVBENCH_TYPE_AXES(defaults::KEY_TYPE_RANGE, | ||
defaults::VALUE_TYPE_RANGE, | ||
nvbench::type_list<distribution::uniform>)) | ||
.set_name("static_map_insert_or_apply_uniform_multiplicity") | ||
.set_type_axes_names({"Key", "Value", "Distribution"}) | ||
.set_max_noise(defaults::MAX_NOISE) | ||
.add_int64_axis("Multiplicity", defaults::MULTIPLICITY_RANGE); | ||
|
||
NVBENCH_BENCH_TYPES(static_map_insert_or_apply, | ||
NVBENCH_TYPE_AXES(defaults::KEY_TYPE_RANGE, | ||
defaults::VALUE_TYPE_RANGE, | ||
nvbench::type_list<distribution::uniform>)) | ||
.set_name("static_map_insert_or_apply_uniform_occupancy") | ||
.set_type_axes_names({"Key", "Value", "Distribution"}) | ||
.set_max_noise(defaults::MAX_NOISE) | ||
.add_float64_axis("Occupancy", defaults::OCCUPANCY_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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.