Skip to content

Commit

Permalink
Extend the C++11 SMP section of the Blaze tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
igl42 committed Jun 5, 2014
1 parent 77a363a commit 4f86132
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions blaze/Blaze.h
Original file line number Diff line number Diff line change
Expand Up @@ -4002,11 +4002,13 @@ namespace blaze {}
// \n \section cpp_threads_setup C++11 Thread Setup
// <hr>
//
// In order to enable the C++11 thread-based parallelization, the \c BLAZE_USE_CPP_THREADS command
// line argument has to be explicitly specified during compilation:
// In order to enable the C++11 thread-based parallelization, first the according C++11-specific
// compiler flags have to be used and second the \c BLAZE_USE_CPP_THREADS command line argument
// has to be explicitly specified. For instance, in case of the GNU C++ and Clang compilers the
// compiler flags have to be extended by
\code
... -DBLAZE_USE_CPP_THREADS ...
... -std=c++11 -DBLAZE_USE_CPP_THREADS ...
\endcode
// This simple action will cause the \b Blaze library to automatically try to run all operations
Expand Down

0 comments on commit 4f86132

Please sign in to comment.