OmniSciDB  c1a53651b2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Column< T > Struct Template Reference

#include <heavydbTypes.h>

Public Member Functions

DEVICE Column (T *ptr, const int64_t num_rows)
 
DEVICE Column (const Column &other)
 
DEVICE Column (std::vector< T > &input_vec)
 
DEVICE T & operator[] (const unsigned int index) const
 
DEVICE T * getPtr () const
 
DEVICE int64_t size () const
 
DEVICE void setSize (int64_t num_rows)
 
DEVICE bool isNull (int64_t index) const
 
DEVICE void setNull (int64_t index)
 
DEVICE Column< T > & operator= (const Column< T > &other)
 
template<>
DEVICE bool isNull (int64_t index) const
 
template<>
DEVICE void setNull (int64_t index)
 

Public Attributes

T * ptr_
 
int64_t num_rows_
 

Detailed Description

template<typename T>
struct Column< T >

Definition at line 724 of file heavydbTypes.h.

Constructor & Destructor Documentation

template<typename T>
DEVICE Column< T >::Column ( T *  ptr,
const int64_t  num_rows 
)
inline

Definition at line 728 of file heavydbTypes.h.

728 : ptr_(ptr), num_rows_(num_rows) {}
T * ptr_
Definition: heavydbTypes.h:725
int64_t num_rows_
Definition: heavydbTypes.h:726
template<typename T>
DEVICE Column< T >::Column ( const Column< T > &  other)
inline

Definition at line 732 of file heavydbTypes.h.

732 : ptr_(other.ptr_), num_rows_(other.num_rows_) {}
T * ptr_
Definition: heavydbTypes.h:725
int64_t num_rows_
Definition: heavydbTypes.h:726
template<typename T>
DEVICE Column< T >::Column ( std::vector< T > &  input_vec)
inline

Definition at line 733 of file heavydbTypes.h.

734  : ptr_(input_vec.data()), num_rows_(static_cast<int64_t>(input_vec.size())) {}
T * ptr_
Definition: heavydbTypes.h:725
int64_t num_rows_
Definition: heavydbTypes.h:726

Member Function Documentation

template<typename T>
DEVICE T* Column< T >::getPtr ( ) const
inline

Definition at line 750 of file heavydbTypes.h.

References Column< T >::ptr_.

Referenced by get_column_mean(), get_column_stats(), and get_column_std_dev().

750 { return ptr_; }
T * ptr_
Definition: heavydbTypes.h:725

+ Here is the caller graph for this function:

template<typename T>
DEVICE bool Column< T >::isNull ( int64_t  index) const
inline

Definition at line 754 of file heavydbTypes.h.

References is_null(), and Column< T >::ptr_.

Referenced by array_asarray__cpu_template(), ct_binding_scalar_multiply__cpu_template(), ct_overload_column_test__cpu_template(), ct_timestamp_add_offset(), ct_timestamp_extract(), ct_timestamp_test_columns_and_scalars__cpu(), get_column_metadata(), Column< TextEncodingDict >::getCString(), Column< TextEncodingDict >::getString(), and row_adder().

754 { return is_null(ptr_[index]); }
T * ptr_
Definition: heavydbTypes.h:725
CONSTEXPR DEVICE bool is_null(const T &value)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

template<>
DEVICE bool Column< Timestamp >::isNull ( int64_t  index) const
inline

Definition at line 1009 of file heavydbTypes.h.

References is_null().

1009  {
1010  return is_null(ptr_[index].time);
1011 }
T * ptr_
Definition: heavydbTypes.h:725
CONSTEXPR DEVICE bool is_null(const T &value)

+ Here is the call graph for this function:

template<typename T>
DEVICE Column<T>& Column< T >::operator= ( const Column< T > &  other)
inline

Definition at line 756 of file heavydbTypes.h.

References Column< T >::ptr_, Column< T >::size(), and heavydb.dtypes::T.

756  {
757 #ifndef __CUDACC__
758  if (size() == other.size()) {
759  memcpy(ptr_, &other[0], other.size() * sizeof(T));
760  } else {
761  throw std::runtime_error("cannot copy assign columns with different sizes");
762  }
763 #else
764  if (size() == other.size()) {
765  for (unsigned int i = 0; i < size(); i++) {
766  ptr_[i] = other[i];
767  }
768  } else {
769  // TODO: set error
770  }
771 #endif
772  return *this;
773  }
DEVICE int64_t size() const
Definition: heavydbTypes.h:751
T * ptr_
Definition: heavydbTypes.h:725

+ Here is the call graph for this function:

template<typename T>
DEVICE T& Column< T >::operator[] ( const unsigned int  index) const
inline

Definition at line 738 of file heavydbTypes.h.

References Column< T >::num_rows_, Column< T >::ptr_, and set_null().

