@@ -52,7 +52,7 @@ class roaring_bitmap_storage_ref<cuda::std::uint32_t> {
5252 /* *
5353 * @brief Constructs a storage reference from bitmap data and metadata
5454 *
55- * @param bitmap Pointer to the serialized bitmap data
55+ * @param bitmap Pointer to the serialized bitmap in a device-accessible memory location
5656 * @param metadata Metadata describing the bitmap structure
5757 */
5858 __host__ __device__ roaring_bitmap_storage_ref (cuda::std::byte const * bitmap,
@@ -71,7 +71,7 @@ class roaring_bitmap_storage_ref<cuda::std::uint32_t> {
7171 *
7272 * Automatically parses metadata from the bitmap data.
7373 *
74- * @param bitmap Pointer to the serialized bitmap data
74+ * @param bitmap Pointer to the serialized bitmap in a device-accessible memory location
7575 */
7676 __device__ roaring_bitmap_storage_ref (cuda::std::byte const * bitmap)
7777 : roaring_bitmap_storage_ref{bitmap, metadata_type{bitmap}}
@@ -149,9 +149,9 @@ class roaring_bitmap_storage_ref<cuda::std::uint64_t> {
149149 /* *
150150 * @brief Constructs a storage reference from bitmap data, metadata, and buckets
151151 *
152- * @param bitmap Pointer to the serialized bitmap data
152+ * @param bitmap Pointer to the serialized bitmap in a device-accessible memory location
153153 * @param metadata Metadata describing the bitmap structure
154- * @param buckets Pointer to the array of bucket references
154+ * @param buckets Pointer to the array of bucket references in a device-accessible memory location
155155 */
156156 __host__ __device__ roaring_bitmap_storage_ref (
157157 cuda::std::byte const * bitmap,
0 commit comments