| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2013,2015-2017 CNRS
- * Copyright (C) 2014-2015 Université de Bordeaux
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
- #include <string.h>
- #include <common/config.h>
- #include <core/perfmodel/perfmodel.h>
- #include <ctype.h>
- /** Some systems cannot read NAN values, yes, it is really bad ... */
- #if defined(STARPU_HAVE_WINDOWS) || defined(STARPU_OPENBSD_SYS)
- # define _STARPU_OWN_NAN 1
- #else
- # define _STARPU_OWN_NAN 0
- #endif
- #if _STARPU_OWN_NAN == 1
- static
- void _starpu_read_spaces(FILE *f)
- {
- int c = getc(f);
- if (isspace(c))
- {
- while (isspace(c)) c = getc(f);
- ungetc(c, f);
- }
- else
- {
- ungetc(c, f);
- }
- }
- #endif /* _STARPU_OWN_NAN */
- void _starpu_write_double(FILE *f, const char *format, double val)
- {
- #if _STARPU_OWN_NAN == 1
- if (isnan(val))
- {
- fprintf(f, "NaN");
- }
- else
- {
- fprintf(f, format, val);
- }
- #else
- fprintf(f, format, val);
- #endif
- }
- int _starpu_read_double(FILE *f, char *format, double *val)
- {
- #if _STARPU_OWN_NAN == 1
- _starpu_read_spaces(f);
- int x1 = getc(f);
- if (x1 == 'N')
- {
- int x2 = getc(f);
- int x3 = getc(f);
- if (x2 == 'a' && x3 == 'N')
- {
- #ifdef _MSC_VER
- unsigned long long _mynan = 0x7fffffffffffffffull;
- double mynan = *(double*)&_mynan;
- #else
- double mynan = NAN;
- #endif
- *val = mynan;
- return 1;
- }
- else
- {
- return 0;
- }
- }
- else
- {
- ungetc(x1, f);
- return fscanf(f, format, val);
- }
- #else
- return fscanf(f, format, val);
- #endif
- }
|