Skip to content

Commit add6c88

Browse files
committed
Updated READMEs.
1 parent d608a0e commit add6c88

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The TKEEP and TSTRB signals must be *always* set to HIGH, as indicated in the [A
4646

4747
Note: for using external DMAs, we need the TLAST, TKEEP and TSTRB signals. In particular, TKEEP and TSTRB must be all set (i.e. all ones) in order to signal data packets.
4848

49-
#### AxiStreamInterface Class
49+
### AxiStreamInterface Class
5050

5151
This repository contains a wrapper class for kernel arguments of type `hls::stream` named `AxiStreamInterface`. The class is implemented following a _Policy-based_ C++ paradigm, meaning that it accepts either a `AxiStreamPort` or `AxiStreamFifo` as possible policies (in practice, a template argument).
5252

@@ -71,12 +71,11 @@ void HlsVectorKernelU(hls::stream<ap_axiu<kAxiBitwidth, 0, 0, 0> >& x_port,
7171
```
7272
The type `ap_axiu` must now be used to generate AXIS with side channels.
7373
74-
## hls::vector Arrays on AXI-Lite Interfaces
74+
### hls::vector Arrays on AXI-Lite Interfaces
7575
7676
In Vitis 2021.1 it **not** allowed to have `hls::vector` type arguments mapped to AXI-Lite interfaces.
7777
Instead, use a bare arrays, *e.g.* `const int x[N]` instead of `const hls::vector<int, N> x`.
7878
79-
8079
### Partitioning hls::vector Arrays
8180
8281
A standard way of partitioning an array is:

0 commit comments

Comments
 (0)