Skip to content

Commit

Permalink
Migrate host bulk examples
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel committed Dec 15, 2023
1 parent fc29feb commit 1f2aaa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/static_map/host_bulk_example.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020-2022, NVIDIA CORPORATION.
* Copyright (c) 2020-2023, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -54,7 +54,7 @@ int main(void)
std::size_t const capacity = std::ceil(num_keys / load_factor);

// Constructs a map with "capacity" slots using -1 and -1 as the empty key/value sentinels.
cuco::static_map<Key, Value> map{
auto map = cuco::experimental::static_map{
capacity, cuco::empty_key{empty_key_sentinel}, cuco::empty_value{empty_value_sentinel}};

// Create a sequence of keys and values {{0,0}, {1,1}, ... {i,i}}
Expand Down

0 comments on commit 1f2aaa1

Please sign in to comment.