/ani/mrses

To get this branch, use:
bzr branch http://suren.me/webbzr/ani/mrses

« back to all changes in this revision

Viewing changes to cell/vec_potrf.h

  • Committer: Suren A. Chilingaryan
  • Date: 2010-04-28 04:30:08 UTC
  • Revision ID: csa@dside.dyndns.org-20100428043008-vd9z0nso9axezvlp
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _LAPACK_POTRF_H
 
2
#define _LAPACK_POTRF_H
 
3
 
 
4
vector unsigned int vec_spotrf_u(short int N, MRSESDataType *A, short int lda);
 
5
vector float vec_rcorr(short int N, MRSESDataType *C, MRSESDataType *Ca, MRSESDataType *Cb);
 
6
vector float vec_rmahal(short int N, MRSESDataType *C, MRSESDataType *X);
 
7
vector float vec_bhata(vector float rcorr, vector float rmahal);
 
8
void vec_ssyrk_rln_11 (short int N, short int K, const float *A, short int lda, float *C, short int ldc);
 
9
void vec_update_row (short int row, short int N, short int K, const float *A, short int lda, float *C);
 
10
 
 
11
 
 
12
#endif /* _LAPACK_POTRF_H */