-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaxpool.cpp
66 lines (57 loc) · 1.62 KB
/
maxpool.cpp
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
module maxpool(clk, data, out);
parameter C=16,H=28,W=28;
parameter Z=C*W*H/4;
parameter bit=8;
wire A,B,C; //for max pool
input clk;
output reg[Z*bit-1:0] temp_out;
input [C*W*H*bit-1:0] data;
reg [7:0]temp[0:C-1][0:H-1][0:W-1];
integer w=0,h=0,c=0,k=0,m=0,n=0,bit=8;
always@(posedge clk)
begin
if(w<W)
begin
tem[c][h][w] = data[k+:bit];
w=w+1;
k=k+bit;
end
else
begin
w=0;
if(h<H)
h=h+1;
else
begin
h=0;
if(c<C)
c=c+1;
else
w=0,h=0,c=0,k=0;
end
end
end
begin
if(w<W)
begin
A = temp[c][h][w] >= temp[c][h][w+1] & temp[c][h][w] >= temp[c][h+1][w] & temp[c][h][w] >= temp[c][h+1][w+1];
B = temp[c][h+1][w] >= temp[c][h][w] & temp[c][h+1][w] >= temp[c][h][w+1] & temp[c][h+1][w] >= temp[c][w+1][w+1];
C = temp[c][h][w+1] >= temp[c][h][w] & temp[c][h][w+1] >= temp[c][h+1][w] & temp[c][h][w+1] >= temp[c][h+1][w+1];
out[k+:bit] = (A ? temp[c][h][w] : (B ? temp[c][h+1][w] : (C ? temp[c][h][w+1] : temp[c][h+1][w+1])));
n=n+2;
end
else
begin
n=0;
if(h<H)
h=h+1;
else
begin
if(c<C)
c=c+1;
else
//terminate
end
end
end
endmodule