ContributionsMost RecentMost LikesSolutionsRe: Matrix_mul in FPGA Only warning coming up Hi, Thanks a lot! It worked.. I guess some issue was there inside my Makefile.fpga it is working in Fpga emulator now. What change should I do to work in Fpga hardware? I tried generating run_fpga_hw.sh and build_fpga_hw.sh.. and then tried building. But the warning that I earlier mentioned still persist. So changes should be done in Makefile.fpga ? Re: Matrix_mul in FPGA Only warning coming up Hi, Can you please send the screenshot of matrix_mul_dpcpp.cpp you mentioned as I am not able to see any image. Regards Re: Matrix_mul in FPGA Only warning coming up Tried all these steps Included Makefile.fpga I think Fpga is not getting detected. FPGA_Emulator and FPGA are in red color when .cpp file is edited. So after build and after run nothing is happening No output.. No error.. Is there anything else to do initially before all these steps..? Re: Matrix_mul in FPGA Only warning coming up #!/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.. Re: Matrix_mul in FPGA Only warning coming up It is Devcloud for OneAPI Matrix_mul in FPGA Only warning coming up Trying to run matrix_mul in fpga. Followed same procedure mentioned in Vector add, made build_fpga_hw.sh and run_fpga_hw.sh and then qsub -l nodes=1:fpga_compile:ppn=2 -d . build_fpga_hw.sh qsub -l nodes=1:fpga_runtime:arria10:ppn=2 -d . run_fpga_hw.sh This warning came up.. :: WARNING: setvars.sh has already been run. Skipping re-execution. To force a re-execution of setvars.sh, use the '--force' option. Using '--force' can result in excessive use of your environment variables. usage: source setvars.sh [--force] [--config=file] [--help] [...] --force Force setvars.sh to re-run, doing so may overload environment. --config=file Customize env vars using a setvars.sh configuration file. --help Display this help message and exit. ... Additional args are passed to individual env/vars.sh scripts and should follow this script's arguments. Some POSIX shells do not accept command-line options. In that case, you can pass command-line options via the SETVARS_ARGS environment variable. For example: $ SETVARS_ARGS="ia32 --config=config.txt" ; export SETVARS_ARGS $ . path/to/setvars.sh The SETVARS_ARGS environment variable is cleared on exiting setvars.sh. Can anyone please tell me where i am going wrong and what should be done..? thanks for any help..