Forum Discussion
Hi,
I found that you might be not using the correct node.
I had check the information as below:
For node s001- n081 to n92
properties = fpga_runtime,xeon,gold6128,skl,ram192gb,net1gbe,fpga,arria10
For node s001-n145 to n156
properties = fpga_compile,xeon,plat8153,skl,ram384gb,net1gbe
It shows that s001-n145 to 156 only for fpga compile, while s001-n81 to n092 have fpga hardware which is shown in properties.
I had the run the hardware compilation with steps below, it is successfully to compile in hardware.
Could you try the steps below?
- ssh decloud
- git clone https://github.com/intel/BaseKit-code-samples.git
- qsub -I -l nodes=1:fpga:ppn=2 -d .
- cd BaseKit-code-samples/DPC++Compiler/vector-add/
- vi build_fpga_hw.sh
#!/bin/bash
source /opt/intel/inteloneapi/setvars.sh
make hw -f Makefile.fpga
6. vi run_fpga_hw.sh
#!/bin/bash
source /opt/intel/inteloneapi/setvars.sh
make run_hw -f Makefile.fpga
7. qsub -I -l nodes=1:fpga:ppn=2 -d . build_fpga_hw.sh
8. qsub -I -l nodes=1:fpga:ppn=2 -d . run_fpga_hw.sh
Thanks