Implementation of the hankel_matrix class for efficient manipulation of Hankel matrices. Experimental. More...
#include "viennacl/forwards.h"
#include "viennacl/vector.hpp"
#include "viennacl/ocl/backend.hpp"
#include "viennacl/toeplitz_matrix.hpp"
#include "viennacl/fft.hpp"
#include "viennacl/linalg/hankel_matrix_operations.hpp"
Go to the source code of this file.
Classes | |
class | viennacl::hankel_matrix< SCALARTYPE, ALIGNMENT > |
A Hankel matrix class. More... | |
Namespaces | |
viennacl | |
Main namespace in ViennaCL. Holds all the basic types such as vector, matrix, etc. and defines operations upon them. | |
Functions | |
template<typename NumericT , unsigned int AlignmentV> | |
void | viennacl::copy (std::vector< NumericT > const &cpu_vec, hankel_matrix< NumericT, AlignmentV > &gpu_mat) |
Copies a Hankel matrix from the std::vector to the OpenCL device (either GPU or multi-core CPU) More... | |
template<typename NumericT , unsigned int AlignmentV> | |
void | viennacl::copy (hankel_matrix< NumericT, AlignmentV > const &gpu_mat, std::vector< NumericT > &cpu_vec) |
Copies a Hankel matrix from the OpenCL device (either GPU or multi-core CPU) to the std::vector. More... | |
template<typename NumericT , unsigned int AlignmentV, typename MatrixT > | |
void | viennacl::copy (hankel_matrix< NumericT, AlignmentV > const &han_src, MatrixT &com_dst) |
Copies a Hankel matrix from the OpenCL device (either GPU or multi-core CPU) to the matrix-like object. More... | |
template<typename NumericT , unsigned int AlignmentV, typename MatrixT > | |
void | viennacl::copy (MatrixT const &com_src, hankel_matrix< NumericT, AlignmentV > &han_dst) |
Copies a the matrix-like object to the Hankel matrix from the OpenCL device (either GPU or multi-core CPU) More... | |
template<class NumericT , unsigned int AlignmentV> | |
std::ostream & | viennacl::operator<< (std::ostream &s, hankel_matrix< NumericT, AlignmentV > &gpu_matrix) |
Implementation of the hankel_matrix class for efficient manipulation of Hankel matrices. Experimental.
Definition in file hankel_matrix.hpp.