ViennaCL - The Vienna Computing Library  1.7.1
Free open-source GPU-accelerated linear algebra and solver library.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
toeplitz_matrix.hpp File Reference

Implementation of the toeplitz_matrix class for efficient manipulation of Toeplitz matrices. Experimental. More...

Go to the source code of this file.

Classes

class  viennacl::toeplitz_matrix< SCALARTYPE, ALIGNMENT >
 A Toeplitz 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, toeplitz_matrix< NumericT, AlignmentV > &gpu_mat)
 Copies a Toeplitz 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 (toeplitz_matrix< NumericT, AlignmentV > const &gpu_mat, std::vector< NumericT > &cpu_vec)
 Copies a Toeplitz 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 (toeplitz_matrix< NumericT, AlignmentV > const &tep_src, MatrixT &com_dst)
 Copies a Toeplitz 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, toeplitz_matrix< NumericT, AlignmentV > &tep_dst)
 Copies a the matrix-like object to the Toeplitz 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, toeplitz_matrix< NumericT, AlignmentV > &gpu_matrix)
 Prints the matrix. Output is compatible to boost::numeric::ublas. More...
 

Detailed Description

Implementation of the toeplitz_matrix class for efficient manipulation of Toeplitz matrices. Experimental.

Definition in file toeplitz_matrix.hpp.