Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)
16596 Discussions

How to force use of registers for local variable?

Altera_Forum
Honored Contributor II
1,118 Views

Hi,  

 

I have a local array which is currently stored in RAM. It's 216 bytes in size (i.e. larger than 64 bytes). The operations on the data stored in this array are very simple and I would like to force the compiler to implement it in registers rather than RAM to see if this gives me a speedup. 

 

How can I do this? Is there an attribute to use when I declare a local variable? 

 

Thanks, 

Hanno
0 Kudos
2 Replies
Altera_Forum
Honored Contributor II
388 Views

From "Intel FPGA SDK for OpenCL Programming Guide, Section 11.2": 

 

int __attribute__((register)) a;
0 Kudos
Altera_Forum
Honored Contributor II
388 Views

Thank you. I suspected it's that easy but just could not find it.

0 Kudos
Reply