int32_t 和 int64_t 时间戳的具体类型定义,表示自 UNIX 纪元以来的不同分辨率的持续时间。更多...
命名空间 | |
cudf | |
cuDF 接口 | |
类型定义 | |
template<class Duration > | |
using | cudf::detail::time_point = cuda::std::chrono::sys_time< Duration > |
时间点类型。 | |
template<class Duration > | |
using | cudf::detail::timestamp = time_point< Duration > |
time_point 列的包装器,具有不同的分辨率。更多... | |
using | cudf::timestamp_D = detail::timestamp< cudf::duration_D > |
表示自 unix 纪元以来 cudf::duration_D (int32_t) 的类型别名。 | |
using | cudf::timestamp_h = detail::timestamp< cudf::duration_h > |
表示自 unix 纪元以来 cudf::duration_h (int32_t) 的类型别名。 | |
using | cudf::timestamp_m = detail::timestamp< cudf::duration_m > |
表示自 unix 纪元以来 cudf::duration_m (int32_t) 的类型别名。 | |
using | cudf::timestamp_s = detail::timestamp< cudf::duration_s > |
表示自 unix 纪元以来 cudf::duration_s (int64_t) 的类型别名。 | |
using | cudf::timestamp_ms = detail::timestamp< cudf::duration_ms > |
表示自 unix 纪元以来 cudf::duration_ms (int64_t) 的类型别名。 | |
using | cudf::timestamp_us = detail::timestamp< cudf::duration_us > |
表示自 unix 纪元以来 cudf::duration_us (int64_t) 的类型别名。 | |
using | cudf::timestamp_ns = detail::timestamp< cudf::duration_ns > |
表示自 unix 纪元以来 cudf::duration_ns (int64_t) 的类型别名。 | |
int32_t 和 int64_t 时间戳的具体类型定义,表示自 UNIX 纪元以来的不同分辨率的持续时间。
定义于文件 timestamps.hpp。
using cudf::detail::timestamp = typedef time_point<Duration> |