Teuchos Package Browser (Single Doxygen Collection)
Version of the Day
Toggle main menu visibility
Loading...
Searching...
No Matches
numerics
example
LAPACK
numerics/example/LAPACK/cxx_main.cpp
Go to the documentation of this file.
1
/*
2
// @HEADER
3
// ***********************************************************************
4
//
5
// Teuchos: Common Tools Package
6
// Copyright (2004) Sandia Corporation
7
//
8
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
9
// license for use of this work by or on behalf of the U.S. Government.
10
//
11
// Redistribution and use in source and binary forms, with or without
12
// modification, are permitted provided that the following conditions are
13
// met:
14
//
15
// 1. Redistributions of source code must retain the above copyright
16
// notice, this list of conditions and the following disclaimer.
17
//
18
// 2. Redistributions in binary form must reproduce the above copyright
19
// notice, this list of conditions and the following disclaimer in the
20
// documentation and/or other materials provided with the distribution.
21
//
22
// 3. Neither the name of the Corporation nor the names of the
23
// contributors may be used to endorse or promote products derived from
24
// this software without specific prior written permission.
25
//
26
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37
//
38
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
39
//
40
// ***********************************************************************
41
// @HEADER
42
*/
43
44
#include "
Teuchos_LAPACK.hpp
"
45
#include "
Teuchos_SerialDenseMatrix.hpp
"
46
#include "
Teuchos_SerialDenseVector.hpp
"
47
#include "
Teuchos_Version.hpp
"
48
49
int
main
(
int
argc,
char
* argv[])
50
{
51
std::cout <<
Teuchos::Teuchos_Version
() << std::endl << std::endl;
52
53
// Creating an instance of the LAPACK class for double-precision routines looks like:
54
Teuchos::LAPACK<int, double>
lapack;
55
56
// This instance provides the access to all the LAPACK routines.
57
Teuchos::SerialDenseMatrix<int, double>
My_Matrix(4,4);
58
Teuchos::SerialDenseVector<int, double>
My_Vector(4);
59
My_Matrix.
random
();
60
My_Vector.
random
();
61
62
// Perform an LU factorization of this matrix.
63
int
ipiv[4], info;
64
char
TRANS =
'N'
;
65
lapack.
GETRF
( 4, 4, My_Matrix.
values
(), My_Matrix.
stride
(), ipiv, &info );
66
67
// Solve the linear system.
68
lapack.
GETRS
( TRANS, 4, 1, My_Matrix.
values
(), My_Matrix.
stride
(),
69
ipiv, My_Vector.
values
(), My_Vector.
stride
(), &info );
70
71
// Print out the solution.
72
std::cout << printMat(My_Vector) << std::endl;
73
74
return
0;
75
}
Teuchos_LAPACK.hpp
Templated interface class to LAPACK routines.
Teuchos_SerialDenseMatrix.hpp
Templated serial dense matrix class.
Teuchos_SerialDenseVector.hpp
Templated serial dense vector class.
Teuchos_Version.hpp
Teuchos::LAPACK
The Templated LAPACK Wrapper Class.
Definition
Teuchos_LAPACK.hpp:97
Teuchos::LAPACK::GETRF
void GETRF(const OrdinalType &m, const OrdinalType &n, ScalarType *A, const OrdinalType &lda, OrdinalType *IPIV, OrdinalType *info) const
Computes an LU factorization of a general m by n matrix A using partial pivoting with row interchange...
Definition
Teuchos_LAPACK.cpp:181
Teuchos::LAPACK::GETRS
void GETRS(const char &TRANS, const OrdinalType &n, const OrdinalType &nrhs, const ScalarType *A, const OrdinalType &lda, const OrdinalType *IPIV, ScalarType *B, const OrdinalType &ldb, OrdinalType *info) const
Solves a system of linear equations A*X=B or A'*X=B with a general n by n matrix A using the LU facto...
Definition
Teuchos_LAPACK.cpp:185
Teuchos::SerialDenseMatrix
This class creates and provides basic support for dense rectangular matrix of templated type.
Definition
Teuchos_SerialDenseMatrix.hpp:68
Teuchos::SerialDenseMatrix::stride
OrdinalType stride() const
Returns the stride between the columns of this matrix in memory.
Definition
Teuchos_SerialDenseMatrix.hpp:359
Teuchos::SerialDenseMatrix::random
int random()
Set all values in the matrix to be random numbers.
Definition
Teuchos_SerialDenseMatrix.hpp:654
Teuchos::SerialDenseMatrix::values
ScalarType * values() const
Data array access method.
Definition
Teuchos_SerialDenseMatrix.hpp:258
Teuchos::SerialDenseVector
This class creates and provides basic support for dense vectors of templated type as a specialization...
Definition
Teuchos_SerialDenseVector.hpp:60
main
int main()
Definition
evilMain.cpp:75
Teuchos::Teuchos_Version
std::string Teuchos_Version()
Definition
Teuchos_Version.hpp:54
Generated by
1.17.0