summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--numpy/core/SConscript4
-rw-r--r--numpy/core/setup.py9
-rw-r--r--numpy/core/src/npy_format.c282
-rw-r--r--numpy/core/src/scalartypes.inc.src106
4 files changed, 391 insertions, 10 deletions
diff --git a/numpy/core/SConscript b/numpy/core/SConscript
index 70d56c902..b611c04c9 100644
--- a/numpy/core/SConscript
+++ b/numpy/core/SConscript
@@ -211,6 +211,10 @@ if sys.platform=='win32' or os.name=='nt':
config.Define('DISTUTILS_USE_SDK', distutils_use_sdk,
"define to 1 to disable SMP support ")
+ if a == "Intel":
+ config.Define('FORCE_NO_LONG_DOUBLE_FORMATTING', 1,
+ "define to 1 to force long double format string to the" \
+ " same as double (Lg -> g)")
#--------------
# Checking Blas
#--------------
diff --git a/numpy/core/setup.py b/numpy/core/setup.py
index dbae644cd..02814c43a 100644
--- a/numpy/core/setup.py
+++ b/numpy/core/setup.py
@@ -187,6 +187,14 @@ def configuration(parent_package='',top_path=None):
headers=['stdlib.h']):
moredefs.append(('PyOS_ascii_strtod', 'strtod'))
+ if sys.platform == "win32":
+ from numpy.distutils.misc_util import get_build_architecture
+ # On win32, force long double format string to be 'g', not
+ # 'Lg', since the MS runtime does not support long double whose
+ # size is > sizeof(double)
+ if get_build_architecture()=="Intel":
+ moredefs.append('FORCE_NO_LONG_DOUBLE_FORMATTING')
+
target_f = open(target,'a')
for d in moredefs:
if isinstance(d,str):
@@ -330,6 +338,7 @@ def configuration(parent_package='',top_path=None):
deps = [join('src','arrayobject.c'),
join('src','arraymethods.c'),
join('src','scalartypes.inc.src'),
+ join('src','npy_format.c'),
join('src','arraytypes.inc.src'),
join('src','_signbit.c'),
join('src','ucsnarrow.c'),
diff --git a/numpy/core/src/npy_format.c b/numpy/core/src/npy_format.c
new file mode 100644
index 000000000..606fbfeb5
--- /dev/null
+++ b/numpy/core/src/npy_format.c
@@ -0,0 +1,282 @@
+#include <locale.h>
+
+/* From the C99 standard, section 7.19.6:
+The exponent always contains at least two digits, and only as many more digits
+as necessary to represent the exponent.
+*/
+/* We force 3 digits on windows for python < 2.6 for compatibility reason */
+#ifdef MS_WIN32 && PY_VERSION_HEX < 0x02060000
+#define MIN_EXPONENT_DIGITS 3
+#else
+#define MIN_EXPONENT_DIGITS 2
+#endif
+
+/* Ensure that any exponent, if present, is at least MIN_EXPONENT_DIGITS
+ in length. */
+static void ensure_minumim_exponent_length(char* buffer, size_t buf_size)
+{
+ char *p = strpbrk(buffer, "eE");
+ if (p && (*(p + 1) == '-' || *(p + 1) == '+')) {
+ char *start = p + 2;
+ int exponent_digit_cnt = 0;
+ int leading_zero_cnt = 0;
+ int in_leading_zeros = 1;
+ int significant_digit_cnt;
+
+ /* Skip over the exponent and the sign. */
+ p += 2;
+
+ /* Find the end of the exponent, keeping track of leading
+ zeros. */
+ while (*p && isdigit(Py_CHARMASK(*p))) {
+ if (in_leading_zeros && *p == '0')
+ ++leading_zero_cnt;
+ if (*p != '0')
+ in_leading_zeros = 0;
+ ++p;
+ ++exponent_digit_cnt;
+ }
+
+ significant_digit_cnt = exponent_digit_cnt - leading_zero_cnt;
+ if (exponent_digit_cnt == MIN_EXPONENT_DIGITS) {
+ /* If there are 2 exactly digits, we're done,
+ regardless of what they contain */
+ }
+ else if (exponent_digit_cnt > MIN_EXPONENT_DIGITS) {
+ int extra_zeros_cnt;
+
+ /* There are more than 2 digits in the exponent. See
+ if we can delete some of the leading zeros */
+ if (significant_digit_cnt < MIN_EXPONENT_DIGITS)
+ significant_digit_cnt = MIN_EXPONENT_DIGITS;
+ extra_zeros_cnt = exponent_digit_cnt -
+ significant_digit_cnt;
+
+ /* Delete extra_zeros_cnt worth of characters from the
+ front of the exponent */
+ assert(extra_zeros_cnt >= 0);
+
+ /* Add one to significant_digit_cnt to copy the
+ trailing 0 byte, thus setting the length */
+ memmove(start,
+ start + extra_zeros_cnt,
+ significant_digit_cnt + 1);
+ }
+ else {
+ /* If there are fewer than 2 digits, add zeros
+ until there are 2, if there's enough room */
+ int zeros = MIN_EXPONENT_DIGITS - exponent_digit_cnt;
+ if (start + zeros + exponent_digit_cnt + 1
+ < buffer + buf_size) {
+ memmove(start + zeros, start,
+ exponent_digit_cnt + 1);
+ memset(start, '0', zeros);
+ }
+ }
+ }
+}
+
+/* Ensure that buffer has a decimal point in it. The decimal point
+ will not be in the current locale, it will always be '.' */
+void ensure_decimal_point(char* buffer, size_t buf_size)
+{
+ int insert_count = 0;
+ char* chars_to_insert;
+
+ /* search for the first non-digit character */
+ char *p = buffer;
+ if (*p == '-' || *p == '+')
+ /* Skip leading sign, if present. I think this could only
+ ever be '-', but it can't hurt to check for both. */
+ ++p;
+ while (*p && isdigit(Py_CHARMASK(*p)))
+ ++p;
+
+ if (*p == '.') {
+ if (isdigit(Py_CHARMASK(*(p+1)))) {
+ /* Nothing to do, we already have a decimal
+ point and a digit after it */
+ }
+ else {
+ /* We have a decimal point, but no following
+ digit. Insert a zero after the decimal. */
+ ++p;
+ chars_to_insert = "0";
+ insert_count = 1;
+ }
+ }
+ else {
+ chars_to_insert = ".0";
+ insert_count = 2;
+ }
+ if (insert_count) {
+ size_t buf_len = strlen(buffer);
+ if (buf_len + insert_count + 1 >= buf_size) {
+ /* If there is not enough room in the buffer
+ for the additional text, just skip it. It's
+ not worth generating an error over. */
+ }
+ else {
+ memmove(p + insert_count, p,
+ buffer + strlen(buffer) - p + 1);
+ memcpy(p, chars_to_insert, insert_count);
+ }
+ }
+}
+
+/* see FORMATBUFLEN in unicodeobject.c */
+#define FLOAT_FORMATBUFLEN 120
+
+/* Given a string that may have a decimal point in the current
+ locale, change it back to a dot. Since the string cannot get
+ longer, no need for a maximum buffer size parameter. */
+static void change_decimal_from_locale_to_dot(char* buffer)
+{
+ struct lconv *locale_data = localeconv();
+ const char *decimal_point = locale_data->decimal_point;
+
+ if (decimal_point[0] != '.' || decimal_point[1] != 0) {
+ size_t decimal_point_len = strlen(decimal_point);
+
+ if (*buffer == '+' || *buffer == '-')
+ buffer++;
+ while (isdigit(Py_CHARMASK(*buffer)))
+ buffer++;
+ if (strncmp(buffer, decimal_point, decimal_point_len) == 0) {
+ *buffer = '.';
+ buffer++;
+ if (decimal_point_len > 1) {
+ /* buffer needs to get smaller */
+ size_t rest_len = strlen(buffer +
+ (decimal_point_len - 1));
+ memmove(buffer,
+ buffer + (decimal_point_len - 1),
+ rest_len);
+ buffer[rest_len] = 0;
+ }
+ }
+ }
+}
+
+/*
+ * Check that the format string is a valid one for NumPyOS_ascii_format*
+ */
+static int _check_ascii_format(const char *format)
+{
+ char format_char;
+ size_t format_len = strlen(format);
+
+ /* The last character in the format string must be the format char */
+ format_char = format[format_len - 1];
+
+ if (format[0] != '%') {
+ return -1;
+ }
+
+ /* I'm not sure why this test is here. It's ensuring that the format
+ string after the first character doesn't have a single quote, a
+ lowercase l, or a percent. This is the reverse of the commented-out
+ test about 10 lines ago. */
+ if (strpbrk(format + 1, "'l%")) {
+ return -1;
+ }
+
+ /* Also curious about this function is that it accepts format strings
+ like "%xg", which are invalid for floats. In general, the
+ interface to this function is not very good, but changing it is
+ difficult because it's a public API. */
+
+ if (!(format_char == 'e' || format_char == 'E' ||
+ format_char == 'f' || format_char == 'F' ||
+ format_char == 'g' || format_char == 'G')) {
+ return -1;
+ }
+
+ return 0;
+}
+
+/*
+ * Fix the generated string: make sure the decimal is ., that exponent has a
+ * minimal number of digits, and that it has a decimal + one digit after that
+ * decimal if decimal argument != 0 (Same effect that 'Z' format in
+ * PyOS_ascii_formatd
+ */
+static char* _fix_ascii_format(char* buf, size_t buflen, int decimal)
+{
+ /* Get the current locale, and find the decimal point string.
+ Convert that string back to a dot. */
+ change_decimal_from_locale_to_dot(buf);
+
+ /* If an exponent exists, ensure that the exponent is at least
+ MIN_EXPONENT_DIGITS digits, providing the buffer is large enough
+ for the extra zeros. Also, if there are more than
+ MIN_EXPONENT_DIGITS, remove as many zeros as possible until we get
+ back to MIN_EXPONENT_DIGITS */
+ ensure_minumim_exponent_length(buf, buflen);
+
+ if (decimal != 0) {
+ ensure_decimal_point(buf, buflen);
+ }
+
+ return buf;
+}
+
+/*
+ * NumPyOS_ascii_format*:
+ * - buffer: A buffer to place the resulting string in
+ * - buf_size: The length of the buffer.
+ * - format: The printf()-style format to use for the code to use for
+ * converting.
+ * - value: The value to convert
+ * - decimal: if != 0, always has a decimal, and at leasat one digit after
+ * the decimal. This has the same effect as passing 'Z' in the origianl
+ * PyOS_ascii_formatd
+ *
+ * This is similar to PyOS_ascii_formatd in python > 2.6, except that it does
+ * not handle 'n', and handles nan / inf.
+ *
+ * Converts a #gdouble to a string, using the '.' as decimal point. To format
+ * the number you pass in a printf()-style format string. Allowed conversion
+ * specifiers are 'e', 'E', 'f', 'F', 'g', 'G'.
+ *
+ * Return value: The pointer to the buffer with the converted string.
+ */
+#define _ASCII_FORMAT(type, suffix, print_type) \
+char* NumPyOS_ascii_format ## suffix(char *buffer, size_t buf_size, \
+ const char *format, \
+ type val, int decimal) \
+{\
+ if (isfinite(val)) { \
+ if(_check_ascii_format(format)) {\
+ return NULL; \
+ } \
+ PyOS_snprintf(buffer, buf_size, format, (print_type)val); \
+ return _fix_ascii_format(buffer, buf_size, decimal);\
+ } else if (isnan(val)){ \
+ if (buf_size < 4) { \
+ return NULL; \
+ } \
+ strncpy(buffer, "nan", 4); \
+ } else { \
+ if (signbit(val)) { \
+ if (buf_size < 5) { \
+ return NULL; \
+ } \
+ strncpy(buffer, "-inf", 5); \
+ } else { \
+ if (buf_size < 4) { \
+ return NULL; \
+ } \
+ strncpy(buffer, "inf", 4); \
+ } \
+ } \
+ return buffer; \
+}
+
+_ASCII_FORMAT(float, f, float)
+_ASCII_FORMAT(double, d, double)
+#ifndef FORCE_NO_LONG_DOUBLE_FORMATTING
+_ASCII_FORMAT(long double, l, long double)
+#else
+_ASCII_FORMAT(long double, l, double)
+#endif
diff --git a/numpy/core/src/scalartypes.inc.src b/numpy/core/src/scalartypes.inc.src
index b65f7adbc..d071943c1 100644
--- a/numpy/core/src/scalartypes.inc.src
+++ b/numpy/core/src/scalartypes.inc.src
@@ -5,6 +5,9 @@
#endif
#include "numpy/arrayscalars.h"
+#include "config.h"
+#include "npy_format.c"
+
static PyBoolScalarObject _PyArrayScalar_BoolValues[2] = {
{PyObject_HEAD_INIT(&PyBoolArrType_Type) 0},
{PyObject_HEAD_INIT(&PyBoolArrType_Type) 1},
@@ -604,23 +607,36 @@ gentype_repr(PyObject *self)
return ret;
}
+#ifdef FORCE_NO_LONG_DOUBLE_FORMATTING
+#undef NPY_LONGDOUBLE_FMT
+#define NPY_LONGDOUBLE_FMT NPY_DOUBLE_FMT
+#endif
+
/**begin repeat
* #name=float, double, longdouble#
* #NAME=FLOAT, DOUBLE, LONGDOUBLE#
+ * #type=f, d, l#
*/
-#define FMT "%.*" NPY_@NAME@_FMT
-#define CFMT1 "%.*" NPY_@NAME@_FMT "j"
-#define CFMT2 "(%.*" NPY_@NAME@_FMT "%+.*" NPY_@NAME@_FMT "j)"
+#define _FMT1 "%%.%i" NPY_@NAME@_FMT
+#define _FMT2 "%%+.%i" NPY_@NAME@_FMT
static void
format_@name@(char *buf, size_t buflen, @name@ val, unsigned int prec)
{
- int cnt, i;
+ /* XXX: Find a correct size here for format string */
+ char format[64], *res;
+ int i, cnt;
- cnt = PyOS_snprintf(buf, buflen, FMT, prec, val);
+ PyOS_snprintf(format, sizeof(format), _FMT1, prec);
+ res = NumPyOS_ascii_format@type@(buf, buflen, format, val, 0);
+ if (res == NULL) {
+ fprintf(stderr, "Error while formatting\n");
+ return;
+ }
/* If nothing but digits after sign, append ".0" */
+ cnt = strlen(buf);
for (i = (val < 0) ? 1 : 0; i < cnt; ++i) {
if (!isdigit(Py_CHARMASK(buf[i]))) {
break;
@@ -634,17 +650,39 @@ format_@name@(char *buf, size_t buflen, @name@ val, unsigned int prec)
static void
format_c@name@(char *buf, size_t buflen, c@name@ val, unsigned int prec)
{
+ /* XXX: Find a correct size here for format string */
+ char format[64];
+ char *res;
if (val.real == 0.0) {
- PyOS_snprintf(buf, buflen, CFMT1, prec, val.imag);
+ PyOS_snprintf(format, sizeof(format), _FMT1, prec);
+ res = NumPyOS_ascii_format@type@(buf, buflen-1, format, val.imag, 0);
+ if (res == NULL) {
+ fprintf(stderr, "Error while formatting\n");
+ return;
+ }
+ strncat(buf, "j", 1);
}
else {
- PyOS_snprintf(buf, buflen, CFMT2, prec, val.real, prec, val.imag);
+ char re[64], im[64];
+ PyOS_snprintf(format, sizeof(format), _FMT1, prec);
+ res = NumPyOS_ascii_format@type@(re, sizeof(re), format, val.real, 0);
+ if (res == NULL) {
+ fprintf(stderr, "Error while formatting\n");
+ return;
+ }
+
+ PyOS_snprintf(format, sizeof(format), _FMT2, prec);
+ res = NumPyOS_ascii_format@type@(im, sizeof(im), format, val.imag, 0);
+ if (res == NULL) {
+ fprintf(stderr, "Error while formatting\n");
+ return;
+ }
+ PyOS_snprintf(buf, buflen, "(%s%sj)", re, im);
}
}
-#undef FMT
-#undef CFMT1
-#undef CFMT2
+#undef _FMT1
+#undef _FMT2
/**end repeat**/
@@ -736,6 +774,46 @@ c@name@type_@kind@(PyObject *self)
/**end repeat1**/
/**end repeat**/
+/*
+ * float type print (control print a, where a is a float type instance)
+ */
+/**begin repeat
+ * #name=float, double, longdouble#
+ * #Name=Float, Double, LongDouble#
+ * #NAME=FLOAT, DOUBLE, LONGDOUBLE#
+ */
+
+static int
+@name@type_print(PyObject *v, FILE *fp, int flags)
+{
+ char buf[100];
+ @name@ val = ((Py@Name@ScalarObject *)v)->obval;
+
+ format_@name@(buf, sizeof(buf), val,
+ (flags & Py_PRINT_RAW) ? @NAME@PREC_STR : @NAME@PREC_REPR);
+ Py_BEGIN_ALLOW_THREADS
+ fputs(buf, fp);
+ Py_END_ALLOW_THREADS
+ return 0;
+}
+
+static int
+c@name@type_print(PyObject *v, FILE *fp, int flags)
+{
+ /* Size of buf: twice sizeof(real) + 2 (for the parenthesis) */
+ char buf[202];
+ c@name@ val = ((PyC@Name@ScalarObject *)v)->obval;
+
+ format_c@name@(buf, sizeof(buf), val,
+ (flags & Py_PRINT_RAW) ? @NAME@PREC_STR : @NAME@PREC_REPR);
+ Py_BEGIN_ALLOW_THREADS
+ fputs(buf, fp);
+ Py_END_ALLOW_THREADS
+ return 0;
+}
+
+/**end repeat**/
+
/*
* Could improve this with a PyLong_FromLongDouble(longdouble ldval)
@@ -3075,6 +3153,14 @@ ComplexFloating, Flexible, Character#
PyCDoubleArrType_Type.tp_@name@ = cdoubletype_@name@;
/**end repeat**/
+ PyFloatArrType_Type.tp_print = floattype_print;
+ PyDoubleArrType_Type.tp_print = doubletype_print;
+ PyLongDoubleArrType_Type.tp_print = longdoubletype_print;
+
+ PyCFloatArrType_Type.tp_print = cfloattype_print;
+ PyCDoubleArrType_Type.tp_print = cdoubletype_print;
+ PyCLongDoubleArrType_Type.tp_print = clongdoubletype_print;
+
/* These need to be coded specially because getitem does not
return a normal Python type
*/