public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: Segher Boessenkool <segher@kernel.crashing.org>
To: Roger Sayle <roger@eyesopen.com>
Cc: gcc@gcc.gnu.org, "Kaveh R. Ghazi" <ghazi@caip.rutgers.edu>
Subject: Re: Question on valid transformations for cbrt
Date: Wed, 10 Mar 2004 15:32:00 -0000	[thread overview]
Message-ID: <0564E1F0-72A8-11D8-98DF-000A95A4DC02@kernel.crashing.org> (raw)
In-Reply-To: <Pine.LNX.4.44.0403070640560.29012-100000@www.eyesopen.com>

> The problem with cbrt, unlike sqrt, is that its is more expressive than
> pow.  i.e. cbrt(-29.7) = -3.1 but pow(-29.7,1.0/3.0) => EDOM.  Hence
> we can't normalize cbrt(x) as pow(x,1.0/3.0),

You can "normalize" cbrt(x) as  sign(x) * pow(abs(x), 1.0/3)  -- maybe 
that
helps some further optimizations?

> but we can safely go the
> other way pow(x,1.0/3.0) => cbrt(x).


Segher

  reply	other threads:[~2004-03-10 15:32 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-03-06 18:54 Kaveh R. Ghazi
2004-03-07 15:11 ` Roger Sayle
2004-03-10 15:32   ` Segher Boessenkool [this message]
2004-03-10 16:06     ` Robert Dewar
2004-04-02  0:22   ` Geoff Keating

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0564E1F0-72A8-11D8-98DF-000A95A4DC02@kernel.crashing.org \
    --to=segher@kernel.crashing.org \
    --cc=gcc@gcc.gnu.org \
    --cc=ghazi@caip.rutgers.edu \
    --cc=roger@eyesopen.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).