All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
scalar.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-2025, NVIDIA CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #pragma once
17 
18 #include <cudf/column/column.hpp>
19 #include <cudf/detail/device_scalar.hpp>
20 #include <cudf/table/table.hpp>
21 #include <cudf/types.hpp>
25 
26 #include <rmm/cuda_stream_view.hpp>
27 #include <rmm/device_buffer.hpp>
28 #include <rmm/device_scalar.hpp>
29 
35 namespace CUDF_EXPORT cudf {
49 class scalar {
50  public:
51  scalar() = delete;
52  virtual ~scalar() = default;
53  scalar& operator=(scalar const& other) = delete;
54  scalar& operator=(scalar&& other) = delete;
55 
61  [[nodiscard]] data_type type() const noexcept;
62 
69  void set_valid_async(bool is_valid, rmm::cuda_stream_view stream = cudf::get_default_stream());
70 
81  [[nodiscard]] bool is_valid(rmm::cuda_stream_view stream = cudf::get_default_stream()) const;
82 
88  bool* validity_data();
89 
95  [[nodiscard]] bool const* validity_data() const;
96 
97  protected:
98  data_type _type{type_id::EMPTY};
99  cudf::detail::device_scalar<bool> _is_valid;
100 
105  scalar(scalar&& other) = default;
106 
114  scalar(scalar const& other,
117 
130  bool is_valid = false,
133 };
134 
135 namespace detail {
141 template <typename T>
142 class fixed_width_scalar : public scalar {
143  static_assert(is_fixed_width<T>(), "Unexpected non-fixed-width type.");
144 
145  public:
146  using value_type = T;
147 
148  fixed_width_scalar() = delete;
149  ~fixed_width_scalar() override = default;
150 
156 
157  fixed_width_scalar& operator=(fixed_width_scalar const& other) = delete;
158  fixed_width_scalar& operator=(fixed_width_scalar&& other) = delete;
159 
170 
178 
185  [[nodiscard]] T value(rmm::cuda_stream_view stream = cudf::get_default_stream()) const;
186 
191  T* data();
192 
197  [[nodiscard]] T const* data() const;
198 
199  protected:
201 
211  bool is_valid = true,
214 
224  bool is_valid = true,
227 };
228 
229 } // namespace detail
230 
236 template <typename T>
238  static_assert(is_numeric<T>(), "Unexpected non-numeric type.");
239 
240  public:
241  numeric_scalar() = delete;
242  ~numeric_scalar() override = default;
243 
248  numeric_scalar(numeric_scalar&& other) = default;
249 
250  numeric_scalar& operator=(numeric_scalar const& other) = delete;
251  numeric_scalar& operator=(numeric_scalar&& other) = delete;
252 
263 
272  numeric_scalar(T value,
273  bool is_valid = true,
276 
286  bool is_valid = true,
289 };
290 
296 template <typename T>
297 class fixed_point_scalar : public scalar {
298  static_assert(is_fixed_point<T>(), "Unexpected non-fixed_point type.");
299 
300  public:
301  using rep_type = typename T::rep;
302  using value_type = T;
303 
304  fixed_point_scalar() = delete;
305  ~fixed_point_scalar() override = default;
306 
312 
313  fixed_point_scalar& operator=(fixed_point_scalar const& other) = delete;
314  fixed_point_scalar& operator=(fixed_point_scalar&& other) = delete;
315 
326 
337  numeric::scale_type scale,
338  bool is_valid = true,
341 
351  bool is_valid = true,
354 
364  bool is_valid = true,
367 
378  numeric::scale_type scale,
379  bool is_valid = true,
382 
390 
397  [[nodiscard]] T fixed_point_value(
399 
405 
410  [[nodiscard]] rep_type const* data() const;
411 
412  protected:
414 };
415 
419 class string_scalar : public scalar {
420  public:
422 
423  string_scalar() = delete;
424  ~string_scalar() override = default;
425 
430  string_scalar(string_scalar&& other) = default;
431 
432  // string_scalar(string_scalar const& other) = delete;
433  string_scalar& operator=(string_scalar const& other) = delete;
434  string_scalar& operator=(string_scalar&& other) = delete;
435 
446 
457  string_scalar(std::string const& string,
458  bool is_valid = true,
461 
472  string_scalar(value_type const& source,
473  bool is_valid = true,
476 
488  bool is_valid = true,
491 
504  bool is_valid = true,
507 
514  [[nodiscard]] std::string to_string(
516 
524 
529  [[nodiscard]] size_type size() const;
530 
535  [[nodiscard]] char const* data() const;
536 
537  protected:
539 };
540 
547 template <typename T>
549  static_assert(is_chrono<T>(), "Unexpected non-chrono type");
550 
551  public:
552  chrono_scalar() = delete;
553  ~chrono_scalar() override = default;
554 
559  chrono_scalar(chrono_scalar&& other) = default;
560 
561  chrono_scalar& operator=(chrono_scalar const& other) = delete;
562  chrono_scalar& operator=(chrono_scalar&& other) = delete;
563 
574 
583  chrono_scalar(T value,
584  bool is_valid = true,
587 
597  bool is_valid = true,
600 };
601 
608 template <typename T>
609 class timestamp_scalar : public chrono_scalar<T> {
610  public:
611  static_assert(is_timestamp<T>(), "Unexpected non-timestamp type");
613  using rep_type = typename T::rep;
614 
615  timestamp_scalar() = delete;
616 
621  timestamp_scalar(timestamp_scalar&& other) = default;
622 
633 
644  template <typename Duration2>
645  timestamp_scalar(Duration2 const& value,
646  bool is_valid,
649 
656 };
657 
664 template <typename T>
665 class duration_scalar : public chrono_scalar<T> {
666  public:
667  static_assert(is_duration<T>(), "Unexpected non-duration type");
669  using rep_type = typename T::rep;
670 
671  duration_scalar() = delete;
672 
677  duration_scalar(duration_scalar&& other) = default;
678 
689 
699  bool is_valid,
702 
709 };
710 
714 class list_scalar : public scalar {
715  public:
716  list_scalar() = delete;
717  ~list_scalar() override = default;
718 
723  list_scalar(list_scalar&& other) = default;
724 
725  list_scalar& operator=(list_scalar const& other) = delete;
726  list_scalar& operator=(list_scalar&& other) = delete;
727 
735  list_scalar(list_scalar const& other,
738 
750  bool is_valid = true,
753 
763  bool is_valid = true,
766 
771  [[nodiscard]] column_view view() const;
772 
773  private:
774  cudf::column _data;
775 };
776 
780 class struct_scalar : public scalar {
781  public:
782  struct_scalar() = delete;
783  ~struct_scalar() override = default;
784 
789  struct_scalar(struct_scalar&& other) = default;
790  struct_scalar& operator=(struct_scalar const& other) = delete;
791  struct_scalar& operator=(struct_scalar&& other) = delete;
792 
803 
815  bool is_valid = true,
818 
830  bool is_valid = true,
833 
846  bool is_valid = true,
849 
854  [[nodiscard]] table_view view() const;
855 
856  private:
857  table _data;
858 
862  void assert_valid_size();
863 
873  static table init_data(table&& data,
874  bool is_valid,
875  rmm::cuda_stream_view stream,
877 };
878  // end of group
880 } // namespace CUDF_EXPORT cudf
An owning class to represent a timestamp/duration value in device memory.
Definition: scalar.hpp:548
chrono_scalar(T value, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new chrono scalar object.
chrono_scalar(rmm::device_scalar< T > &&data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new chrono scalar object from existing device memory.
chrono_scalar(chrono_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new chrono scalar object by deep copying another.
chrono_scalar(chrono_scalar &&other)=default
Move constructor for chrono_scalar.
A non-owning, immutable view of device data as a column of elements, some of which may be null as ind...
A container of nullable device data as a column of elements.
Definition: column.hpp:47
Indicator for the logical data type of an element in a column.
Definition: types.hpp:243
An owning class to represent a fixed-width type value in device memory.
Definition: scalar.hpp:142
rmm::device_scalar< T > _data
device memory containing the value
Definition: scalar.hpp:200
fixed_width_scalar(fixed_width_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new fixed-width scalar object by deep copying another.
void set_value(T value, rmm::cuda_stream_view stream=cudf::get_default_stream())
Set the value of the scalar.
T value(rmm::cuda_stream_view stream=cudf::get_default_stream()) const
Get the value of the scalar.
fixed_width_scalar(fixed_width_scalar &&other)=default
Move constructor for fixed_width_scalar.
fixed_width_scalar(T value, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new fixed width scalar object.
fixed_width_scalar(rmm::device_scalar< T > &&data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new fixed width scalar object from existing device memory.
T const * data() const
Returns a const raw pointer to the value in device memory.
T value_type
Type of the value held by the scalar.
Definition: scalar.hpp:146
T * data()
Returns a raw pointer to the value in device memory.
An owning class to represent a duration value in device memory.
Definition: scalar.hpp:665
rep_type count(rmm::cuda_stream_view stream)
Returns the duration in number of ticks.
duration_scalar(duration_scalar &&other)=default
Move constructor for duration_scalar.
typename T::rep rep_type
The duration's underlying representation type.
Definition: scalar.hpp:669
duration_scalar(duration_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new duration scalar object by deep copying another.
duration_scalar(rep_type value, bool is_valid, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new duration scalar object from tick counts.
An owning class to represent a fixed_point number in device memory.
Definition: scalar.hpp:297
rmm::device_scalar< rep_type > _data
device memory containing the value
Definition: scalar.hpp:413
fixed_point_scalar(fixed_point_scalar &&other)=default
Move constructor for fixed_point_scalar.
fixed_point_scalar(T value, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new fixed_point scalar object from a fixed_point number.
fixed_point_scalar(rep_type value, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new fixed_point scalar object from a value and default 0-scale.
fixed_point_scalar(rmm::device_scalar< rep_type > &&data, numeric::scale_type scale, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new fixed_point scalar object from existing device memory.
rep_type value(rmm::cuda_stream_view stream=cudf::get_default_stream()) const
Get the value of the scalar.
T value_type
The value type of the fixed_point number.
Definition: scalar.hpp:302
fixed_point_scalar(rep_type value, numeric::scale_type scale, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new fixed_point scalar object from already shifted value and scale.
rep_type const * data() const
Returns a const raw pointer to the value in device memory.
T fixed_point_value(rmm::cuda_stream_view stream=cudf::get_default_stream()) const
Get the decimal32, decimal64 or decimal128.
rep_type * data()
Returns a raw pointer to the value in device memory.
typename T::rep rep_type
The representation type of the fixed_point number.
Definition: scalar.hpp:301
fixed_point_scalar(fixed_point_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new fixed_point scalar object by deep copying another.
An owning class to represent a list value in device memory.
Definition: scalar.hpp:714
column_view view() const
Returns a non-owning, immutable view to underlying device data.
list_scalar(list_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new list scalar object by deep copying another.
list_scalar(cudf::column_view const &data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new list scalar object from column_view.
list_scalar(list_scalar &&other)=default
Move constructor for list_scalar.
list_scalar(cudf::column &&data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new list scalar object from existing column.
An owning class to represent a numerical value in device memory.
Definition: scalar.hpp:237
numeric_scalar(rmm::device_scalar< T > &&data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new numeric scalar object from existing device memory.
numeric_scalar(T value, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new numeric scalar object.
numeric_scalar(numeric_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new numeric scalar object by deep copying another.
numeric_scalar(numeric_scalar &&other)=default
Move constructor for numeric_scalar.
An owning class to represent a singular value.
Definition: scalar.hpp:49
scalar(scalar &&other)=default
Move constructor for scalar.
data_type type() const noexcept
Returns the scalar's logical value type.
scalar(scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new scalar object by deep copying another.
scalar(data_type type, bool is_valid=false, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new scalar object.
cudf::detail::device_scalar< bool > _is_valid
Device bool signifying validity.
Definition: scalar.hpp:99
An owning class to represent a string in device memory.
Definition: scalar.hpp:419
std::string to_string(rmm::cuda_stream_view stream=cudf::get_default_stream()) const
Get the value of the scalar in a host std::string.
string_scalar(value_type const &source, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new string scalar object from string_view.
string_scalar(rmm::device_scalar< value_type > &data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new string scalar object from string_view in device memory.
size_type size() const
Returns the size of the string in bytes.
string_scalar(string_scalar &&other)=default
Move constructor for string_scalar.
string_scalar(string_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new string scalar object by deep copying another string_scalar.
string_scalar(rmm::device_buffer &&data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new string scalar object by moving an existing string data buffer.
value_type value(rmm::cuda_stream_view stream=cudf::get_default_stream()) const
Get the value of the scalar as a string_view.
string_scalar(std::string const &string, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new string scalar object.
char const * data() const
Returns a raw pointer to the string in device memory.
A non-owning, immutable view of device data that is a variable length char array representing a UTF-8...
Definition: string_view.hpp:44
An owning class to represent a struct value in device memory.
Definition: scalar.hpp:780
struct_scalar(host_span< column_view const > data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new struct scalar object from a host_span of column_views.
table_view view() const
Returns a non-owning, immutable view to underlying device data.
struct_scalar(table &&data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new struct scalar object from an existing table in device memory.
struct_scalar(table_view const &data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new struct scalar object from table_view.
struct_scalar(struct_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new struct scalar object by deep copying another.
struct_scalar(struct_scalar &&other)=default
Move constructor for struct_scalar.
A set of cudf::column_view's of the same size.
Definition: table_view.hpp:200
A set of cudf::column's of the same size.
Definition: table.hpp:40
An owning class to represent a timestamp value in device memory.
Definition: scalar.hpp:609
timestamp_scalar(timestamp_scalar &&other)=default
Move constructor for timestamp_scalar.
typename T::rep rep_type
The underlying representation type of the timestamp.
Definition: scalar.hpp:613
rep_type ticks_since_epoch(rmm::cuda_stream_view stream)
Returns the duration in number of ticks since the UNIX epoch.
timestamp_scalar(Duration2 const &value, bool is_valid, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new timestamp scalar object from a duration that is convertible to T::duration.
timestamp_scalar(timestamp_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Construct a new timestamp scalar object by deep copying another.
Class definition for cudf::column.
rmm::cuda_stream_view const get_default_stream()
Get the current default stream.
scale_type
The scale type for fixed_point.
Definition: fixed_point.hpp:43
rmm::device_async_resource_ref get_current_device_resource_ref()
Get the current device memory resource reference.
cuda::mr::async_resource_ref< cuda::mr::device_accessible > device_async_resource_ref
std::unique_ptr< cudf::column > is_valid(cudf::column_view const &input, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::device_async_resource_ref mr=cudf::get_current_device_resource_ref())
Creates a column of type_id::BOOL8 elements where for every element in input true indicates the value...
int32_t size_type
Row index type for columns and tables.
Definition: types.hpp:95
cuDF interfaces
Definition: host_udf.hpp:37
C++20 std::span with reduced feature set.
Definition: span.hpp:194
Class definition for cudf::table.
Type declarations for libcudf.