T
thomsen.anders
Hi all,
I have an algorithm that truncates doubles to ints for several
minutes. I'm trying to make it go faster.
Currently, I'm using
(int)d;
to do it. I reckon that if I can use the fisttp instruction from SSE3
it would speed things up. However, VS.Net 2005/2008 only has support
for SSE2 instructions. I've never done assembly before.
Does anyone know if this is possible?
Happy holidays,
Anders
I have an algorithm that truncates doubles to ints for several
minutes. I'm trying to make it go faster.
Currently, I'm using
(int)d;
to do it. I reckon that if I can use the fisttp instruction from SSE3
it would speed things up. However, VS.Net 2005/2008 only has support
for SSE2 instructions. I've never done assembly before.
Does anyone know if this is possible?
Happy holidays,
Anders