- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
All the function declarations in the header mkl_boost_ublas_matrix_prod.hpp are surrounded by the guard
#if defined (BOOST_VERSION) && \\
((BOOST_VERSION == 103401) \\
|| (BOOST_VERSION == 103500) \\
|| (BOOST_VERSION == 103600) \\
|| (BOOST_VERSION == 103700) \\
|| (BOOST_VERSION == 103800) \\
|| (BOOST_VERSION == 103900) \\
|| (BOOST_VERSION == 104000) \\
|| (BOOST_VERSION == 104100))
...
#endif
Does this mean that Boost versions higher than 1.41 are not supported?
(The current Boost version is 1.46.)
#if defined (BOOST_VERSION) && \\
((BOOST_VERSION == 103401) \\
|| (BOOST_VERSION == 103500) \\
|| (BOOST_VERSION == 103600) \\
|| (BOOST_VERSION == 103700) \\
|| (BOOST_VERSION == 103800) \\
|| (BOOST_VERSION == 103900) \\
|| (BOOST_VERSION == 104000) \\
|| (BOOST_VERSION == 104100))
...
#endif
Does this mean that Boost versions higher than 1.41 are not supported?
(The current Boost version is 1.46.)
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
Which versions of Intel MKL are using now? I see in the latest MKL 10.2 update release, this problem was fixed, it is expect to work with higher version of boost:
#include
#if defined (BOOST_VERSION) && (BOOST_VERSION >= 103401)
.....
Thanks,
Chao
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Chao, I had on older version of MKL 10.2. Thank you, Johan.
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page