Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
c77088d0
Kaydet (Commit)
c77088d0
authored
Agu 13, 2015
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge: #21167: Fix definition of NAN when ICC used without -fp-model strict.
üst
2ebdc13d
edbc28ce
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
1 deletion
+27
-1
pymath.h
Include/pymath.h
+23
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Include/pymath.h
Dosyayı görüntüle @
c77088d0
...
...
@@ -150,7 +150,29 @@ PyAPI_FUNC(void) _Py_set_387controlword(unsigned short);
* doesn't support NaNs.
*/
#if !defined(Py_NAN) && !defined(Py_NO_NAN)
#define Py_NAN (Py_HUGE_VAL * 0.)
#if !defined(__INTEL_COMPILER)
#define Py_NAN (Py_HUGE_VAL * 0.)
#else
/* __INTEL_COMPILER */
#if defined(ICC_NAN_STRICT)
#pragma float_control(push)
#pragma float_control(precise, on)
#pragma float_control(except, on)
#if defined(_MSC_VER)
__declspec
(
noinline
)
#else
/* Linux */
__attribute__
((
noinline
))
#endif
/* _MSC_VER */
static
double
__icc_nan
()
{
return
sqrt
(
-
1
.
0
);
}
#pragma float_control (pop)
#define Py_NAN __icc_nan()
#else
/* ICC_NAN_RELAXED as default for Intel Compiler */
static
union
{
unsigned
char
buf
[
8
];
double
__icc_nan
;
}
__nan_store
=
{
0
,
0
,
0
,
0
,
0
,
0
,
0xf8
,
0x7f
};
#define Py_NAN (__nan_store.__icc_nan)
#endif
/* ICC_NAN_STRICT */
#endif
/* __INTEL_COMPILER */
#endif
/* Py_OVERFLOWED(X)
...
...
Misc/ACKS
Dosyayı görüntüle @
c77088d0
...
...
@@ -594,6 +594,7 @@ Gregor Hoffleit
Chris Hoffman
Stefan Hoffmeister
Albert Hofkamp
Chris Hogan
Tomas Hoger
Jonathan Hogg
Kamilla Holanda
...
...
Misc/NEWS
Dosyayı görüntüle @
c77088d0
...
...
@@ -10,6 +10,9 @@ Release date: 2015-08-23
Core and Builtins
-----------------
- Issue #21167: NAN operations are now handled correctly when python is
compiled with ICC even if -fp-model strict is not specified.
Library
-------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment