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

Provides the datastructures for dealing with a single statement such as 'x = y + z;'. More...

#include "viennacl/forwards.h"
#include "viennacl/scheduler/forwards.h"
#include "viennacl/scheduler/execute_scalar_assign.hpp"
#include "viennacl/scheduler/execute_axbx.hpp"
#include "viennacl/scheduler/execute_elementwise.hpp"
#include "viennacl/scheduler/execute_matrix_prod.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

void execute_composite (statement const &s, statement_node const &root_node)
 Deals with x = RHS where RHS is an expression and x is either a scalar, a vector, or a matrix.
void execute_single (statement const &, statement_node const &root_node)
 Deals with x = y for a scalar/vector/matrix x, y.
void execute_impl (statement const &s, statement_node const &root_node)
void execute (statement const &s)

Detailed Description

Provides the datastructures for dealing with a single statement such as 'x = y + z;'.