1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
|
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include "contrib/libs/apache/arrow_next/cpp/src/arrow/tensor.h"
#include <algorithm>
#include <cmath>
#include <cstddef>
#include <cstdint>
#include <functional>
#include <memory>
#include <numeric>
#include <string>
#include <type_traits>
#include <vector>
#include "contrib/libs/apache/arrow_next/cpp/src/arrow/record_batch.h"
#include "contrib/libs/apache/arrow_next/cpp/src/arrow/status.h"
#include "contrib/libs/apache/arrow_next/cpp/src/arrow/type.h"
#include "contrib/libs/apache/arrow_next/cpp/src/arrow/type_traits.h"
#include "contrib/libs/apache/arrow_next/cpp/src/arrow/util/checked_cast.h"
#include "contrib/libs/apache/arrow_next/cpp/src/arrow/util/int_util_overflow.h"
#include "contrib/libs/apache/arrow_next/cpp/src/arrow/util/logging.h"
#include "contrib/libs/apache/arrow_next/cpp/src/arrow/util/unreachable.h"
#include "contrib/libs/apache/arrow_next/cpp/src/arrow/visit_type_inline.h"
namespace arrow20 {
using internal::checked_cast;
namespace internal {
Status ComputeRowMajorStrides(const FixedWidthType& type,
const std::vector<int64_t>& shape,
std::vector<int64_t>* strides) {
const int byte_width = type.byte_width();
const size_t ndim = shape.size();
int64_t remaining = 0;
if (!shape.empty() && shape.front() > 0) {
remaining = byte_width;
for (size_t i = 1; i < ndim; ++i) {
if (internal::MultiplyWithOverflow(remaining, shape[i], &remaining)) {
return Status::Invalid(
"Row-major strides computed from shape would not fit in 64-bit integer");
}
}
}
if (remaining == 0) {
strides->assign(shape.size(), byte_width);
return Status::OK();
}
strides->push_back(remaining);
for (size_t i = 1; i < ndim; ++i) {
remaining /= shape[i];
strides->push_back(remaining);
}
return Status::OK();
}
Status ComputeColumnMajorStrides(const FixedWidthType& type,
const std::vector<int64_t>& shape,
std::vector<int64_t>* strides) {
const int byte_width = type.byte_width();
const size_t ndim = shape.size();
int64_t total = 0;
if (!shape.empty() && shape.back() > 0) {
total = byte_width;
for (size_t i = 0; i < ndim - 1; ++i) {
if (internal::MultiplyWithOverflow(total, shape[i], &total)) {
return Status::Invalid(
"Column-major strides computed from shape would not fit in 64-bit "
"integer");
}
}
}
if (total == 0) {
strides->assign(shape.size(), byte_width);
return Status::OK();
}
total = byte_width;
for (size_t i = 0; i < ndim - 1; ++i) {
strides->push_back(total);
total *= shape[i];
}
strides->push_back(total);
return Status::OK();
}
} // namespace internal
namespace {
inline bool IsTensorStridesRowMajor(const std::shared_ptr<DataType>& type,
const std::vector<int64_t>& shape,
const std::vector<int64_t>& strides) {
std::vector<int64_t> c_strides;
const auto& fw_type = checked_cast<const FixedWidthType&>(*type);
if (internal::ComputeRowMajorStrides(fw_type, shape, &c_strides).ok()) {
return strides == c_strides;
} else {
return false;
}
}
inline bool IsTensorStridesColumnMajor(const std::shared_ptr<DataType>& type,
const std::vector<int64_t>& shape,
const std::vector<int64_t>& strides) {
std::vector<int64_t> f_strides;
const auto& fw_type = checked_cast<const FixedWidthType&>(*type);
if (internal::ComputeColumnMajorStrides(fw_type, shape, &f_strides).ok()) {
return strides == f_strides;
} else {
return false;
}
}
inline Status CheckTensorValidity(const std::shared_ptr<DataType>& type,
const std::shared_ptr<Buffer>& data,
const std::vector<int64_t>& shape) {
if (!type) {
return Status::Invalid("Null type is supplied");
}
if (!is_tensor_supported(type->id())) {
return Status::Invalid(type->ToString(), " is not valid data type for a tensor");
}
if (!data) {
return Status::Invalid("Null data is supplied");
}
if (!std::all_of(shape.begin(), shape.end(), [](int64_t x) { return x >= 0; })) {
return Status::Invalid("Shape elements must be positive");
}
return Status::OK();
}
Status CheckTensorStridesValidity(const std::shared_ptr<Buffer>& data,
const std::vector<int64_t>& shape,
const std::vector<int64_t>& strides,
const std::shared_ptr<DataType>& type) {
if (strides.size() != shape.size()) {
return Status::Invalid("strides must have the same length as shape");
}
if (data->size() == 0 && std::find(shape.begin(), shape.end(), 0) != shape.end()) {
return Status::OK();
}
// Check the largest offset can be computed without overflow
const size_t ndim = shape.size();
int64_t largest_offset = 0;
for (size_t i = 0; i < ndim; ++i) {
if (shape[i] == 0) continue;
if (strides[i] < 0) {
// TODO(mrkn): Support negative strides for sharing views
return Status::Invalid("negative strides not supported");
}
int64_t dim_offset;
if (!internal::MultiplyWithOverflow(shape[i] - 1, strides[i], &dim_offset)) {
if (!internal::AddWithOverflow(largest_offset, dim_offset, &largest_offset)) {
continue;
}
}
return Status::Invalid(
"offsets computed from shape and strides would not fit in 64-bit integer");
}
const int byte_width = type->byte_width();
if (largest_offset > data->size() - byte_width) {
return Status::Invalid("strides must not involve buffer over run");
}
return Status::OK();
}
} // namespace
namespace internal {
bool IsTensorStridesContiguous(const std::shared_ptr<DataType>& type,
const std::vector<int64_t>& shape,
const std::vector<int64_t>& strides) {
return IsTensorStridesRowMajor(type, shape, strides) ||
IsTensorStridesColumnMajor(type, shape, strides);
}
Status ValidateTensorParameters(const std::shared_ptr<DataType>& type,
const std::shared_ptr<Buffer>& data,
const std::vector<int64_t>& shape,
const std::vector<int64_t>& strides,
const std::vector<std::string>& dim_names) {
RETURN_NOT_OK(CheckTensorValidity(type, data, shape));
if (!strides.empty()) {
RETURN_NOT_OK(CheckTensorStridesValidity(data, shape, strides, type));
} else {
std::vector<int64_t> tmp_strides;
RETURN_NOT_OK(ComputeRowMajorStrides(checked_cast<const FixedWidthType&>(*type),
shape, &tmp_strides));
}
if (dim_names.size() > shape.size()) {
return Status::Invalid("too many dim_names are supplied");
}
return Status::OK();
}
template <typename Out>
struct ConvertColumnsToTensorVisitor {
Out*& out_values;
const ArrayData& in_data;
template <typename T>
Status Visit(const T&) {
if constexpr (is_numeric(T::type_id)) {
using In = typename T::c_type;
auto in_values = ArraySpan(in_data).GetSpan<In>(1, in_data.length);
if (in_data.null_count == 0) {
if constexpr (std::is_same_v<In, Out>) {
memcpy(out_values, in_values.data(), in_values.size_bytes());
out_values += in_values.size();
} else {
for (In in_value : in_values) {
*out_values++ = static_cast<Out>(in_value);
}
}
} else {
for (int64_t i = 0; i < in_data.length; ++i) {
*out_values++ =
in_data.IsNull(i) ? static_cast<Out>(NAN) : static_cast<Out>(in_values[i]);
}
}
return Status::OK();
}
Unreachable();
}
};
template <typename Out>
struct ConvertColumnsToTensorRowMajorVisitor {
Out*& out_values;
const ArrayData& in_data;
int num_cols;
int col_idx;
template <typename T>
Status Visit(const T&) {
if constexpr (is_numeric(T::type_id)) {
using In = typename T::c_type;
auto in_values = ArraySpan(in_data).GetSpan<In>(1, in_data.length);
if (in_data.null_count == 0) {
for (int64_t i = 0; i < in_data.length; ++i) {
out_values[i * num_cols + col_idx] = static_cast<Out>(in_values[i]);
}
} else {
for (int64_t i = 0; i < in_data.length; ++i) {
out_values[i * num_cols + col_idx] =
in_data.IsNull(i) ? static_cast<Out>(NAN) : static_cast<Out>(in_values[i]);
}
}
return Status::OK();
}
Unreachable();
}
};
template <typename DataType>
inline void ConvertColumnsToTensor(const RecordBatch& batch, uint8_t* out,
bool row_major) {
using CType = typename arrow20::TypeTraits<DataType>::CType;
auto* out_values = reinterpret_cast<CType*>(out);
int i = 0;
for (const auto& column : batch.columns()) {
if (row_major) {
ConvertColumnsToTensorRowMajorVisitor<CType> visitor{out_values, *column->data(),
batch.num_columns(), i++};
DCHECK_OK(VisitTypeInline(*column->type(), &visitor));
} else {
ConvertColumnsToTensorVisitor<CType> visitor{out_values, *column->data()};
DCHECK_OK(VisitTypeInline(*column->type(), &visitor));
}
}
}
Status RecordBatchToTensor(const RecordBatch& batch, bool null_to_nan, bool row_major,
MemoryPool* pool, std::shared_ptr<Tensor>* tensor) {
if (batch.num_columns() == 0) {
return Status::TypeError(
"Conversion to Tensor for RecordBatches without columns/schema is not "
"supported.");
}
// Check for no validity bitmap of each field
// if null_to_nan conversion is set to false
for (int i = 0; i < batch.num_columns(); ++i) {
if (batch.column(i)->null_count() > 0 && !null_to_nan) {
return Status::TypeError(
"Can only convert a RecordBatch with no nulls. Set null_to_nan to true to "
"convert nulls to NaN");
}
}
// Check for supported data types and merge fields
// to get the resulting uniform data type
if (!is_integer(batch.column(0)->type()->id()) &&
!is_floating(batch.column(0)->type()->id())) {
return Status::TypeError("DataType is not supported: ",
batch.column(0)->type()->ToString());
}
std::shared_ptr<Field> result_field = batch.schema()->field(0);
std::shared_ptr<DataType> result_type = result_field->type();
Field::MergeOptions options;
options.promote_integer_to_float = true;
options.promote_integer_sign = true;
options.promote_numeric_width = true;
if (batch.num_columns() > 1) {
for (int i = 1; i < batch.num_columns(); ++i) {
if (!is_numeric(batch.column(i)->type()->id())) {
return Status::TypeError("DataType is not supported: ",
batch.column(i)->type()->ToString());
}
// Casting of float16 is not supported, throw an error in this case
if ((batch.column(i)->type()->id() == Type::HALF_FLOAT ||
result_field->type()->id() == Type::HALF_FLOAT) &&
batch.column(i)->type()->id() != result_field->type()->id()) {
return Status::NotImplemented("Casting from or to halffloat is not supported.");
}
ARROW_ASSIGN_OR_RAISE(
result_field,
result_field->MergeWith(
batch.schema()->field(i)->WithName(result_field->name()), options));
}
result_type = result_field->type();
}
// Check if result_type is signed or unsigned integer and null_to_nan is set to true
// Then all columns should be promoted to float type
if (is_integer(result_type->id()) && null_to_nan) {
ARROW_ASSIGN_OR_RAISE(
result_field,
result_field->MergeWith(field(result_field->name(), float32()), options));
result_type = result_field->type();
}
// Allocate memory
ARROW_ASSIGN_OR_RAISE(
std::shared_ptr<Buffer> result,
AllocateBuffer(result_type->bit_width() * batch.num_columns() * batch.num_rows(),
pool));
// Copy data
switch (result_type->id()) {
case Type::UINT8:
ConvertColumnsToTensor<UInt8Type>(batch, result->mutable_data(), row_major);
break;
case Type::UINT16:
case Type::HALF_FLOAT:
ConvertColumnsToTensor<UInt16Type>(batch, result->mutable_data(), row_major);
break;
case Type::UINT32:
ConvertColumnsToTensor<UInt32Type>(batch, result->mutable_data(), row_major);
break;
case Type::UINT64:
ConvertColumnsToTensor<UInt64Type>(batch, result->mutable_data(), row_major);
break;
case Type::INT8:
ConvertColumnsToTensor<Int8Type>(batch, result->mutable_data(), row_major);
break;
case Type::INT16:
ConvertColumnsToTensor<Int16Type>(batch, result->mutable_data(), row_major);
break;
case Type::INT32:
ConvertColumnsToTensor<Int32Type>(batch, result->mutable_data(), row_major);
break;
case Type::INT64:
ConvertColumnsToTensor<Int64Type>(batch, result->mutable_data(), row_major);
break;
case Type::FLOAT:
ConvertColumnsToTensor<FloatType>(batch, result->mutable_data(), row_major);
break;
case Type::DOUBLE:
ConvertColumnsToTensor<DoubleType>(batch, result->mutable_data(), row_major);
break;
default:
return Status::TypeError("DataType is not supported: ", result_type->ToString());
}
// Construct Tensor object
const auto& fixed_width_type =
internal::checked_cast<const FixedWidthType&>(*result_type);
std::vector<int64_t> shape = {batch.num_rows(), batch.num_columns()};
std::vector<int64_t> strides;
if (row_major) {
ARROW_RETURN_NOT_OK(
internal::ComputeRowMajorStrides(fixed_width_type, shape, &strides));
} else {
ARROW_RETURN_NOT_OK(
internal::ComputeColumnMajorStrides(fixed_width_type, shape, &strides));
}
ARROW_ASSIGN_OR_RAISE(*tensor,
Tensor::Make(result_type, std::move(result), shape, strides));
return Status::OK();
}
} // namespace internal
/// Constructor with strides and dimension names
Tensor::Tensor(const std::shared_ptr<DataType>& type, const std::shared_ptr<Buffer>& data,
const std::vector<int64_t>& shape, const std::vector<int64_t>& strides,
const std::vector<std::string>& dim_names)
: type_(type), data_(data), shape_(shape), strides_(strides), dim_names_(dim_names) {
ARROW_CHECK(is_tensor_supported(type->id()));
if (shape.size() > 0 && strides.size() == 0) {
ARROW_CHECK_OK(internal::ComputeRowMajorStrides(
checked_cast<const FixedWidthType&>(*type_), shape, &strides_));
}
}
Tensor::Tensor(const std::shared_ptr<DataType>& type, const std::shared_ptr<Buffer>& data,
const std::vector<int64_t>& shape, const std::vector<int64_t>& strides)
: Tensor(type, data, shape, strides, {}) {}
Tensor::Tensor(const std::shared_ptr<DataType>& type, const std::shared_ptr<Buffer>& data,
const std::vector<int64_t>& shape)
: Tensor(type, data, shape, {}, {}) {}
const std::string& Tensor::dim_name(int i) const {
static const std::string kEmpty = "";
if (dim_names_.size() == 0) {
return kEmpty;
} else {
ARROW_CHECK_LT(i, static_cast<int>(dim_names_.size()));
return dim_names_[i];
}
}
int64_t Tensor::size() const {
return std::accumulate(shape_.begin(), shape_.end(), 1LL, std::multiplies<int64_t>());
}
bool Tensor::is_contiguous() const {
return internal::IsTensorStridesContiguous(type_, shape_, strides_);
}
bool Tensor::is_row_major() const {
return IsTensorStridesRowMajor(type_, shape_, strides_);
}
bool Tensor::is_column_major() const {
return IsTensorStridesColumnMajor(type_, shape_, strides_);
}
Type::type Tensor::type_id() const { return type_->id(); }
bool Tensor::Equals(const Tensor& other, const EqualOptions& opts) const {
return TensorEquals(*this, other, opts);
}
namespace {
template <typename TYPE>
int64_t StridedTensorCountNonZero(int dim_index, int64_t offset, const Tensor& tensor) {
using c_type = typename TYPE::c_type;
c_type const zero = c_type(0);
int64_t nnz = 0;
if (dim_index == tensor.ndim() - 1) {
for (int64_t i = 0; i < tensor.shape()[dim_index]; ++i) {
auto const* ptr = tensor.raw_data() + offset + i * tensor.strides()[dim_index];
auto& elem = *reinterpret_cast<c_type const*>(ptr);
if (elem != zero) ++nnz;
}
return nnz;
}
for (int64_t i = 0; i < tensor.shape()[dim_index]; ++i) {
nnz += StridedTensorCountNonZero<TYPE>(dim_index + 1, offset, tensor);
offset += tensor.strides()[dim_index];
}
return nnz;
}
template <typename TYPE>
int64_t ContiguousTensorCountNonZero(const Tensor& tensor) {
using c_type = typename TYPE::c_type;
auto* data = reinterpret_cast<c_type const*>(tensor.raw_data());
return std::count_if(data, data + tensor.size(),
[](c_type const& x) { return x != 0; });
}
template <typename TYPE>
inline int64_t TensorCountNonZero(const Tensor& tensor) {
if (tensor.is_contiguous()) {
return ContiguousTensorCountNonZero<TYPE>(tensor);
} else {
return StridedTensorCountNonZero<TYPE>(0, 0, tensor);
}
}
struct NonZeroCounter {
explicit NonZeroCounter(const Tensor& tensor) : tensor_(tensor) {}
template <typename TYPE>
enable_if_number<TYPE, Status> Visit(const TYPE& type) {
result = TensorCountNonZero<TYPE>(tensor_);
return Status::OK();
}
Status Visit(const DataType& type) {
ARROW_CHECK(!is_tensor_supported(type.id()));
return Status::NotImplemented("Tensor of ", type.ToString(), " is not implemented");
}
const Tensor& tensor_;
int64_t result = 0;
};
} // namespace
Result<int64_t> Tensor::CountNonZero() const {
NonZeroCounter counter(*this);
RETURN_NOT_OK(VisitTypeInline(*type(), &counter));
return counter.result;
}
} // namespace arrow20
|