Skip to content

Commit 7b3d7f3

Browse files
committed
Added Acceleration Stack version to README.md.
1 parent 37a06f4 commit 7b3d7f3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
An open source tool that can automatically generate logic circuits from a user-friendly configuration file for efficiently solving systems of ODEs on FPGAs.
66

77
## Supported FPGAs
8-
Currently, only the *[Intel Programmable Acceleration Card with Intel Arria 10 GX 1150 FPGA](https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/hb/arria-10/a10_handbook.pdf)* is supported.
8+
Currently, only the *[Intel Programmable Acceleration Card with Intel Arria 10 GX 1150 FPGA](https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/hb/arria-10/a10_handbook.pdf)*
9+
using the *Intel Acceleration Stack 1.2.1* is supported.
910
If you don't have the required hardware, you can still simulate the logic generated by rtlode (see [Simulation](#simulation)).
1011

1112
## Installation
@@ -30,16 +31,16 @@ If you want only to simulate the generated logic you can skip step 1, 2 and 3.
3031

3132
2. Create a solver unit with given configuration files:
3233
```bash
33-
rtlode build heun.yaml predator-prey.yaml
34+
rtlode.py build heun.yaml predator-prey.yaml
3435
```
3536

3637
3. To test your solver you can execute the following command:
3738
```bash
38-
rtlode run heun_predator-prey.slv --runtime_config='{x: 0, y: [0, 2], n: 60, h: 0.17}'
39+
rtlode.py run heun_predator-prey.slv --runtime_config='{x: 0, y: [0, 2], n: 60, h: 0.17}'
3940
```
4041
Alternativly a simple benchmark can be performed:
4142
```bash
42-
rtlode benchmark heun_predator-prey.slv --runtime_config='{x: 0, y: [0, 2], n: 60, h: 0.17}'
43+
rtlode.py benchmark heun_predator-prey.slv --runtime_config='{x: 0, y: [0, 2], n: 60, h: 0.17}'
4344
```
4445

4546
## Simulation

0 commit comments

Comments
 (0)