I try to implement an FPGA submodule from C through Vivado HLS.
My C function header is as follow:
My_function(int *data_A_in, int *data_B_in, int size_in, int *data_out, int size_out)
Is it possible to make HLS to map my pointers to a memory of the FPGA like a BRAM?
I would like all my submodules to transfer data vectors using that shared BRAM