You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DirectProgramming/DPC++FPGA/include/README.md
+11-4Lines changed: 11 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,22 @@
2
2
This directory contains utility header libraries optimized for FPGA DPC++ designs. Examples of their usage can be found in ReferenceDesigns and Tutorials.
3
3
4
4
## Available Header Libraries
5
+
6
+
### Utilities
7
+
5
8
| Filename | Description
6
9
--- |---
7
-
| pipe_utils.hpp | Defines utilities for working with pipes, such as PipeArray.
8
10
| constexpr_math.hpp | Defines utilities for statically computing math functions such as Log2.
11
+
| pipe_utils.hpp | Utility classes for working with pipes, such as PipeArray.
9
12
| tuple.hpp | Defines a template to implement tuples.
10
13
| unrolled_loop.hpp | Defines a templated implementation of unrolled loops.
11
-
| streaming_qrd.hpp | Defines a functor that implements the QR decomposition of matrices.
12
-
| streaming_qri.hpp | Defines a functor that implements the QR-based inversion of matrices.
13
-
| utils.hpp | Defines commonly used classes.
14
+
15
+
### Linear algebra
16
+
17
+
| Filename | Description
18
+
--- |---
19
+
| streaming_qrd.hpp | QR decomposition of matrices with pipe interfaces.
20
+
| streaming_qri.hpp | QR-based inversion of matrices with pipe interfaces.
14
21
15
22
## License
16
23
Code samples are licensed under the MIT license. See
0 commit comments