Re: [eigen] sse asin implementation |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] sse asin implementation
- From: Benoit Jacob <jacob.benoit.1@xxxxxxxxx>
- Date: Tue, 7 Apr 2009 15:55:51 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=jwVDZGxlWRp+TSMn8WEGXk+jGtT2ohZ8e9ZBPyo0K6k=; b=ZxsLCwX9Y+Po7OIRYDl868KRI8w9N/jJ5+7vmUkPDB55XJo9YFeh2ZZ4rCjOSL52Of 0RgIRZtuSfjTFfJDhj7nzp1lwWcnbI9jqhmxAty3mGs/PIabFs6nNV0/3cgxG+Tu2xhc h3aCRx56vBq/4E0a7Wh5JP54d6Mt58g4tjqfg=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=BWcRlcGWEkuIswmz/WSOnbPnCcWY4Tshj332C0BwdnXDYgsubOJy2Wk61qOrJ1WBHW OO8mXmKlyeRxmDrUNkytB5/3HQh6jdvGZzpwY7bxvNwy0r8MMUIyf8xNDpvp5JmHdGyv YvWKmeMa5Un5xGzhz9PoGNSxhHswLNDHKR/PQ=
2009/4/7 Rohit Garg <rpg.314@xxxxxxxxx>:
> Hang on, I thought otherwise. And Gael pointed out that the sqrt_ps
> was exact according to IEEE spec, what about add,sub,mul,div?
Ah ok, i got that one wrong. A quick google search suggests that SSE
is IEEE compliant indeed. What remains true is that SSE is less
precise than non-SSE code for double's because in non-SSE the CPU is
able to use long double's of 80 bit internally to limit propagation of
errors, but I don't know if anything like that applies for floats
(since here we're discussing floats).
I told you i'm not competent ;)
Benoit