#include <iostream>
#include <boost/numeric/ublas/io.hpp>
#include <boost/numeric/ublas/triangular.hpp>
#include <boost/numeric/ublas/matrix_sparse.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/matrix_proxy.hpp>
#include <boost/numeric/ublas/lu.hpp>
#include "viennacl/scalar.hpp"
#include "viennacl/matrix.hpp"
#include "viennacl/vector.hpp"
#include "viennacl/linalg/prod.hpp"
#include "viennacl/linalg/norm_2.hpp"
#include "viennacl/linalg/direct_solve.hpp"
#include "viennacl/linalg/lu.hpp"
#include "viennacl/tools/random.hpp"
#include "viennacl/scheduler/execute.hpp"
#include "viennacl/scheduler/io.hpp"
Go to the source code of this file.
Macros | |
#define | VIENNACL_WITH_UBLAS 1 |
Functions | |
template<typename ScalarType > | |
ScalarType | diff (ScalarType &s1, viennacl::scalar< ScalarType > &s2) |
template<typename ScalarType , typename VCLVectorType > | |
ScalarType | diff (ublas::vector< ScalarType > const &v1, VCLVectorType const &v2) |
template<typename ScalarType , typename VCLMatrixType > | |
ScalarType | diff (ublas::matrix< ScalarType > const &mat1, VCLMatrixType const &mat2) |
template<typename NumericT , typename Epsilon , typename UblasMatrixType , typename UblasVectorType , typename VCLMatrixType , typename VCLVectorType1 , typename VCLVectorType2 > | |
int | test_prod_rank1 (Epsilon const &epsilon, UblasMatrixType &ublas_m1, UblasVectorType &ublas_v1, UblasVectorType &ublas_v2, VCLMatrixType &vcl_m1, VCLVectorType1 &vcl_v1, VCLVectorType2 &vcl_v2) |
template<typename NumericT , typename F , typename Epsilon > | |
int | test (Epsilon const &epsilon) |
int | main () |
Tests the scheduler for matrix-vector-operations.
Definition in file scheduler_matrix_vector.cpp.
#define VIENNACL_WITH_UBLAS 1 |
Definition at line 44 of file scheduler_matrix_vector.cpp.
ScalarType diff | ( | ScalarType & | s1, |
viennacl::scalar< ScalarType > & | s2 | ||
) |
Definition at line 65 of file scheduler_matrix_vector.cpp.
ScalarType diff | ( | ublas::vector< ScalarType > const & | v1, |
VCLVectorType const & | v2 | ||
) |
Definition at line 74 of file scheduler_matrix_vector.cpp.
ScalarType diff | ( | ublas::matrix< ScalarType > const & | mat1, |
VCLMatrixType const & | mat2 | ||
) |
Definition at line 92 of file scheduler_matrix_vector.cpp.
int main | ( | ) |
Definition at line 859 of file scheduler_matrix_vector.cpp.
int test | ( | Epsilon const & | epsilon | ) |
Definition at line 381 of file scheduler_matrix_vector.cpp.
int test_prod_rank1 | ( | Epsilon const & | epsilon, |
UblasMatrixType & | ublas_m1, | ||
UblasVectorType & | ublas_v1, | ||
UblasVectorType & | ublas_v2, | ||
VCLMatrixType & | vcl_m1, | ||
VCLVectorType1 & | vcl_v1, | ||
VCLVectorType2 & | vcl_v2 | ||
) |
Definition at line 119 of file scheduler_matrix_vector.cpp.