scalar.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-2023, 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/table/table.hpp>
20 #include <cudf/types.hpp>
23 
24 #include <rmm/cuda_stream_view.hpp>
25 #include <rmm/device_buffer.hpp>
26 #include <rmm/device_scalar.hpp>
27 #include <rmm/mr/device/per_device_resource.hpp>
28 
34 namespace cudf {
48 class scalar {
49  public:
50  virtual ~scalar() = default;
51  scalar& operator=(scalar const& other) = delete;
52  scalar& operator=(scalar&& other) = delete;
53 
59  [[nodiscard]] data_type type() const noexcept;
60 
67  void set_valid_async(bool is_valid, rmm::cuda_stream_view stream = cudf::get_default_stream());
68 
79  [[nodiscard]] bool is_valid(rmm::cuda_stream_view stream = cudf::get_default_stream()) const;
80 
86  bool* validity_data();
87 
93  [[nodiscard]] bool const* validity_data() const;
94 
95  protected:
97  rmm::device_scalar<bool> _is_valid;
98 
99  scalar() = delete;
100 
105  scalar(scalar&& other) = default;
106 
114  scalar(scalar const& other,
115  rmm::cuda_stream_view stream = cudf::get_default_stream(),
116  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
117 
130  bool is_valid = false,
131  rmm::cuda_stream_view stream = cudf::get_default_stream(),
132  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
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() override = default;
149 
155 
156  fixed_width_scalar& operator=(fixed_width_scalar const& other) = delete;
157  fixed_width_scalar& operator=(fixed_width_scalar&& other) = delete;
158 
167  rmm::cuda_stream_view stream = cudf::get_default_stream(),
168  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
169 
176  void set_value(T value, rmm::cuda_stream_view stream = cudf::get_default_stream());
177 
181  explicit operator value_type() const;
182 
189  T value(rmm::cuda_stream_view stream = cudf::get_default_stream()) const;
190 
195  T* data();
196 
201  T const* data() const;
202 
203  protected:
204  rmm::device_scalar<T> _data;
205 
206  fixed_width_scalar() = delete;
207 
217  bool is_valid = true,
218  rmm::cuda_stream_view stream = cudf::get_default_stream(),
219  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
220 
229  fixed_width_scalar(rmm::device_scalar<T>&& data,
230  bool is_valid = true,
231  rmm::cuda_stream_view stream = cudf::get_default_stream(),
232  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
233 };
234 
235 } // namespace detail
236 
242 template <typename T>
244  static_assert(is_numeric<T>(), "Unexpected non-numeric type.");
245 
246  public:
247  numeric_scalar() = delete;
248  ~numeric_scalar() = default;
249 
254  numeric_scalar(numeric_scalar&& other) = default;
255 
256  numeric_scalar& operator=(numeric_scalar const& other) = delete;
257  numeric_scalar& operator=(numeric_scalar&& other) = delete;
258 
267  rmm::cuda_stream_view stream = cudf::get_default_stream(),
268  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
269 
279  bool is_valid = true,
280  rmm::cuda_stream_view stream = cudf::get_default_stream(),
281  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
282 
291  numeric_scalar(rmm::device_scalar<T>&& data,
292  bool is_valid = true,
293  rmm::cuda_stream_view stream = cudf::get_default_stream(),
294  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
295 };
296 
302 template <typename T>
303 class fixed_point_scalar : public scalar {
304  static_assert(is_fixed_point<T>(), "Unexpected non-fixed_point type.");
305 
306  public:
307  using rep_type = typename T::rep;
308  using value_type = T;
309 
310  fixed_point_scalar() = delete;
311  ~fixed_point_scalar() override = default;
312 
318 
319  fixed_point_scalar& operator=(fixed_point_scalar const& other) = delete;
320  fixed_point_scalar& operator=(fixed_point_scalar&& other) = delete;
321 
330  rmm::cuda_stream_view stream = cudf::get_default_stream(),
331  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
332 
343  numeric::scale_type scale,
344  bool is_valid = true,
345  rmm::cuda_stream_view stream = cudf::get_default_stream(),
346  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
347 
357  bool is_valid = true,
358  rmm::cuda_stream_view stream = cudf::get_default_stream(),
359  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
360 
370  bool is_valid = true,
371  rmm::cuda_stream_view stream = cudf::get_default_stream(),
372  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
373 
383  fixed_point_scalar(rmm::device_scalar<rep_type>&& data,
384  numeric::scale_type scale,
385  bool is_valid = true,
386  rmm::cuda_stream_view stream = cudf::get_default_stream(),
387  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
388 
395  rep_type value(rmm::cuda_stream_view stream = cudf::get_default_stream()) const;
396 
403  T fixed_point_value(rmm::cuda_stream_view stream = cudf::get_default_stream()) const;
404 
408  explicit operator value_type() const;
409 
415 
420  rep_type const* data() const;
421 
422  protected:
423  rmm::device_scalar<rep_type> _data;
424 };
425 
429 class string_scalar : public scalar {
430  public:
432 
433  string_scalar() = delete;
434  ~string_scalar() override = default;
435 
440  string_scalar(string_scalar&& other) = default;
441 
442  // string_scalar(string_scalar const& other) = delete;
443  string_scalar& operator=(string_scalar const& other) = delete;
444  string_scalar& operator=(string_scalar&& other) = delete;
445 
454  rmm::cuda_stream_view stream = cudf::get_default_stream(),
455  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
456 
467  string_scalar(std::string const& string,
468  bool is_valid = true,
469  rmm::cuda_stream_view stream = cudf::get_default_stream(),
470  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
471 
482  string_scalar(value_type const& source,
483  bool is_valid = true,
484  rmm::cuda_stream_view stream = cudf::get_default_stream(),
485  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
486 
497  string_scalar(rmm::device_scalar<value_type>& data,
498  bool is_valid = true,
499  rmm::cuda_stream_view stream = cudf::get_default_stream(),
500  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
501 
513  string_scalar(rmm::device_buffer&& data,
514  bool is_valid = true,
515  rmm::cuda_stream_view stream = cudf::get_default_stream(),
516  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
517 
521  explicit operator std::string() const;
522 
529  [[nodiscard]] std::string to_string(
530  rmm::cuda_stream_view stream = cudf::get_default_stream()) const;
531 
538  [[nodiscard]] value_type value(rmm::cuda_stream_view stream = cudf::get_default_stream()) const;
539 
544  [[nodiscard]] size_type size() const;
545 
550  [[nodiscard]] char const* data() const;
551 
552  protected:
553  rmm::device_buffer _data{};
554 };
555 
562 template <typename T>
564  static_assert(is_chrono<T>(), "Unexpected non-chrono type");
565 
566  public:
567  chrono_scalar() = delete;
568  ~chrono_scalar() = default;
569 
574  chrono_scalar(chrono_scalar&& other) = default;
575 
576  chrono_scalar& operator=(chrono_scalar const& other) = delete;
577  chrono_scalar& operator=(chrono_scalar&& other) = delete;
578 
587  rmm::cuda_stream_view stream = cudf::get_default_stream(),
588  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
589 
599  bool is_valid = true,
600  rmm::cuda_stream_view stream = cudf::get_default_stream(),
601  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
602 
611  chrono_scalar(rmm::device_scalar<T>&& data,
612  bool is_valid = true,
613  rmm::cuda_stream_view stream = cudf::get_default_stream(),
614  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
615 };
616 
623 template <typename T>
624 class timestamp_scalar : public chrono_scalar<T> {
625  public:
626  static_assert(is_timestamp<T>(), "Unexpected non-timestamp type");
628  using rep_type = typename T::rep;
629 
630  timestamp_scalar() = delete;
631 
636  timestamp_scalar(timestamp_scalar&& other) = default;
637 
646  rmm::cuda_stream_view stream = cudf::get_default_stream(),
647  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
648 
659  template <typename Duration2>
660  timestamp_scalar(Duration2 const& value,
661  bool is_valid,
662  rmm::cuda_stream_view stream = cudf::get_default_stream(),
663  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
664 
670  rep_type ticks_since_epoch(rmm::cuda_stream_view stream);
671 };
672 
679 template <typename T>
680 class duration_scalar : public chrono_scalar<T> {
681  public:
682  static_assert(is_duration<T>(), "Unexpected non-duration type");
684  using rep_type = typename T::rep;
685 
686  duration_scalar() = delete;
687 
692  duration_scalar(duration_scalar&& other) = default;
693 
702  rmm::cuda_stream_view stream = cudf::get_default_stream(),
703  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
704 
714  bool is_valid,
715  rmm::cuda_stream_view stream = cudf::get_default_stream(),
716  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
717 
723  rep_type count(rmm::cuda_stream_view stream);
724 };
725 
729 class list_scalar : public scalar {
730  public:
731  list_scalar() = delete;
732  ~list_scalar() override = default;
733 
738  list_scalar(list_scalar&& other) = default;
739 
740  list_scalar& operator=(list_scalar const& other) = delete;
741  list_scalar& operator=(list_scalar&& other) = delete;
742 
750  list_scalar(list_scalar const& other,
751  rmm::cuda_stream_view stream = cudf::get_default_stream(),
752  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
753 
765  bool is_valid = true,
766  rmm::cuda_stream_view stream = cudf::get_default_stream(),
767  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
768 
778  bool is_valid = true,
779  rmm::cuda_stream_view stream = cudf::get_default_stream(),
780  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
781 
786  [[nodiscard]] column_view view() const;
787 
788  private:
789  cudf::column _data;
790 };
791 
795 class struct_scalar : public scalar {
796  public:
797  struct_scalar() = delete;
798  ~struct_scalar() override = default;
799 
804  struct_scalar(struct_scalar&& other) = default;
805  struct_scalar& operator=(struct_scalar const& other) = delete;
806  struct_scalar& operator=(struct_scalar&& other) = delete;
807 
816  rmm::cuda_stream_view stream = cudf::get_default_stream(),
817  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
818 
830  bool is_valid = true,
831  rmm::cuda_stream_view stream = cudf::get_default_stream(),
832  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
833 
845  bool is_valid = true,
846  rmm::cuda_stream_view stream = cudf::get_default_stream(),
847  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
848 
861  bool is_valid = true,
862  rmm::cuda_stream_view stream = cudf::get_default_stream(),
863  rmm::mr::device_memory_resource* mr = rmm::mr::get_current_device_resource());
864 
869  [[nodiscard]] table_view view() const;
870 
871  private:
872  table _data;
873 
877  void assert_valid_size();
878 
888  static table init_data(table&& data,
889  bool is_valid,
890  rmm::cuda_stream_view stream,
891  rmm::mr::device_memory_resource* mr);
892 };
893  // end of group
895 } // namespace cudf
An owning class to represent a timestamp/duration value in device memory.
Definition: scalar.hpp:563
chrono_scalar(chrono_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new chrono scalar object by deep copying another.
chrono_scalar(rmm::device_scalar< T > &&data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new chrono scalar object from existing device memory.
chrono_scalar(T value, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new chrono scalar object.
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:241
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:204
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::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new fixed width scalar object.
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
fixed_width_scalar(fixed_width_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new fixed-width scalar object by deep copying another.
fixed_width_scalar(rmm::device_scalar< T > &&data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new fixed width scalar object from existing device memory.
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:680
duration_scalar(rep_type value, bool is_valid, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new duration scalar object from tick counts.
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:684
duration_scalar(duration_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new duration scalar object by deep copying another.
An owning class to represent a fixed_point number in device memory.
Definition: scalar.hpp:303
rmm::device_scalar< rep_type > _data
device memory containing the value
Definition: scalar.hpp:423
fixed_point_scalar(fixed_point_scalar &&other)=default
Move constructor for fixed_point_scalar.
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::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new fixed_point scalar object from existing device memory.
fixed_point_scalar(rep_type value, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new fixed_point scalar object from a value and default 0-scale.
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:308
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.
fixed_point_scalar(rep_type value, numeric::scale_type scale, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new fixed_point scalar object from already shifted value and scale.
fixed_point_scalar(fixed_point_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new fixed_point scalar object by deep copying another.
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:307
fixed_point_scalar(T value, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new fixed_point scalar object from a fixed_point number.
An owning class to represent a list value in device memory.
Definition: scalar.hpp:729
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::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new list scalar object by deep copying another.
list_scalar(cudf::column &&data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new list scalar object from existing column.
list_scalar(cudf::column_view const &data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new list scalar object from column_view.
list_scalar(list_scalar &&other)=default
Move constructor for list_scalar.
An owning class to represent a numerical value in device memory.
Definition: scalar.hpp:243
numeric_scalar(rmm::device_scalar< T > &&data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
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::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new numeric scalar object.
numeric_scalar(numeric_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
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:48
bool is_valid(rmm::cuda_stream_view stream=cudf::get_default_stream()) const
Indicates whether the scalar contains a valid value.
rmm::device_scalar< bool > _is_valid
Device bool signifying validity.
Definition: scalar.hpp:97
void set_valid_async(bool is_valid, rmm::cuda_stream_view stream=cudf::get_default_stream())
Updates the validity of the value.
scalar(data_type type, bool is_valid=false, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new scalar object.
scalar(scalar &&other)=default
Move constructor for scalar.
data_type _type
Logical type of value in the scalar.
Definition: scalar.hpp:96
scalar(scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new scalar object by deep copying another.
bool * validity_data()
Returns a raw pointer to the validity bool in device memory.
data_type type() const noexcept
Returns the scalar's logical value type.
An owning class to represent a string in device memory.
Definition: scalar.hpp:429
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.
rmm::device_buffer _data
device memory containing the string
Definition: scalar.hpp:553
size_type size() const
Returns the size of the string in bytes.
string_scalar(rmm::device_buffer &&data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new string scalar object by moving an existing string data buffer.
string_scalar(string_scalar &&other)=default
Move constructor for string_scalar.
string_scalar(rmm::device_scalar< value_type > &data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new string scalar object from string_view in device memory.
string_scalar(value_type const &source, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new string scalar object from string_view.
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(string_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new string scalar object by deep copying another string_scalar.
string_scalar(std::string const &string, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
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:795
struct_scalar(table_view const &data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new struct scalar object from table_view.
struct_scalar(table &&data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new struct scalar object from an existing table in device memory.
table_view view() const
Returns a non-owning, immutable view to underlying device data.
struct_scalar(struct_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new struct scalar object by deep copying another.
struct_scalar(host_span< column_view const > data, bool is_valid=true, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new struct scalar object from a host_span of column_views.
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:187
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:624
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:628
timestamp_scalar(Duration2 const &value, bool is_valid, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
Construct a new timestamp scalar object from a duration that is convertible to T::duration.
rep_type ticks_since_epoch(rmm::cuda_stream_view stream)
Returns the duration in number of ticks since the UNIX epoch.
timestamp_scalar(timestamp_scalar const &other, rmm::cuda_stream_view stream=cudf::get_default_stream(), rmm::mr::device_memory_resource *mr=rmm::mr::get_current_device_resource())
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
int32_t size_type
Row index type for columns and tables.
Definition: types.hpp:93
@ EMPTY
Always null with no underlying data.
cuDF interfaces
Definition: aggregation.hpp:34
C++20 std::span with reduced feature set.
Definition: span.hpp:224
Class definition for cudf::table.
Type declarations for libcudf.