Skip to content

Commit ebc21b2

Browse files
authored
Update README.md
1 parent d06917f commit ebc21b2

File tree

1 file changed

+8
-16
lines changed
  • DirectProgramming/C++SYCL/DenseLinearAlgebra/vector-add

1 file changed

+8
-16
lines changed

DirectProgramming/C++SYCL/DenseLinearAlgebra/vector-add/README.md

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -269,28 +269,24 @@ The source files (`vector-add-buffers.cpp` and `vector-add-usm.cpp`) specify the
269269
270270
#### Run for CPU and GPU
271271
272-
1. Change to the output directory.
273-
274-
2. Run the program for Unified Shared Memory (USM) and buffers.
272+
1. Run the program for Unified Shared Memory (USM) and buffers.
275273
```
276274
./vector-add-buffers
277275
./vector-add-usm
278276
```
279277
#### Run for FPGA
280278
281-
1. Change to the output directory.
282-
283-
2. Run for FPGA emulation.
279+
1. Run for FPGA emulation.
284280
```
285281
./vector-add-buffers.fpga_emu
286282
./vector-add-usm.fpga_emu
287283
```
288-
3. Run on FPGA simulator.
284+
2. Run on FPGA simulator.
289285
```
290286
CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=1 ./vector-add-buffers.fpga_sim
291287
CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=1 ./vector-add-usm.fpga_sim
292288
```
293-
4. Run on FPGA hardware (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
289+
3. Run on FPGA hardware (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
294290
```
295291
./vector-add-buffers.fpga
296292
./vector-add-usm.fpga
@@ -300,31 +296,27 @@ The source files (`vector-add-buffers.cpp` and `vector-add-usm.cpp`) specify the
300296
301297
#### Run for CPU and GPU
302298
303-
1. Change to the output directory.
304-
305-
2. Run the program for Unified Shared Memory (USM) and buffers.
299+
1. Run the program for Unified Shared Memory (USM) and buffers.
306300
```
307301
vector-add-usm.exe
308302
vector-add-buffers.exe
309303
```
310304
311305
#### Run for FPGA
312306
313-
1. Change to the output directory.
314-
315-
2. Run for FPGA emulation.
307+
1. Run for FPGA emulation.
316308
```
317309
vector-add-buffers.fpga_emu.exe
318310
vector-add-usm.fpga_emu.exe
319311
```
320-
3. Run on FPGA simulator.
312+
2. Run on FPGA simulator.
321313
```
322314
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=1
323315
vector-add-buffers.fpga_sim.exe
324316
vector-add-usm.fpga_sim.exe
325317
set CL_CONTEXT_MPSIM_DEVICE_INTELFPGA=
326318
```
327-
4. Run on FPGA hardware (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
319+
3. Run on FPGA hardware (only if you ran `cmake` with `-DFPGA_DEVICE=<board-support-package>:<board-variant>`).
328320
```
329321
vector-add-buffers.fpga.exe
330322
vector-add-usm.fpga.exe

0 commit comments

Comments
 (0)