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: docs/advanced/vitis_accelerator.rst
+11-9Lines changed: 11 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -38,12 +38,12 @@ Build workflow
38
38
39
39
At the call of the ``build`` method, the following option affect the build process:
40
40
41
-
* ``reset``: TBD.
42
-
* ``csim``: TBD.
43
-
* ``synth``: TBD.
44
-
* ``cosim``: TBD.
45
-
* ``vsynth``: TBD.
46
-
* ``debug``: TBD.
41
+
* ``reset``: If True, clears files generated during previous build processes (STILL BEING TESTED).
42
+
* ``csim``: If True, builds the project for Vitis' software emulation validation flow (STILL BEING TESTED)
43
+
* ``synth``: If True, runs `make hls`, building object files for the kernel (STILL BEING TESTED)
44
+
* ``cosim``: If True, builds the project for Vitis' hardware emulation validation flow (STILL BEING TESTED)
45
+
* ``vsynth``: If True, runs `make xclbin`, building the .xclbin binary executable for the kernel (STILL BEING TESTED)
46
+
* ``debug``: If True, compiles the c++ host code and the HLS in debug mode (STILL BEING TESTED)
47
47
48
48
Once the project is generated, it possible to run manually the build steps by using one of the following ``make`` targets in the generated project directory:
49
49
@@ -57,7 +57,7 @@ The generated host code application and the xclbin file can be executed as such:
57
57
58
58
.. code-block:: Bash
59
59
60
-
./host <myproject>.xclbin
60
+
./host <build_directory>/<myproject>.xclbin
61
61
62
62
Example
63
63
=======
@@ -75,7 +75,9 @@ The following example is a modified version of `hsl4ml example 7 <https://github
0 commit comments