| 110 | } |
| 111 | |
| 112 | T* GetColumn(ui32 columnId) const { |
| 113 | CB_ENSURE(columnId < ColumnCount, "Column id " << columnId << " should be less than " << ColumnCount); |
| 114 | return Data.Get() + NCudaLib::NAligment::ColumnShift(Size(), columnId); |
| 115 | } |
| 116 | |
| 117 | /* this is size of columns with aligments */ |
| 118 | ui64 AlignedColumnSize() const { |
no test coverage detected