Skip to content

Commit a97a783

Browse files
authored
Merge pull request #2419 from justin-rosner/development-tissue-anyhow
[FPGA] Remove reference to hardware runs on Windows
2 parents b4deef7 + c217844 commit a97a783

File tree

59 files changed

+86
-312
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+86
-312
lines changed

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/anr/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -286,10 +286,7 @@ The design uses the following generic header files.
286286
anr.fpga_sim.exe
287287
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
288288
```
289-
3. Alternatively, run the sample on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
290-
```
291-
anr.fpga.exe
292-
```
289+
> **Note**: Hardware runs are not supported on Windows.
293290
294291
## Example Output
295292

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/board_test/README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -253,14 +253,7 @@ The tests listed above check the following interfaces in a platform:
253253
```
254254
board_test.exe -test=<test_number>
255255
```
256-
2. Run the sample on the FPGA device.
257-
```
258-
board_test.fpga.exe
259-
```
260-
By default the program runs all tests. To run a specific test, enter the test number as an argument to the `-test` option:
261-
```
262-
board_test.fpga.exe -test=<test_number>
263-
```
256+
> **Note**: Hardware runs are not supported on Windows.
264257
265258
## Example Output
266259
@@ -274,7 +267,6 @@ Command to run board_test using generated binary:
274267
> To run all tests (default): run board_test.fpga
275268
> To run a specific test (see list below); pass the test number as argument to "-test" option:
276269
Linux: ./board_test.fpga -test=<test_number>
277-
Windows: board_test.exe -test=<test_number>
278270
> To see more details on what each test does use -help option
279271
The tests are:
280272
1. Host Speed and Host Read Write Test

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/cholesky/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,7 @@ You can apply the Cholesky decomposition to a number of matrices, as shown below
289289
cholesky.fpga_sim.exe
290290
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
291291
```
292-
3. Run the sample on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
293-
```
294-
cholesky.fpga.exe
295-
```
292+
> **Note**: Hardware runs are not supported on Windows.
296293
297294
## Example Output
298295

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/cholesky_inversion/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -314,10 +314,7 @@ You can apply the Cholesky-based inversion to 8 matrices repeated a number of ti
314314
cholesky_inversion.fpga_sim.exe
315315
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
316316
```
317-
3. Run on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
318-
```
319-
cholesky_inversion.fpga.exe
320-
```
317+
> **Note**: Hardware runs are not supported on Windows.
321318
322319
## Example Output
323320

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/crr/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -288,10 +288,7 @@ This design measures the FPGA performance to determine how many assets can be pr
288288
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
289289
```
290290
291-
3. Run the sample on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
292-
```
293-
crr.fpga.exe <input_file> [-o=<output_file>]
294-
```
291+
> **Note**: Hardware runs are not supported on Windows.
295292
296293
## Example Output
297294

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/db/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -305,10 +305,7 @@ Query 12 showcases the `MergeJoin` database operator. The block diagram of the d
305305
db.fpga_sim.exe --dbroot=../data/sf0.01 --test
306306
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
307307
```
308-
3. Run the sample on an FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
309-
```
310-
db.fpga.exe --dbroot=../data/sf1 --test
311-
```
308+
> **Note**: Hardware runs are not supported on Windows.
312309
313310
## Example Output
314311

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/decompress/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -450,10 +450,7 @@ For `constexpr_math.hpp`, `memory_utils.hpp`, `metaprogramming_utils.hpp`, `tupl
450450
decompress.fpga_sim.exe
451451
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
452452
```
453-
3. Run the sample on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
454-
```
455-
decompress.fpga.exe
456-
```
453+
> **Note**: Hardware runs are not supported on Windows.
457454
458455
## Example Output
459456

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/fft2d/README.md

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -216,51 +216,36 @@ Additionally, the `cmake` build system can be configured using the following par
216216
217217
### On Linux
218218
219-
#### Run on FPGA Emulator
220-
221219
1. Run the sample on the FPGA emulator (the kernel executes on the CPU).
222220
```
223221
./fft2d.fpga_emu
224222
```
225223
226-
#### Run on FPGA Simulator
227-
228-
1. Run the sample on the FPGA simulator.
224+
2. Run the sample on the FPGA simulator.
229225
```
230226
CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=1 ./fft2d.fpga_sim
231227
```
232228
233-
#### Run on FPGA
234-
235-
1. Run the sample on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
229+
3. Run the sample on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
236230
```
237231
./fft2d.fpga
238232
```
239233
240234
### On Windows
241235
242-
#### Run on FPGA Emulator
243-
244236
1. Run the sample on the FPGA emulator (the kernel executes on the CPU).
245237
```
246238
fft2d.fpga_emu.exe
247239
```
248240
249-
#### Run on FPGA Simulator
250-
251-
1. Run the sample on the FPGA simulator.
241+
2. Run the sample on the FPGA simulator.
252242
```
253243
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=1
254244
fft2d.fpga_sim.exe
255245
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
256246
```
257247
258-
#### Run on FPGA
259-
260-
1. Run the sample on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
261-
```
262-
fft2d.fpga.exe
263-
```
248+
> **Note**: Hardware runs are not supported on Windows.
264249
265250
## Example Output
266251

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/gzip/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -299,10 +299,7 @@ Performance results are based on testing as of May 14, 2024.
299299
gzip.fpga_sim.exe ../data/100b.txt -o=<output_file>
300300
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
301301
```
302-
3. Run the sample on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
303-
```
304-
gzip.fpga.exe <input_file> -o=<output_file>
305-
```
302+
> **Note**: Hardware runs are not supported on Windows.
306303
307304
## Example Output
308305

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/matmul/README.md

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -307,50 +307,35 @@ You can perform the multiplication of the set of matrices repeatedly. This step
307307
308308
### On Linux
309309
310-
#### Run on FPGA Emulator
311-
312310
1. Run the sample on the FPGA emulator (the kernel executes on the CPU).
313311
```
314312
./matmul.fpga_emu
315313
```
316314
317-
#### Run on FPGA Simulator
318-
319-
1. Run the sample on the FPGA simulator.
315+
2. Run the sample on the FPGA simulator.
320316
```
321317
CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=1 ./matmul.fpga_sim
322318
```
323319
324-
#### Run on FPGA
325-
326-
1. Run the sample on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
320+
3. Run the sample on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
327321
```
328322
./matmul.fpga
329323
```
330324
331325
### On Windows
332326
333-
#### Run on FPGA Emulator
334-
335327
1. Run the sample on the FPGA emulator (the kernel executes on the CPU).
336328
```
337329
matmul.fpga_emu.exe
338330
```
339331
340-
#### Run on FPGA Simulator
341-
342-
1. Run the sample on the FPGA simulator.
332+
2. Run the sample on the FPGA simulator.
343333
```
344334
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=1
345335
matmul.fpga_sim.exe
346336
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
347337
```
348-
#### Run on FPGA
349-
350-
1. Run the sample on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
351-
```
352-
matmul.fpga.exe
353-
```
338+
> **Note**: Hardware runs are not supported on Windows.
354339
355340
## Example Output
356341

0 commit comments

Comments
 (0)