~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/ThreadPool/test/hpccg/tpi_vector.h

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
void tpi_fill( int n , double alpha , double * x );
 
3
 
 
4
void tpi_scale( int n , const double alpha , double * x );
 
5
 
 
6
void tpi_copy( int n , const double * x , double * y );
 
7
 
 
8
void tpi_axpby( int n , double alpha , const double * x ,
 
9
                        double beta  ,       double * y );
 
10
 
 
11
double tpi_dot( int n , const double * x , const double * y );
 
12
 
 
13
void tpi_crs_matrix_apply(
 
14
  const int      nRow ,
 
15
  const int    * A_pc ,
 
16
  const int    * A_ia ,
 
17
  const float  * A_a ,
 
18
  const double * x ,
 
19
        double * y );
 
20