Forum Discussion
Hi,
Could you please share with us a sample reproducer and the script files for build_fpga_hw.sh and run_fpga_hw.sh
Also, please confirm whether you are taking the sample from the repo: https://github.com/oneapi-src/oneAPI-samples/tree/master/DirectProgramming/DPC%2B%2B/DenseLinearAlgebra.
And note that all the samples given here are not designed for FPGA hardware. You can see under the pre-requisites>hardware section in the README file to know that.
Regards,
Remya Premdas
#!/bin/bash source /opt/intel/inteloneapi/setvars.sh make run_hw -f Makefile.fpga
#!/bin/bash source /opt/intel/inteloneapi/setvars.sh make hw -f Makefile.fpga
These were used..
Yes.. Samples were taken from the mentioned link.. I understand all samples are not for FPGA hardware. So what should be done to run these atleast in Fpga emulator. I tried running with build_fpga_emu.sh and run_fpga_emu.sh as following
#!/bin/bash source /opt/intel/inteloneapi/setvars.sh make fpga_emu -f Makefile.fpga
#!/bin/bash source /opt/intel/inteloneapi/setvars.sh make run_emu -f Makefile.fpga
Still nothing is happening.. I think i am missing something.. I need to know what all should be done for any program to run on Fpga in devcloud..