738  {
739  if (index >= num_rows_) {
740 #ifndef __CUDACC__
741  throw std::runtime_error("column buffer index is out of range");
742 #else
743  auto& null_value = Column_null_value<T>;
744  set_null(null_value);
745  return null_value;
746 #endif
747  }
748  return ptr_[index];
749  }
T * ptr_
Definition: heavydbTypes.h:725
CONSTEXPR DEVICE void set_null(T &value)
int64_t num_rows_
Definition: heavydbTypes.h:726

+ Here is the call graph for this function:

template<typename T>
DEVICE void Column< T >::setNull ( int64_t  index)
inline

Definition at line 755 of file heavydbTypes.h.

References Column< T >::ptr_, and set_null().

Referenced by array_asarray__cpu_template(), array_copier__cpu_template(), GeoRaster< T, Z >::calculate_slope_and_aspect(), ct_binding_scalar_multiply__cpu_template(), ct_overload_column_test__cpu_template(), ct_test_nullable(), ct_timestamp_add_offset(), ct_timestamp_extract(), ct_timestamp_test_columns_and_scalars__cpu(), ct_union_pushdown_projection__cpu_template(), ct_union_pushdown_stats__cpu_template(), GeoRaster< T, Z >::outputDenseColumns(), row_adder(), and sum_along_row__cpu_template().

755 { set_null(ptr_[index]); }
T * ptr_
Definition: heavydbTypes.h:725
CONSTEXPR DEVICE void set_null(T &value)

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

template<>
DEVICE void Column< Timestamp >::setNull ( int64_t  index)
inline

Definition at line 1014 of file heavydbTypes.h.

References set_null().

1014  {
1015  set_null(ptr_[index].time);
1016 }
T * ptr_
Definition: heavydbTypes.h:725
CONSTEXPR DEVICE void set_null(T &value)

+ Here is the call graph for this function:

template<typename T>
DEVICE void Column< T >::setSize ( int64_t  num_rows)
inline

Definition at line 752 of file heavydbTypes.h.

References Column< T >::num_rows_.

752 { num_rows_ = num_rows; }
int64_t num_rows_
Definition: heavydbTypes.h:726
template<typename T>
DEVICE int64_t Column< T >::size ( ) const
inline

Definition at line 751 of file heavydbTypes.h.

References Column< T >::num_rows_.

Referenced by TableFunctionManager::allocate_output_buffers(), array_asarray__cpu_template(), GeoRaster< T, Z >::calculate_slope_and_aspect(), column_list_first_last(), column_list_get__cpu_(), GeoRaster< T, Z >::computeParallelImpl(), GeoRaster< T, Z >::computeSerialImpl(), ct_add_size_and_mul_alpha(), ct_binding_column2__cpu_template(), ct_binding_scalar_multiply__cpu_template(), ct_binding_str_length__cpu_(), ct_binding_template__cpu_template(), ct_copy_and_add_size(), ct_cursor_named_args__cpu_(), ct_get_string_chars__template(), ct_named_const_output__cpu_template(), ct_named_output__cpu_template(), ct_named_rowmul_output__cpu_template(), ct_named_user_const_output__cpu_template(), ct_overload_column_list_test2__cpu_template(), ct_overload_column_list_test__cpu_template(), ct_overload_column_test__cpu_template(), ct_pushdown_projection__cpu_template(), ct_pushdown_stats__cpu_template(), ct_sleep1__cpu_(), ct_sleep2(), ct_sparse_add(), ct_test_nullable(), ct_test_preflight_multicursor_qe227__cpu_(), ct_test_preflight_singlecursor_qe227__cpu_(), ct_test_preflight_sizer(), ct_test_preflight_sizer_const(), ct_throw_if_gt_100__cpu_template(), ct_timestamp_add_interval__template(), ct_timestamp_add_offset(), ct_timestamp_extract(), ct_timestamp_test_columns_and_scalars__cpu(), ct_timestamp_truncate(), ct_union_pushdown_projection__cpu_template(), ct_union_pushdown_stats__cpu_template(), dbscan__cpu_template(), GeoRaster< T, Z >::GeoRaster(), get_column_mean(), get_column_metadata(), get_column_min_max(), get_column_stats(), get_column_std_dev(), get_max_with_row_offset__cpu_(), Column< Array< T > >::getItem(), kmeans__cpu_template(), linear_reg_predict__cpu_template(), Column< T >::operator=(), Column< TextEncodingDict >::operator=(), row_adder(), row_addsub(), row_copier(), row_copier2__cpu__(), sort_coefs(), sort_column_limit__cpu_template(), and TableFunctions_Namespace::strip_column_metadata().

751 { return num_rows_; }
int64_t num_rows_
Definition: heavydbTypes.h:726

Member Data Documentation


The documentation for this struct was generated from the following file: