How can I get XE2 style rounding in the previous Delphi versions, so with SSE ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Inline Delphi assembly supports SSE instructions since a while. two overloaded versions are possible: for single and double. In addition two versions are possible: input as Parameter or as pointer. This version is particularly faster than the native Round()/Trunc() methods. To round you have:
To truncate you have the same with CVTTSS2SI / CVTTSD2SI:
To Floor, Ceil, use respectively *TruncMEM_SSE(value)* and RoundSSE(value + 0.5). These functions will give you a 20% perf gain. It has been tested in loops and in a real program (with a memory cache filled/ an instruction cache filled, so it can be considered as a real-life test). |
|||||||||||||||
|