CEatBTU / FGPU

FGPU is a soft GPU-like architecture for FPGAs. It is described in VHDL, fully customizable, and can be programmed using OpenCL.
GNU General Public License v3.0
37 stars 7 forks source link

How to exclude FPU units in the project #3

Closed jason23g closed 5 months ago

jason23g commented 10 months ago

Hello,

I am trying to port the FGPU core in a KC705 plattform and exclude the floating point units (FPU). Could you please help me to figure out ho to exclude FPU ?

Thanks in advance for your time.

munozher commented 5 months ago

Hi, you can simply set FLOAT_IMPLEMENT to '0' in the fgpu_definitions_pkg.vhd.
If you want the FGPU to not have the floating point at all for resources issues, then you need to not include them when re-packing the IP.

jason23g commented 5 months ago

Hello,

Thank you a lot. It worked perfectly.