ViennaCL - The Vienna Computing Library  1.5.0
Namespaces | Functions
viennacl/scheduler/execute_vector_dispatcher.hpp File Reference

Provides wrappers for av(), avbv(), avbv_v(), etc. in viennacl/linalg/vector_operations.hpp such that scheduler logic is not cluttered with numeric type decutions. More...

#include <assert.h>
#include "viennacl/forwards.h"
#include "viennacl/scheduler/forwards.h"
#include "viennacl/scheduler/execute_util.hpp"
#include "viennacl/linalg/vector_operations.hpp"

Go to the source code of this file.

Namespaces

namespace  viennacl
 

Main namespace in ViennaCL. Holds all the basic types such as vector, matrix, etc. and defines operations upon them.


namespace  viennacl::scheduler
 

Contains the scheduling functionality which allows for dynamic kernel generation as well as the fusion of multiple statements into a single kernel.


namespace  viennacl::scheduler::detail
 

Implementation details for the scheduler.


Functions

template<typename ScalarType1 >
void av (lhs_rhs_element &vec1, lhs_rhs_element const &vec2, ScalarType1 const &alpha, vcl_size_t len_alpha, bool reciprocal_alpha, bool flip_sign_alpha)
 Wrapper for viennacl::linalg::av(), taking care of the argument unwrapping.
template<typename ScalarType1 , typename ScalarType2 >
void avbv (lhs_rhs_element &vec1, lhs_rhs_element const &vec2, ScalarType1 const &alpha, vcl_size_t len_alpha, bool reciprocal_alpha, bool flip_sign_alpha, lhs_rhs_element const &vec3, ScalarType2 const &beta, vcl_size_t len_beta, bool reciprocal_beta, bool flip_sign_beta)
 Wrapper for viennacl::linalg::avbv(), taking care of the argument unwrapping.
template<typename ScalarType1 , typename ScalarType2 >
void avbv_v (lhs_rhs_element &vec1, lhs_rhs_element const &vec2, ScalarType1 const &alpha, vcl_size_t len_alpha, bool reciprocal_alpha, bool flip_sign_alpha, lhs_rhs_element const &vec3, ScalarType2 const &beta, vcl_size_t len_beta, bool reciprocal_beta, bool flip_sign_beta)
 Wrapper for viennacl::linalg::avbv_v(), taking care of the argument unwrapping.
void norm_impl (lhs_rhs_element const &x, lhs_rhs_element const &s, operation_node_type op_type)
 Dispatcher interface for computing s = norm_1(x)
void inner_prod_impl (lhs_rhs_element const &x, lhs_rhs_element const &y, lhs_rhs_element const &s)
 Dispatcher interface for computing s = inner_prod(x, y)

Detailed Description

Provides wrappers for av(), avbv(), avbv_v(), etc. in viennacl/linalg/vector_operations.hpp such that scheduler logic is not cluttered with numeric type decutions.