My application is displaying “Unaligned Access” errors when running. What is the problem?
This is actually a warning message and not an error. The program should still be running fine and produce the right results. Unaligned accesses are caused by data that isn’t stored with the proper alignment to memory boundaries. This can cause small delays when loading the data from memory, but it shouldn’t result in a big performance loss unless the loads are located inside a time consuming loop. Proper alignment can be ensured by reordering the declaration of variables in the code and by instructing the compiler to explicitly solve alignment problems (options -align -pad for the Intel Fortran Compiler).
Related Questions
- When displaying my application on an X server running on Windows or Linux, the application fonts look different than the fonts used by the Windows version of my application. Why?
- Is there a known problem for the application running with an ATI video display card?
- Search Engine: If there is a problem, where can I look for errors?