mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-24 09:39:33 +08:00
This implements a set of vectorized math routines to be used by the compiler auto-vectorizer. Versions for vectors with 2 lanes up to 64 lanes (in powers of 2) are provided. These routines are based on the scalar versions of the math routines in libm/common, libm/math and libm/mathfp. They make extensive use of the GCC C vector extensions and GCN-specific builtins in GCC.
19 lines
458 B
C
19 lines
458 B
C
/* Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved.
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software
|
|
* is freely granted, provided that this notice is preserved.
|
|
*/
|
|
|
|
/* Based on newlib/libm/mathfp/s_exp2.c in Newlib. */
|
|
|
|
#include "amdgcnmach.h"
|
|
|
|
v64df v64df_pow_aux (v64df, v64df, v64di);
|
|
|
|
DEF_VD_MATH_FUNC (v64df, exp2, v64df x)
|
|
{
|
|
return v64df_pow_aux (VECTOR_INIT (2.0), x, __mask);
|
|
}
|
|
|
|
DEF_VARIANTS (exp2, df, df)
|