Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions 3rdparty/mshadow/mshadow/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,13 @@ const float kPi = 3.1415926f;
typedef index_t openmp_index_t;
#endif

#if MSHADOW_USE_MKL && MXNET_USE_LAPACK
// lapack_index_t could be replaced by index_t and removed when all blas library support large tensor
typedef index_t lapack_index_t;
#else
typedef int lapack_index_t;
#endif

/*! \brief float point type that will be used in default by mshadow */
typedef float default_real_t;

Expand Down