Skip to content

Commit 2ac3690

Browse files
committed
Remove reference to hardware runs on Windows
1 parent 862170c commit 2ac3690

File tree

59 files changed

+61
-239
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

+61
-239
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
@@ -286,10 +286,7 @@ You can apply the Cholesky decomposition to a number of matrices, as shown below
286286
cholesky.fpga_sim.exe
287287
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
288288
```
289-
3. Run the sample on the FPGA device (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
290-
```
291-
cholesky.fpga.exe
292-
```
289+
> **Note**: Hardware runs are not supported on Windows.
293290
294291
## Example Output
295292

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

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

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: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -255,12 +255,7 @@ Additionally, the `cmake` build system can be configured using the following par
255255
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
256256
```
257257
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-
```
258+
> **Note**: Hardware runs are not supported on Windows.
264259
265260
## Example Output
266261

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 August 30, 2023.
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: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -345,12 +345,7 @@ You can perform the multiplication of the set of matrices repeatedly. This step
345345
matmul.fpga_sim.exe
346346
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
347347
```
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-
```
348+
> **Note**: Hardware runs are not supported on Windows.
354349
355350
## Example Output
356351

0 commit comments

Comments
 (0)