Forum Discussion
oneAPI FPGA Compile Node Errors
- 4 years ago
Hi @lkljucaric
I had the same problem which was resolved as follows on advice from Intel.
In the build script add a line at the beginning to ensure that the correct version of Python is used - here is the script I am now using:
#!/bin/bash
export PATH=/glob/intel-python/python2/bin/:${PATH}
source /opt/intel/inteloneapi/setvars.sh > /dev/null 2>&1
make hw -f Makefile.fpgaHope this works for you as well.
Kind regards
Marcus
I am not following an example/user guide. I have been working on a project for the past year or so with the DevCloud using oneAPI and FPGAs. I haven't had any issues compiling until recently. Most of the time, the job submission fails with the errors above. However, on occasion, it does find a node where it compiles successfully. The most recent nodes listed in the .oXXXXXXX files that the job was submitted to which resulted in the errors are:
s001-n057
s001-n061
s001-n066
For reference, my job submission script only contains a "cd" command to the directory where my source files are and the following line for compilation:
"dpcpp -I $INTELFPGAOCLSDKROOT/include/ref -qactypes -fintelfpga -no-fma -fp-model=precise -Xshardware -Xsboard=intel_s10sx_pac:pac_s10 fpgahw.cpp helper.cpp -Xsclock=400MHz -Xsprofile -v -o fpga.hw"
The designs are both software emulated (-DCPU_HOST) and hardware emulated (-DFPGA_EMULATOR) for verification before proceeding to the full compilation steps.