This repository has been archived by the owner on Oct 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathadd12u_0FQ.c
80 lines (79 loc) · 2.46 KB
/
add12u_0FQ.c
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
/***
* This code is a part of EvoApproxLib library (ehw.fit.vutbr.cz/approxlib) distributed under The MIT License.
* When used, please cite the following article(s): PRABAKARAN B. S., MRAZEK V., VASICEK Z., SEKANINA L., SHAFIQUE M. ApproxFPGAs: Embracing ASIC-based Approximate Arithmetic Components for FPGA-Based Systems. DAC 2020.
***/
// MAE% = 1.63 %
// MAE = 134
// WCE% = 4.26 %
// WCE = 349
// WCRE% = 800.00 %
// EP% = 99.82 %
// MRE% = 4.51 %
// MSE = 24520
// FPGA_POWER = 0.3
// FPGA_DELAY = 6.7
// FPGA_LUT = 3.0
#include <stdint.h>
#include <stdlib.h>
uint64_t add12u_0FQ(uint64_t a, uint64_t b) {
int wa[12];
int wb[12];
uint64_t y = 0;
wa[0] = (a >> 0) & 0x01;
wb[0] = (b >> 0) & 0x01;
wa[1] = (a >> 1) & 0x01;
wb[1] = (b >> 1) & 0x01;
wa[2] = (a >> 2) & 0x01;
wb[2] = (b >> 2) & 0x01;
wa[3] = (a >> 3) & 0x01;
wb[3] = (b >> 3) & 0x01;
wa[4] = (a >> 4) & 0x01;
wb[4] = (b >> 4) & 0x01;
wa[5] = (a >> 5) & 0x01;
wb[5] = (b >> 5) & 0x01;
wa[6] = (a >> 6) & 0x01;
wb[6] = (b >> 6) & 0x01;
wa[7] = (a >> 7) & 0x01;
wb[7] = (b >> 7) & 0x01;
wa[8] = (a >> 8) & 0x01;
wb[8] = (b >> 8) & 0x01;
wa[9] = (a >> 9) & 0x01;
wb[9] = (b >> 9) & 0x01;
wa[10] = (a >> 10) & 0x01;
wb[10] = (b >> 10) & 0x01;
wa[11] = (a >> 11) & 0x01;
wb[11] = (b >> 11) & 0x01;
int sig_30 = ~((int)0);
int sig_43 = 0;
int sig_52 = ~((int)0);
int sig_57 = wb[4];
int sig_66 = wa[9] ^ wb[9];
int sig_67 = wa[9] & wb[9];
int sig_68 = sig_66 & wa[8];
int sig_69 = sig_66 ^ wa[8];
int sig_70 = sig_67 | sig_68;
int sig_71 = wa[10] ^ wb[10];
int sig_72 = wa[10] & wb[10];
int sig_73 = sig_71 & sig_70;
int sig_74 = sig_71 ^ sig_70;
int sig_75 = sig_72 | sig_73;
int sig_76 = wa[11] ^ wb[11];
int sig_77 = wa[11] & wb[11];
int sig_78 = sig_76 & sig_75;
int sig_79 = sig_76 ^ sig_75;
int sig_80 = sig_77 | sig_78;
y |= (sig_52 & 0x01) << 0; // default output
y |= (sig_79 & 0x01) << 1; // default output
y |= (wa[8] & 0x01) << 2; // default output
y |= (sig_30 & 0x01) << 3; // default output
y |= (sig_57 & 0x01) << 4; // default output
y |= (wb[3] & 0x01) << 5; // default output
y |= (sig_43 & 0x01) << 6; // default output
y |= (wa[7] & 0x01) << 7; // default output
y |= (wb[8] & 0x01) << 8; // default output
y |= (sig_69 & 0x01) << 9; // default output
y |= (sig_74 & 0x01) << 10; // default output
y |= (sig_79 & 0x01) << 11; // default output
y |= (sig_80 & 0x01) << 12; // default output
return y;
}