.. index:: double: develop; OmpSs-2@FPGA .. _develop-ompss2atfpga-programs: Develop OmpSs-2\@FPGA programs :::::::::::::::::::::::::::::: Most of the required information to develop an OmpSs-2\@FPGA application should be in the general `OmpSs-2 documentation `_. Note that, there may be some unsupported/not-working OmpSs-2 features and/or syntax when using FPGA tasks. If you have some problem or encounter any bug, do not hesitate to contact us or open an issue. To create an FPGA task you need to add the ``device`` clause in the ``task`` directive. For example: .. code:: c const unsigned int LEN = 8; #pragma oss task device(fpga) out([LEN]dst, val) void memset(char * dst, const char val) { for (unsigned int i=0; i 1). .. code:: c const unsigned int LEN = 8; #pragma oss task device(fpga) out([LEN]dst) num_instances(4) affinity(af) void memset_char(char * dst, const char val, int af) { for (unsigned int i=0; i