Lines Matching refs:MatrixA

133     template< typename MatrixA, typename VectorIPIV, typename WORK >
134 static std::ptrdiff_t invoke( MatrixA& a, const VectorIPIV& ipiv, in invoke()
137 typedef typename result_of::uplo_tag< MatrixA >::type uplo; in invoke()
138 BOOST_STATIC_ASSERT( (bindings::is_column_major< MatrixA >::value) ); in invoke()
139 BOOST_STATIC_ASSERT( (bindings::is_mutable< MatrixA >::value) ); in invoke()
161 template< typename MatrixA, typename VectorIPIV >
162 static std::ptrdiff_t invoke( MatrixA& a, const VectorIPIV& ipiv, in invoke()
165 typedef typename result_of::uplo_tag< MatrixA >::type uplo; in invoke()
178 template< typename MatrixA, typename VectorIPIV >
179 static std::ptrdiff_t invoke( MatrixA& a, const VectorIPIV& ipiv, in invoke()
182 typedef typename result_of::uplo_tag< MatrixA >::type uplo; in invoke()
209 template< typename MatrixA, typename VectorIPIV, typename WORK >
210 static std::ptrdiff_t invoke( MatrixA& a, const VectorIPIV& ipiv, in invoke()
213 typedef typename result_of::uplo_tag< MatrixA >::type uplo; in invoke()
214 BOOST_STATIC_ASSERT( (bindings::is_column_major< MatrixA >::value) ); in invoke()
215 BOOST_STATIC_ASSERT( (bindings::is_mutable< MatrixA >::value) ); in invoke()
237 template< typename MatrixA, typename VectorIPIV >
238 static std::ptrdiff_t invoke( MatrixA& a, const VectorIPIV& ipiv, in invoke()
241 typedef typename result_of::uplo_tag< MatrixA >::type uplo; in invoke()
254 template< typename MatrixA, typename VectorIPIV >
255 static std::ptrdiff_t invoke( MatrixA& a, const VectorIPIV& ipiv, in invoke()
258 typedef typename result_of::uplo_tag< MatrixA >::type uplo; in invoke()
285 template< typename MatrixA, typename VectorIPIV, typename Workspace >
288 sytri( MatrixA& a, const VectorIPIV& ipiv, Workspace work ) { in sytri()
290 MatrixA >::type >::invoke( a, ipiv, work ); in sytri()
297 template< typename MatrixA, typename VectorIPIV >
300 sytri( MatrixA& a, const VectorIPIV& ipiv ) { in sytri()
302 MatrixA >::type >::invoke( a, ipiv, optimal_workspace() ); in sytri()