19 #include <cudf/detail/utilities/assert.cuh>
66 struct type_to_name_impl {
73 inline std::string operator()()
79 template <cudf::type_
id t>
80 struct id_to_type_impl {
92 template <cudf::type_
id Id>
110 template <
typename T>
112 std::conditional_t<std::is_same_v<numeric::decimal32, T>, int32_t,
113 std::conditional_t<std::is_same_v<numeric::decimal64, T>, int64_t,
114 std::conditional_t<std::is_same_v<numeric::decimal128, T>, __int128_t, T>>>;
126 template <
typename T>
141 #ifndef CUDF_TYPE_MAPPING
142 #define CUDF_TYPE_MAPPING(Type, Id) \
144 constexpr inline type_id type_to_id<Type>() \
149 inline std::string type_to_name_impl::operator()<Type>() \
151 return CUDF_STRINGIFY(Type); \
154 struct id_to_type_impl<Id> { \
197 template <cudf::type_
id Id>
202 template <
typename T>
203 struct type_to_scalar_type_impl {
213 #ifndef MAP_NUMERIC_SCALAR
214 #define MAP_NUMERIC_SCALAR(Type) \
216 struct type_to_scalar_type_impl<Type> { \
217 using ScalarType = cudf::numeric_scalar<Type>; \
218 using ScalarDeviceType = cudf::numeric_scalar_device_view<Type>; \
236 struct type_to_scalar_type_impl<std::string> {
242 struct type_to_scalar_type_impl<
cudf::string_view> {
273 struct type_to_scalar_type_impl<
cudf::list_view> {
279 struct type_to_scalar_type_impl<
cudf::struct_view> {
290 #ifndef MAP_TIMESTAMP_SCALAR
291 #define MAP_TIMESTAMP_SCALAR(Type) \
293 struct type_to_scalar_type_impl<Type> { \
294 using ScalarType = cudf::timestamp_scalar<Type>; \
295 using ScalarDeviceType = cudf::timestamp_scalar_device_view<Type>; \
311 #ifndef MAP_DURATION_SCALAR
312 #define MAP_DURATION_SCALAR(Type) \
314 struct type_to_scalar_type_impl<Type> { \
315 using ScalarType = cudf::duration_scalar<Type>; \
316 using ScalarDeviceType = cudf::duration_scalar_device_view<Type>; \
331 template <
typename T>
339 template <
typename T>
437 #pragma nv_exec_check_disable
439 template <
template <cudf::type_
id>
typename IdTypeMap = id_to_type_impl,
446 switch (dtype.id()) {
448 return f.template operator()<
typename IdTypeMap<type_id::INT8>::type>(
449 std::forward<Ts>(args)...);
451 return f.template operator()<
typename IdTypeMap<type_id::INT16>::type>(
452 std::forward<Ts>(args)...);
454 return f.template operator()<
typename IdTypeMap<type_id::INT32>::type>(
455 std::forward<Ts>(args)...);
457 return f.template operator()<
typename IdTypeMap<type_id::INT64>::type>(
458 std::forward<Ts>(args)...);
460 return f.template operator()<
typename IdTypeMap<type_id::UINT8>::type>(
461 std::forward<Ts>(args)...);
463 return f.template operator()<
typename IdTypeMap<type_id::UINT16>::type>(
464 std::forward<Ts>(args)...);
466 return f.template operator()<
typename IdTypeMap<type_id::UINT32>::type>(
467 std::forward<Ts>(args)...);
469 return f.template operator()<
typename IdTypeMap<type_id::UINT64>::type>(
470 std::forward<Ts>(args)...);
472 return f.template operator()<
typename IdTypeMap<type_id::FLOAT32>::type>(
473 std::forward<Ts>(args)...);
475 return f.template operator()<
typename IdTypeMap<type_id::FLOAT64>::type>(
476 std::forward<Ts>(args)...);
478 return f.template operator()<
typename IdTypeMap<type_id::BOOL8>::type>(
479 std::forward<Ts>(args)...);
481 return f.template operator()<
typename IdTypeMap<type_id::TIMESTAMP_DAYS>::type>(
482 std::forward<Ts>(args)...);
484 return f.template operator()<
typename IdTypeMap<type_id::TIMESTAMP_SECONDS>::type>(
485 std::forward<Ts>(args)...);
487 return f.template operator()<
typename IdTypeMap<type_id::TIMESTAMP_MILLISECONDS>::type>(
488 std::forward<Ts>(args)...);
490 return f.template operator()<
typename IdTypeMap<type_id::TIMESTAMP_MICROSECONDS>::type>(
491 std::forward<Ts>(args)...);
493 return f.template operator()<
typename IdTypeMap<type_id::TIMESTAMP_NANOSECONDS>::type>(
494 std::forward<Ts>(args)...);
496 return f.template operator()<
typename IdTypeMap<type_id::DURATION_DAYS>::type>(
497 std::forward<Ts>(args)...);
499 return f.template operator()<
typename IdTypeMap<type_id::DURATION_SECONDS>::type>(
500 std::forward<Ts>(args)...);
502 return f.template operator()<
typename IdTypeMap<type_id::DURATION_MILLISECONDS>::type>(
503 std::forward<Ts>(args)...);
505 return f.template operator()<
typename IdTypeMap<type_id::DURATION_MICROSECONDS>::type>(
506 std::forward<Ts>(args)...);
508 return f.template operator()<
typename IdTypeMap<type_id::DURATION_NANOSECONDS>::type>(
509 std::forward<Ts>(args)...);
511 return f.template operator()<
typename IdTypeMap<type_id::DICTIONARY32>::type>(
512 std::forward<Ts>(args)...);
514 return f.template operator()<
typename IdTypeMap<type_id::STRING>::type>(
515 std::forward<Ts>(args)...);
517 return f.template operator()<
typename IdTypeMap<type_id::LIST>::type>(
518 std::forward<Ts>(args)...);
520 return f.template operator()<
typename IdTypeMap<type_id::DECIMAL32>::type>(
521 std::forward<Ts>(args)...);
523 return f.template operator()<
typename IdTypeMap<type_id::DECIMAL64>::type>(
524 std::forward<Ts>(args)...);
526 return f.template operator()<
typename IdTypeMap<type_id::DECIMAL128>::type>(
527 std::forward<Ts>(args)...);
529 return f.template operator()<
typename IdTypeMap<type_id::STRUCT>::type>(
530 std::forward<Ts>(args)...);
532 #ifndef __CUDA_ARCH__
535 CUDF_UNREACHABLE(
"Invalid type_id.");
543 template <
typename T1>
544 struct double_type_dispatcher_second_type {
546 #pragma nv_exec_check_disable
548 template <
typename T2,
typename F,
typename... Ts>
549 CUDF_HOST_DEVICE __forceinline__ decltype(
auto) operator()(F&& f, Ts&&... args)
const
551 return f.template operator()<T1, T2>(std::forward<Ts>(args)...);
555 template <
template <cudf::type_
id>
typename IdTypeMap>
556 struct double_type_dispatcher_first_type {
558 #pragma nv_exec_check_disable
560 template <
typename T1,
typename F,
typename... Ts>
561 CUDF_HOST_DEVICE __forceinline__ decltype(
auto) operator()(
cudf::data_type type2,
565 return type_dispatcher<IdTypeMap>(type2,
566 detail::double_type_dispatcher_second_type<T1>{},
568 std::forward<Ts>(args)...);
590 #pragma nv_exec_check_disable
592 template <
template <cudf::type_
id>
typename IdTypeMap = id_to_type_impl,
typename F,
typename... Ts>
596 return type_dispatcher<IdTypeMap>(type1,
597 detail::double_type_dispatcher_first_type<IdTypeMap>{},
600 std::forward<Ts>(args)...);
Indicator for the logical data type of an element in a column.
A type of scalar_device_view that stores a pointer to a fixed_point value.
An owning class to represent a fixed_point number in device memory.
An owning class to represent a list value in device memory.
A non-owning, immutable view of device data that represents a list of elements of arbitrary type (inc...
A type of scalar_device_view that stores a pointer to a numerical value.
An owning class to represent a numerical value in device memory.
An owning class to represent a singular value.
A type of scalar_device_view that stores a pointer to a string value.
An owning class to represent a string in device memory.
A non-owning, immutable view of device data that is a variable length char array representing a UTF-8...
An owning class to represent a struct value in device memory.
A non-owning, immutable view of device data that represents a struct with fields of arbitrary types (...
A type for representing a number with a fixed amount of precision.
Concrete type definition for dictionary columns.
Concrete type definitions for int32_t and int64_t durations in varying resolutions.
Class definition for fixed point data type.
dictionary_wrapper< int32_t > dictionary32
32-bit integer indexed dictionary wrapper
fixed_point< int32_t, Radix::BASE_10 > decimal32
32-bit decimal fixed point
fixed_point< int64_t, Radix::BASE_10 > decimal64
64-bit decimal fixed point
fixed_point< __int128_t, Radix::BASE_10 > decimal128
128-bit decimal fixed point
detail::timestamp< cudf::duration_ms > timestamp_ms
Type alias representing a cudf::duration_ms (int64_t) since the unix epoch.
detail::timestamp< cudf::duration_s > timestamp_s
Type alias representing a cudf::duration_s (int64_t) since the unix epoch.
detail::timestamp< cudf::duration_D > timestamp_D
Type alias representing a cudf::duration_D (int32_t) since the unix epoch.
cuda::std::chrono::duration< int64_t, cuda::std::chrono::nanoseconds::period > duration_ns
Type alias representing an int64_t duration of nanoseconds.
cuda::std::chrono::duration< int32_t, cuda::std::chrono::days::period > duration_D
Type alias representing an int32_t duration of days.
cuda::std::chrono::duration< int64_t, cuda::std::chrono::milliseconds::period > duration_ms
Type alias representing an int64_t duration of milliseconds.
cuda::std::chrono::duration< int64_t, cuda::std::chrono::microseconds::period > duration_us
Type alias representing an int64_t duration of microseconds.
detail::timestamp< cudf::duration_us > timestamp_us
Type alias representing a cudf::duration_us (int64_t) since the unix epoch.
detail::timestamp< cudf::duration_ns > timestamp_ns
Type alias representing a cudf::duration_ns (int64_t) since the unix epoch.
cuda::std::chrono::duration< int64_t, cuda::std::chrono::seconds::period > duration_s
Type alias representing an int64_t duration of seconds.
#define MAP_TIMESTAMP_SCALAR(Type)
Macro used to define scalar type and scalar device type for cudf::timestamp_scalar template class for...
std::string type_to_name(data_type type)
Return a name for a given type.
#define MAP_DURATION_SCALAR(Type)
Macro used to define scalar type and scalar device type for cudf::duration_scalar template class for ...
CUDF_HOST_DEVICE constexpr decltype(auto) __forceinline__ type_dispatcher(cudf::data_type dtype, Functor f, Ts &&... args)
Invokes an operator() template with the type instantiation based on the specified cudf::data_type's i...
std::conditional_t< std::is_same_v< numeric::decimal32, T >, int32_t, std::conditional_t< std::is_same_v< numeric::decimal64, T >, int64_t, std::conditional_t< std::is_same_v< numeric::decimal128, T >, __int128_t, T > >> device_storage_type_t
"Returns" the corresponding type that is stored on the device when using cudf::column
typename type_to_scalar_type_impl< T >::ScalarDeviceType scalar_device_type_t
Maps a C++ type to the scalar device type required to hold its value.
#define CUDF_TYPE_MAPPING(Type, Id)
Macro used to define a mapping between a concrete C++ type and a cudf::type_id enum.
typename type_to_scalar_type_impl< T >::ScalarType scalar_type_t
Maps a C++ type to the scalar type required to hold its value.
constexpr type_id type_to_id()
Maps a C++ type to its corresponding cudf::type_id
CUDF_HOST_DEVICE constexpr decltype(auto) __forceinline__ double_type_dispatcher(cudf::data_type type1, cudf::data_type type2, F &&f, Ts &&... args)
Dispatches two type template parameters to a callable.
typename id_to_type_impl< Id >::type id_to_type
Maps a cudf::type_id to its corresponding concrete C++ type.
constexpr bool type_id_matches_device_storage_type(type_id id)
Checks if fixed_point-like types have template type T matching the column's stored type id.
#define MAP_NUMERIC_SCALAR(Type)
Macro used to define scalar type and scalar device type for cudf::numeric_scalar template class for n...
#define CUDF_FAIL(...)
Indicates that an erroneous code path has been taken.
type_id
Identifies a column's logical element type.
@ BOOL8
Boolean using one byte per value, 0 == false, else true.
@ FLOAT64
8 byte floating point
@ UINT32
4 byte unsigned integer
@ DURATION_MILLISECONDS
time interval of milliseconds in int64
@ UINT16
2 byte unsigned integer
@ INT64
8 byte signed integer
@ DECIMAL128
Fixed-point type with __int128_t.
@ INT16
2 byte signed integer
@ TIMESTAMP_MILLISECONDS
point in time in milliseconds since Unix Epoch in int64
@ DURATION_NANOSECONDS
time interval of nanoseconds in int64
@ INT32
4 byte signed integer
@ DURATION_DAYS
time interval of days in int32
@ UINT64
8 byte unsigned integer
@ TIMESTAMP_MICROSECONDS
point in time in microseconds since Unix Epoch in int64
@ DURATION_SECONDS
time interval of seconds in int64
@ DURATION_MICROSECONDS
time interval of microseconds in int64
@ FLOAT32
4 byte floating point
@ EMPTY
Always null with no underlying data.
@ TIMESTAMP_SECONDS
point in time in seconds since Unix Epoch in int64
@ TIMESTAMP_NANOSECONDS
point in time in nanoseconds since Unix Epoch in int64
@ TIMESTAMP_DAYS
point in time in days since Unix Epoch in int32
@ DECIMAL64
Fixed-point type with int64_t.
@ DECIMAL32
Fixed-point type with int32_t.
@ UINT8
1 byte unsigned integer
@ INT8
1 byte signed integer
@ DICTIONARY32
Dictionary type using int32 indices.
fixed_point and supporting types
A strongly typed wrapper for indices in a DICTIONARY type column.
Use this specialization on type_dispatcher whenever you only need to operate on the underlying stored...
device_storage_type_t< id_to_type< Id > > type
The underlying type.
Concrete type definitions for int32_t and int64_t timestamps in varying resolutions as durations sinc...
Type declarations for libcudf.