-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathtensor.h
170 lines (132 loc) · 4.96 KB
/
tensor.h
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
// Copyright 2023 Ant Group Co., Ltd.
//
// Licensed 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.
#pragma once
#include <filesystem>
#include <iostream>
#include <memory>
#include <utility>
#include "arrow/chunked_array.h"
#include "api/core.pb.h"
namespace scql::engine {
class TensorBatchReader;
class DiskTensorBatchReader;
class MemTensorBatchReader;
class DiskTensorSlice;
class MemTensorSlice;
/// @brief A Tensor reprensents a column of a relation
class Tensor {
public:
Tensor(const Tensor&) = delete;
Tensor& operator=(const Tensor&) = delete;
explicit Tensor(pb::PrimitiveDataType dtype) : dtype_(dtype) {}
virtual int64_t Length() const = 0;
// return the total number of nulls
virtual int64_t GetNullCount() const = 0;
/// @returns the data type of tensor element
pb::PrimitiveDataType Type() const { return dtype_; }
virtual std::shared_ptr<arrow::DataType> ArrowType() const = 0;
/// @returns as arrow chunked array
virtual std::shared_ptr<arrow::ChunkedArray> ToArrowChunkedArray() const = 0;
/// @return as tensor batch reader
virtual std::shared_ptr<TensorBatchReader> CreateBatchReader(
size_t batch_size) = 0;
virtual bool IsBucketTensor() = 0;
protected:
pb::PrimitiveDataType dtype_;
};
class MemTensor : public Tensor,
public std::enable_shared_from_this<MemTensor> {
public:
explicit MemTensor(std::shared_ptr<arrow::ChunkedArray> chunked_arr);
int64_t Length() const override { return chunked_arr_->length(); }
// return the total number of nulls
int64_t GetNullCount() const override { return chunked_arr_->null_count(); }
/// @returns as arrow chunked array
std::shared_ptr<arrow::ChunkedArray> ToArrowChunkedArray() const override {
return chunked_arr_;
}
std::shared_ptr<arrow::DataType> ArrowType() const override {
return chunked_arr_->type();
}
std::shared_ptr<TensorBatchReader> CreateBatchReader(
size_t batch_size) override;
// for now, no memory bucket tensor
bool IsBucketTensor() override { return false; }
private:
std::shared_ptr<arrow::ChunkedArray> chunked_arr_;
};
class FileArray {
public:
FileArray(std::filesystem::path file_path, size_t len, size_t null_count)
: file_path_(std::move(file_path)), len_(len), null_count_(null_count) {}
~FileArray() {
std::error_code ec;
std::filesystem::remove(file_path_, ec);
if (ec.value() != 0) {
// avoid throwing fmt exceptions in the destructor
std::cerr << "can not remove tmp dir: " << file_path_.string()
<< ", msg: " << ec.message() << "\n";
}
}
std::filesystem::path GetFilePath() const { return file_path_; }
size_t GetLen() const { return len_; }
size_t GetNullCount() const { return null_count_; }
private:
std::filesystem::path file_path_;
size_t len_;
size_t null_count_;
};
class DiskTensor : public Tensor,
public std::enable_shared_from_this<DiskTensor> {
public:
explicit DiskTensor(std::vector<std::shared_ptr<FileArray>> file_arrays,
scql::pb::PrimitiveDataType dtype,
std::shared_ptr<arrow::DataType> arrow_type);
int64_t Length() const override { return len_; }
// return the total number of nulls
int64_t GetNullCount() const override { return null_count_; }
/// @returns as arrow chunked array
std::shared_ptr<arrow::ChunkedArray> ToArrowChunkedArray() const override;
std::shared_ptr<arrow::DataType> ArrowType() const override {
return arrow_type_;
}
std::shared_ptr<TensorBatchReader> CreateBatchReader(
size_t batch_size) override;
bool IsBucketTensor() override { return is_bucket_tensor_; }
protected:
void SetAsBucketTensor() { is_bucket_tensor_ = true; }
private:
std::shared_ptr<FileArray> GetFileArray(size_t i) const {
return file_arrays_[i];
}
size_t GetFileNum() const { return file_arrays_.size(); }
private:
friend class DiskTensorBatchReader;
friend class DiskTensorSlice;
friend class DiskBucketTensorConstructor;
size_t len_ = 0;
size_t null_count_ = 0;
bool is_bucket_tensor_ = false;
std::vector<std::shared_ptr<FileArray>> file_arrays_;
std::shared_ptr<arrow::DataType> arrow_type_;
};
// TODO(xiaoyuan): move to tensor builder
struct TensorBuildOptions {
bool dump_to_disk;
std::filesystem::path dump_dir;
size_t max_row_num_one_file = std::numeric_limits<int64_t>::max();
};
using TensorPtr = std::shared_ptr<Tensor>;
using RepeatedPbTensor = google::protobuf::RepeatedPtrField<pb::Tensor>;
} // namespace scql::engine