Skip to content

Commit

Permalink
Minor cleanups: header regrouping, remove inline + doc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel committed May 10, 2024
1 parent 1fcf68a commit 2700ab8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
6 changes: 0 additions & 6 deletions include/cuco/detail/static_multiset/static_multiset_ref.inl
Original file line number Diff line number Diff line change
Expand Up @@ -332,9 +332,6 @@ class operator_impl<
/**
* @brief Indicates whether the probe key `key` was inserted into the container.
*
* @note If the probe key `key` was inserted into the container, returns true. Otherwise, returns
* false.
*
* @tparam ProbeKey Input type which is convertible to 'key_type'
*
* @param key The key to search for
Expand All @@ -351,9 +348,6 @@ class operator_impl<
/**
* @brief Indicates whether the probe key `key` was inserted into the container.
*
* @note If the probe key `key` was inserted into the container, returns `true`. Otherwise,
* returns `false`.
*
* @tparam ProbeKey Input type which is convertible to 'key_type'
*
* @param group The Cooperative Group used to perform group contains
Expand Down
5 changes: 2 additions & 3 deletions tests/static_multiset/contains_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#include <cuco/static_multiset.cuh>

#include <cuda/functional>
#include <thrust/device_vector.h>
#include <thrust/distance.h>
#include <thrust/functional.h>
Expand All @@ -29,12 +30,10 @@

#include <catch2/catch_template_test_macros.hpp>

#include <cuda/functional>

using size_type = int32_t;

template <typename Set>
__inline__ void test_unique_sequence(Set& set, size_type num_keys)
void test_unique_sequence(Set& set, size_type num_keys)
{
using Key = typename Set::key_type;

Expand Down

0 comments on commit 2700ab8

Please sign in to comment.