-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEncoder.h
43 lines (35 loc) · 1.03 KB
/
Encoder.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
#ifndef ENCODER_H
#define ENCODER_H
#include <vector>
#include <memory>
#include <thread>
#include <chrono>
#include <cstring>
using namespace std;
enum class MatrixType {
RID,
TWO_TONE,
SYSTEMATIC_RID, // 新增
SYSTEMATIC_TWOTONE, // 新增
CUSTOMIZE
};
class Encoder {
public:
// 构造函数
Encoder(const vector<vector<uint8_t>>& message, int n, MatrixType matrixType);
Encoder(const vector<vector<uint8_t>>& message, const vector<vector<int>>& generatorMatrix);
// 编码函数
vector<vector<uint8_t>> encode();
// 性能测试函数
double benchmarkEncode(int iterations);
private:
vector<vector<uint8_t>> messages;
vector<vector<int>> generatorMatrix;
int n, k, L;
MatrixType matrixType;
// 优化后的移位函数
static void fastShiftXOR(uint8_t* dest, const uint8_t* src, int shift, int length);
// 并行编码工作函数
void encodeWorker(int startRow, int endRow, vector<vector<uint8_t>>& encodedMessage, const vector<int>& t_star);
};
#endif