-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathtest_batch_stream.h
157 lines (137 loc) · 6.22 KB
/
test_batch_stream.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
// Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
//
// 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.
//
// ╔════════════════════════════════════════════════════════════════════════════════════════╗
// ║──█████████╗───███████╗───████████╗───██╗──────██╗───███████╗───████████╗───████████╗───║
// ║──██╔══════╝──██╔════██╗──██╔════██╗──██║──────██║──██╔════██╗──██╔════██╗──██╔════██╗──║
// ║──████████╗───██║────██║──████████╔╝──██║──█╗──██║──█████████║──████████╔╝──██║────██║──║
// ║──██╔═════╝───██║────██║──██╔════██╗──██║█████╗██║──██╔════██║──██╔════██╗──██║────██║──║
// ║──██║─────────╚███████╔╝──██║────██║──╚████╔████╔╝──██║────██║──██║────██║──████████╔╝──║
// ║──╚═╝──────────╚══════╝───╚═╝────╚═╝───╚═══╝╚═══╝───╚═╝────╚═╝──╚═╝────╚═╝──╚═══════╝───║
// ╚════════════════════════════════════════════════════════════════════════════════════════╝
//
// Authors: Aster JIAN ([email protected])
// Yzx ([email protected])
// Ao LI ([email protected])
// Paul LU ([email protected])
#pragma once
#include <algorithm>
#include <random>
#include <string>
#include <vector>
#include "common/trt_batch_stream.h"
#include "common/trt_calibrator.h"
/**
* \brief 正态分布随机数生成器
*/
class gen_norm {
private:
std::normal_distribution<float> distribution;
std::default_random_engine rand_engine;
public:
explicit gen_norm(float _mean = 0.0, float _std = 1.0) : distribution(_mean, _std) {
std::random_device rd;
rand_engine = std::default_random_engine(rd());
}
float operator()() { return distribution(rand_engine); }
};
/**
* \brief 随机输入float BatchStream
*/
class TestBatchStream : public fwd::IBatchStream {
public:
explicit TestBatchStream(std::vector<int64_t> size) : mSize(size) {
for (auto& s : mSize) {
mData.push_back(std::vector<float>(s));
}
}
bool next() override { return mBatch < mBatchTotal; }
// todo: this function is not thread safe
std::vector<const void*> getBatch() override {
std::vector<const void*> batch;
if (mBatch < mBatchTotal) {
++mBatch;
for (auto& d : mData) {
std::generate(d.begin(), d.end(), gen_norm());
batch.push_back(d.data());
}
return batch;
}
return {{}};
}
int getBatchSize() const override { return 1; }
std::vector<int64_t> bytesPerBatch() const override {
std::vector<int64_t> bytes;
for (auto& val : mSize) bytes.push_back(val * sizeof(float));
return bytes;
}
private:
std::vector<int64_t> mSize;
int mBatch{0};
int mBatchTotal{500};
std::vector<std::vector<float>> mData;
};
/**
* \brief 随机输入Bert BatchStream
*/
class TestBertStream : public fwd::IBatchStream {
public:
TestBertStream(int batch_size, int seq_len, int emb_count)
: mBatchSize(batch_size),
mSeqLen(seq_len),
mSize(batch_size * seq_len),
mEmbCount(emb_count) {
mData.resize(3, std::vector<int>(mSize));
}
bool next() override { return mBatch < mBatchTotal; }
std::vector<const void*> getBatch() override {
if (mBatch < mBatchTotal) {
++mBatch;
std::vector<const void*> batch;
for (int i = 0; i < mSize; i++) mData[0].push_back(rand() % mEmbCount);
batch.push_back(mData[0].data());
for (int i = 0; i < mBatchSize; i++) {
int rand1 = rand() % (mSeqLen - 1) + 1;
for (int j = 0; j < rand1; j++) mData[1][i * mSeqLen + j] = 1;
for (int j = rand1; j < mSeqLen; j++) mData[1][i * mSeqLen + j] = 0;
}
batch.push_back(mData[1].data());
for (int i = 0; i < mSize; i++) {
mData[2][i] = rand() % 2;
}
batch.push_back(mData[2].data());
return batch;
}
return {{}};
}
int getBatchSize() const override { return mBatchSize; }
std::vector<int64_t> bytesPerBatch() const override {
std::vector<int64_t> bytes(3, mSeqLen * sizeof(int));
return bytes;
}
private:
int64_t mSize;
int mBatch{0};
int mBatchTotal{500};
int mEmbCount{0};
int mBatchSize{0};
int mSeqLen{0};
std::vector<std::vector<int>> mData; // input_ids, input_mask, segment_ids
};
/**
* \brief 计算输入尺寸
*/
inline std::string getFilename(const std::string& path, char sep = '/') {
std::string::size_type iPos = path.find_last_of(sep) + 1;
std::string filename = path.substr(iPos, path.length() - iPos);
return filename;
}