|
template<typename MT1 , bool SO1, typename MT2 , bool SO2> |
EnableIf< IsDenseMatrix< MT1 > >::Type | blaze::smpAssign (Matrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs) |
| Default implementation of the SMP assignment of a matrix to a dense matrix. More...
|
|
template<typename MT1 , bool SO1, typename MT2 , bool SO2> |
EnableIf< IsDenseMatrix< MT1 > >::Type | blaze::smpAddAssign (Matrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs) |
| Default implementation of the SMP addition assignment of a matrix to a dense matrix. More...
|
|
template<typename MT1 , bool SO1, typename MT2 , bool SO2> |
EnableIf< IsDenseMatrix< MT1 > >::Type | blaze::smpSubAssign (Matrix< MT1, SO1 > &lhs, const Matrix< MT2, SO2 > &rhs) |
| Default implementation of the SMP subtraction assignment of a matrix to dense matrix. More...
|
|
|
template<typename VT1 , bool TF1, typename VT2 , bool TF2> |
EnableIf< IsDenseVector< VT1 > >::Type | blaze::smpAssign (Vector< VT1, TF1 > &lhs, const Vector< VT2, TF2 > &rhs) |
| Default implementation of the SMP assignment of a vector to a dense vector. More...
|
|
template<typename VT1 , bool TF1, typename VT2 , bool TF2> |
EnableIf< IsDenseVector< VT1 > >::Type | blaze::smpAddAssign (Vector< VT1, TF1 > &lhs, const Vector< VT2, TF2 > &rhs) |
| Default implementation of the SMP addition assignment of a vector to a dense vector. More...
|
|
template<typename VT1 , bool TF1, typename VT2 , bool TF2> |
EnableIf< IsDenseVector< VT1 > >::Type | blaze::smpSubAssign (Vector< VT1, TF1 > &lhs, const Vector< VT2, TF2 > &rhs) |
| Default implementation of the SMP subtraction assignment of a vector to a dense vector. More...
|
|
template<typename VT1 , bool TF1, typename VT2 , bool TF2> |
EnableIf< IsDenseVector< VT1 > >::Type | blaze::smpMultAssign (Vector< VT1, TF1 > &lhs, const Vector< VT2, TF2 > &rhs) |
| Default implementation of the SMP multiplication assignment of a vector to a dense vector. More...
|
|
Provides a reliable shutdown of C++11 threads for Visual Studio compilers.
- Returns
- void
There is a known issue in Visual Studio 2012 and 2013 that may cause C++11 threads to hang if their destructor is executed after the main()
function:
http://connect.microsoft.com/VisualStudio/feedback/details/747145
This function, which has only an effect for Visual Studio compilers, provides a reliable way to circumvent this problem. If called directly before the end of the main()
function it blocks until all threads have been destroyed:
template<typename VT1 , bool TF1, typename VT2 , bool TF2>
EnableIf< IsDenseVector< VT1 > >::Type blaze::smpAddAssign |
( |
Vector< VT1, TF1 > & |
lhs, |
|
|
const Vector< VT2, TF2 > & |
rhs |
|
) |
| |
|
inline |
Default implementation of the SMP addition assignment of a vector to a dense vector.
- Parameters
-
lhs | The target left-hand side dense vector. |
rhs | The right-hand side vector to be added. |
- Returns
- void
This function implements the default SMP addition assignment of a vector to a dense vector.
This function must NOT be called explicitly! It is used internally for the performance optimized evaluation of expression templates. Calling this function explicitly might result in erroneous results and/or in compilation errors. Instead of using this function use the assignment operator.
template<typename MT1 , bool SO1, typename MT2 , bool SO2>
EnableIf< IsDenseMatrix< MT1 > >::Type blaze::smpAddAssign |
( |
Matrix< MT1, SO1 > & |
lhs, |
|
|
const Matrix< MT2, SO2 > & |
rhs |
|
) |
| |
|
inline |
Default implementation of the SMP addition assignment of a matrix to a dense matrix.
- Parameters
-
lhs | The target left-hand side dense matrix. |
rhs | The right-hand side matrix to be added. |
- Returns
- void
This function implements the default SMP addition assignment of a matrix to a dense matrix.
This function must NOT be called explicitly! It is used internally for the performance optimized evaluation of expression templates. Calling this function explicitly might result in erroneous results and/or in compilation errors. Instead of using this function use the assignment operator.
template<typename VT1 , bool TF1, typename VT2 , bool TF2>
EnableIf< IsDenseVector< VT1 > >::Type blaze::smpAssign |
( |
Vector< VT1, TF1 > & |
lhs, |
|
|
const Vector< VT2, TF2 > & |
rhs |
|
) |
| |
|
inline |
Default implementation of the SMP assignment of a vector to a dense vector.
- Parameters
-
lhs | The target left-hand side dense vector. |
rhs | The right-hand side vector to be assigned. |
- Returns
- void
This function implements the default SMP assignment of a vector to a dense vector.
This function must NOT be called explicitly! It is used internally for the performance optimized evaluation of expression templates. Calling this function explicitly might result in erroneous results and/or in compilation errors. Instead of using this function use the assignment operator.
template<typename MT1 , bool SO1, typename MT2 , bool SO2>
EnableIf< IsDenseMatrix< MT1 > >::Type blaze::smpAssign |
( |
Matrix< MT1, SO1 > & |
lhs, |
|
|
const Matrix< MT2, SO2 > & |
rhs |
|
) |
| |
|
inline |
Default implementation of the SMP assignment of a matrix to a dense matrix.
- Parameters
-
lhs | The target left-hand side dense matrix. |
rhs | The right-hand side matrix to be assigned. |
- Returns
- void
This function implements the default SMP assignment of a matrix to a dense matrix.
This function must NOT be called explicitly! It is used internally for the performance optimized evaluation of expression templates. Calling this function explicitly might result in erroneous results and/or in compilation errors. Instead of using this function use the assignment operator.
template<typename VT1 , bool TF1, typename VT2 , bool TF2>
EnableIf< IsDenseVector< VT1 > >::Type blaze::smpMultAssign |
( |
Vector< VT1, TF1 > & |
lhs, |
|
|
const Vector< VT2, TF2 > & |
rhs |
|
) |
| |
|
inline |
Default implementation of the SMP multiplication assignment of a vector to a dense vector.
- Parameters
-
lhs | The target left-hand side dense vector. |
rhs | The right-hand side vector to be multiplied. |
- Returns
- void
This function implements the default SMP multiplication assignment of a vector to a dense vector.
This function must NOT be called explicitly! It is used internally for the performance optimized evaluation of expression templates. Calling this function explicitly might result in erroneous results and/or in compilation errors. Instead of using this function use the assignment operator.
template<typename MT1 , bool SO1, typename MT2 , bool SO2>
EnableIf< IsDenseMatrix< MT1 > >::Type blaze::smpSubAssign |
( |
Matrix< MT1, SO1 > & |
lhs, |
|
|
const Matrix< MT2, SO2 > & |
rhs |
|
) |
| |
|
inline |
Default implementation of the SMP subtraction assignment of a matrix to dense matrix.
- Parameters
-
lhs | The target left-hand side dense matrix. |
rhs | The right-hand side matrix to be subtracted. |
- Returns
- void
This function implements the default SMP subtraction assignment of a matrix to a dense matrix.
This function must NOT be called explicitly! It is used internally for the performance optimized evaluation of expression templates. Calling this function explicitly might result in erroneous results and/or in compilation errors. Instead of using this function use the assignment operator.
template<typename VT1 , bool TF1, typename VT2 , bool TF2>
EnableIf< IsDenseVector< VT1 > >::Type blaze::smpSubAssign |
( |
Vector< VT1, TF1 > & |
lhs, |
|
|
const Vector< VT2, TF2 > & |
rhs |
|
) |
| |
|
inline |
Default implementation of the SMP subtraction assignment of a vector to a dense vector.
- Parameters
-
lhs | The target left-hand side dense vector. |
rhs | The right-hand side vector to be subtracted. |
- Returns
- void
This function implements the default SMP subtraction assignment of a vector to a dense vector.
This function must NOT be called explicitly! It is used internally for the performance optimized evaluation of expression templates. Calling this function explicitly might result in erroneous results and/or in compilation errors. Instead of using this function use the assignment operator.