OpenCL kernel file for specialized iterative solver kernels. More...
#include "viennacl/tools/tools.hpp"
#include "viennacl/vector_proxy.hpp"
#include "viennacl/scheduler/forwards.h"
#include "viennacl/scheduler/io.hpp"
#include "viennacl/scheduler/preset.hpp"
#include "viennacl/ocl/kernel.hpp"
#include "viennacl/ocl/platform.hpp"
#include "viennacl/ocl/utils.hpp"
Go to the source code of this file.
Classes | |
struct | viennacl::linalg::opencl::kernels::iterative< NumericT > |
Main kernel class for generating specialized OpenCL kernels for fast iterative solvers. More... | |
Namespaces | |
viennacl | |
Main namespace in ViennaCL. Holds all the basic types such as vector, matrix, etc. and defines operations upon them. | |
viennacl::linalg | |
Provides all linear algebra operations which are not covered by operator overloads. | |
viennacl::linalg::opencl | |
Holds all routines providing OpenCL linear algebra operations. | |
viennacl::linalg::opencl::kernels | |
Contains the OpenCL kernel generation functions for a predefined set of functionality. | |
Functions | |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_pipelined_cg_vector_update (StringT &source, std::string const &numeric_string) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_compressed_matrix_pipelined_cg_blocked_prod (StringT &source, std::string const &numeric_string, unsigned int subwarp_size) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_compressed_matrix_pipelined_cg_prod (StringT &source, std::string const &numeric_string) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_coordinate_matrix_pipelined_cg_prod (StringT &source, std::string const &numeric_string) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_ell_matrix_pipelined_cg_prod (StringT &source, std::string const &numeric_string) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_sliced_ell_matrix_pipelined_cg_prod (StringT &source, std::string const &numeric_string) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_hyb_matrix_pipelined_cg_prod (StringT &source, std::string const &numeric_string) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_pipelined_bicgstab_update_s (StringT &source, std::string const &numeric_string) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_pipelined_bicgstab_vector_update (StringT &source, std::string const &numeric_string) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_compressed_matrix_pipelined_bicgstab_blocked_prod (StringT &source, std::string const &numeric_string, unsigned int subwarp_size) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_compressed_matrix_pipelined_bicgstab_prod (StringT &source, std::string const &numeric_string) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_coordinate_matrix_pipelined_bicgstab_prod (StringT &source, std::string const &numeric_string) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_ell_matrix_pipelined_bicgstab_prod (StringT &source, std::string const &numeric_string) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_sliced_ell_matrix_pipelined_bicgstab_prod (StringT &source, std::string const &numeric_string) |
template<typename StringT > | |
void | viennacl::linalg::opencl::kernels::generate_hyb_matrix_pipelined_bicgstab_prod (StringT &source, std::string const &numeric_string) |
template<typename StringType > | |
void | viennacl::linalg::opencl::kernels::generate_pipelined_gmres_gram_schmidt_stage1 (StringType &source, std::string const &numeric_string, bool is_nvidia) |
template<typename StringType > | |
void | viennacl::linalg::opencl::kernels::generate_pipelined_gmres_gram_schmidt_stage2 (StringType &source, std::string const &numeric_string) |
template<typename StringType > | |
void | viennacl::linalg::opencl::kernels::generate_pipelined_gmres_normalize_vk (StringType &source, std::string const &numeric_string) |
template<typename StringType > | |
void | viennacl::linalg::opencl::kernels::generate_pipelined_gmres_update_result (StringType &source, std::string const &numeric_string) |
template<typename StringType > | |
void | viennacl::linalg::opencl::kernels::generate_compressed_matrix_pipelined_gmres_blocked_prod (StringType &source, std::string const &numeric_string) |
template<typename StringType > | |
void | viennacl::linalg::opencl::kernels::generate_compressed_matrix_pipelined_gmres_prod (StringType &source, std::string const &numeric_string) |
template<typename StringType > | |
void | viennacl::linalg::opencl::kernels::generate_coordinate_matrix_pipelined_gmres_prod (StringType &source, std::string const &numeric_string) |
template<typename StringType > | |
void | viennacl::linalg::opencl::kernels::generate_ell_matrix_pipelined_gmres_prod (StringType &source, std::string const &numeric_string) |
template<typename StringType > | |
void | viennacl::linalg::opencl::kernels::generate_sliced_ell_matrix_pipelined_gmres_prod (StringType &source, std::string const &numeric_string) |
template<typename StringType > | |
void | viennacl::linalg::opencl::kernels::generate_hyb_matrix_pipelined_gmres_prod (StringType &source, std::string const &numeric_string) |
OpenCL kernel file for specialized iterative solver kernels.
Definition in file iterative.hpp.