LAMA
|
#include <cstring>
#include <limits>
#include <stdint.h>
Go to the source code of this file.
Namespaces | |
namespace | lama |
The namespace lama holds everything of the C++ Library lama. | |
Typedefs | |
typedef int | lama::IndexType |
Data type that is used for indexing in LAMA. | |
typedef int | lama::PartitionId |
Data type that is used for numbering of partitions. | |
Enumerations | |
enum | lama::CBLAS_ORDER { lama::CblasRowMajor = 101, lama::CblasColMajor = 102 } |
Enumeration type for storage order of two-dimensional arrays, taken over from cblas. More... | |
enum | lama::CBLAS_TRANSPOSE { lama::CblasNoTrans = 111, lama::CblasTrans = 112, lama::CblasConjTrans = 113 } |
Enumeration type for transpose use of two-dimensional arrays, taken over from cblas. More... | |
enum | lama::CBLAS_UPLO { lama::CblasUpper = 121, lama::CblasLower = 122 } |
Enumeration type for partial use of two-dimensional arrays, taken over from cblas. More... | |
enum | lama::CBLAS_DIAG { lama::CblasNonUnit = 131, lama::CblasUnit = 132 } |
enum | lama::CBLAS_SIDE { lama::CblasLeft = 141, lama::CblasRight = 142 } |
Variables | |
const IndexType | lama::nIndex = std::numeric_limits<IndexType>::max() |
Definition for a constant value that indicates a non-available index. | |
const PartitionId | lama::nPartition = std::numeric_limits<PartitionId>::max() |
Definition for a constant value that indicates a non-available partition. |