diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2012-02-03 10:40:07 -0700 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2012-02-04 17:54:37 -0700 |
commit | fb0ca3634809c41d39a9cc67cafc30fbfc928300 (patch) | |
tree | aba7d66722c60decd84d67c82e70093a5340c0c0 /numpy | |
parent | 040061d8369f0a1f2f846929dcf5400a2f7ae8cd (diff) | |
download | numpy-fb0ca3634809c41d39a9cc67cafc30fbfc928300.tar.gz |
UPD: Use prefixed macros in numpy/core/src/npymath/*.src files.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/src/npymath/ieee754.c.src | 2 | ||||
-rw-r--r-- | numpy/core/src/npymath/npy_math.c.src | 6 | ||||
-rw-r--r-- | numpy/core/src/npymath/npy_math_complex.c.src | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/numpy/core/src/npymath/ieee754.c.src b/numpy/core/src/npymath/ieee754.c.src index a81cabe5b..8b314d6a1 100644 --- a/numpy/core/src/npymath/ieee754.c.src +++ b/numpy/core/src/npymath/ieee754.c.src @@ -511,7 +511,7 @@ npy_longdouble npy_nextafterl(npy_longdouble x, npy_longdouble y) /**begin repeat * #suff = f,,l# * #SUFF = F,,L# - * #type = float, double, npy_longdouble# + * #type = npy_float, npy_double, npy_longdouble# */ @type@ npy_spacing@suff@(@type@ x) { diff --git a/numpy/core/src/npymath/npy_math.c.src b/numpy/core/src/npymath/npy_math.c.src index 04a09bcba..6f6f2242e 100644 --- a/numpy/core/src/npymath/npy_math.c.src +++ b/numpy/core/src/npymath/npy_math.c.src @@ -315,7 +315,7 @@ double npy_log2(double x) */ /**begin repeat - * #type = npy_longdouble, float# + * #type = npy_longdouble, npy_float# * #TYPE = NPY_LONGDOUBLE, FLOAT# * #c = l,f# * #C = L,F# @@ -376,7 +376,7 @@ double npy_log2(double x) */ /**begin repeat - * #type = npy_longdouble,double,float# + * #type = npy_longdouble, npy_double, npy_float# * #c = l,,f# * #C = L,,F# */ @@ -422,7 +422,7 @@ double npy_log2(double x) */ /**begin repeat - * #type = float, double, npy_longdouble# + * #type = npy_float, npy_double, npy_longdouble# * #c = f, ,l# * #C = F, ,L# */ diff --git a/numpy/core/src/npymath/npy_math_complex.c.src b/numpy/core/src/npymath/npy_math_complex.c.src index 718de5b6c..ee4d09bc5 100644 --- a/numpy/core/src/npymath/npy_math_complex.c.src +++ b/numpy/core/src/npymath/npy_math_complex.c.src @@ -36,7 +36,7 @@ *=========================================================*/ /**begin repeat - * #type = float,double,npy_longdouble# + * #type = npy_float, npydouble, npy_longdouble# * #ctype = npy_cfloat,npy_cdouble,npy_clongdouble# * #c = f, , l# * #C = F, , L# @@ -234,7 +234,7 @@ *=========================================================*/ /**begin repeat - * #type = float, double, npy_longdouble# + * #type = npy_float, npy_double, npy_longdouble# * #ctype = npy_cfloat, npy_cdouble, npy_clongdouble# * #c = f, , l# * #C = F, , L# |