Forum Discussion
adarsh_m
New Contributor
5 years agoIssue in using FPGA nodes on devcloud
hello ,
i keep getting these errors can someone help me out.
Makefile:14: *** Set INTELFPGAOCLSDKROOT to the root directory of the Intel(R) FPGA SDK for OpenCL(TM) software installation. Stop. ...
adarsh_m
New Contributor
5 years agoThanks for responding @BoonBengT_Altera
hello ,
i am submitting Jobs on FPGA nodes available on Devcloud . i am compiling using Makefile and submitting using qsub as shown below part of Makefile and submission steps
Makefile part
______________________________ ______________________________ _____________________
fpga : CXXFLAGS += -DFPGA
fpga : cleanfpga \
$(TARGET_DIR)/$(TARGETHfpga)
aoc -v ${CLFILENAME}.cl -o bin/${CLFILENAME}.aocx
d=$$(date +%s%N)\
; cd $(TARGET_DIR) && ./$(TARGETHfpga) \
&& echo " ______________________$@ Build took $$(($$(($$(date +%s%N)-d))/1000000)) mili seconds____________________"
fpga : cleanfpga \
$(TARGET_DIR)/$(TARGETHfpga)
aoc -v ${CLFILENAME}.cl -o bin/${CLFILENAME}.aocx
d=$$(date +%s%N)\
; cd $(TARGET_DIR) && ./$(TARGETHfpga) \
&& echo " ______________________$@ Build took $$(($$(($$(date +%s%N)-d))/1000000)) mili seconds____________________"
______________________________ ______________________________ _________________________
Submission using :
______________________________ ______________________________ ___________________________
" qsub -l walltime=24:00:00 -l nodes=1:fpga:ppn=2 -d . fpga "