forked from jefflieu/HLS-Tiny-Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.cpp
82 lines (72 loc) · 2.09 KB
/
example.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
* Copyright 2021 Xilinx, Inc.
*
* 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.
*/
// +--proc-->[ II=2 ]--+
// / \
// in -->[demux II=1] [mux II=1]---> out
// \ /
// +--proc-->[ II=2 ]--+
#include "example.h"
//--------------------------------------------
template <int ID>
void proc(stream<int> &in, stream<int> &out)
{
for (int i = 0; i < 25; i++)
{
#pragma HLS PIPELINE II=2
#pragma HLS LATENCY min=2 max=2
int var;
in.read(var);
out.write(var);
}
}
//--------------------------------------------
void mux(stream<int> (&inter)[2], stream<int> &mux_output)
{
int mux_sel = 0;
for (int i = 0; i < 50; i++)
{
#pragma HLS PIPELINE II=1
int var;
inter[mux_sel].read(var);
mux_output.write(var);
mux_sel = (mux_sel == 0) ? (1) : (0);
}
}
//--------------------------------------------
void demux(stream<int> &in, stream<int> (&inter)[2])
{
int demux_sel = 0;
for (int i = 0; i < 50; i++)
{
#pragma HLS PIPELINE II=1
int var;
in.read(var);
inter[demux_sel].write(var);
demux_sel = (demux_sel == 0) ? 1 : 0;
}
}
void example(stream<int> &in, stream<int> &out)
{
#pragma HLS DATAFLOW
stream<int> inter[2];
stream<int> mux_in[2];
#pragma HLS STREAM variable = inter depth = 16
#pragma HLS STREAM variable = mux_in depth = 16
demux(in, inter);
proc<0>(inter[0], mux_in[0]);
proc<1>(inter[1], mux_in[1]);
mux(mux_in, out);
}