• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révisiond845def9af3546ec4bd9158a57f43f9b2ea8df6b (tree)
l'heure2012-12-26 18:10:45
AuteurKatsuhiko Nishimra <ktns.87@gmai...>
CommiterKatsuhiko Nishimra

Message de Log

Set MKL_INT to int64_t if SIZEOF_BLAS/LAPACK == 64. #30331

git-svn-id: https://svn.sourceforge.jp/svnroot/molds/branches/automake@1216 1136aad2-a195-0410-b898-f5ea1d11b9d8

Change Summary

Modification

--- a/src/wrappers/Blas.cpp
+++ b/src/wrappers/Blas.cpp
@@ -29,6 +29,7 @@
2929 #ifdef HAVE_MKL_H
3030 #if SIZEOF_BLASINT == 64
3131 #define MKL_ILP64
32+#define MKL_INT int64_t
3233 #endif
3334 #include"mkl.h"
3435 #elif HAVE_CBLAS_H
--- a/src/wrappers/Lapack.cpp
+++ b/src/wrappers/Lapack.cpp
@@ -28,6 +28,7 @@
2828 #if defined(HAVE_MKL_H)
2929 #if SIZEOF_LAPACKINT == 64
3030 #define MKL_ILP64
31+#define MKL_INT int64_t
3132 #endif
3233 #include"mkl.h"
3334 #elif defined(HAVE_LAPACKE_H)