~ubuntu-branches/ubuntu/maverick/atlas/maverick

« back to all changes in this revision

Viewing changes to debian/alpha/ev5/include/atlas_sr1.h

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2002-04-13 10:07:52 UTC
  • Revision ID: james.westby@ubuntu.com-20020413100752-memoz13hhg5ad3j1
Tags: 3.2.1ln-7
* Forgot to read DEFAULTS variable in config.expect
* Need g77-3.0 on alpha to link with lapack, workaround for -mieee bug
  in g77-2.95 on alpha

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef ATLAS_SR1_H
 
2
#define ATLAS_SR1_H
 
3
 
 
4
#define ATL_L1r1elts 1536
 
5
#define ATL_r1MU 4
 
6
#define ATL_r1NU 4
 
7
 
 
8
#define ATL_GetPartR1(A_, lda_, mb_, nb_) \
 
9
{ \
 
10
   (mb_) = (ATL_L1r1elts - (ATL_r1NU+ATL_r1NU)) / (ATL_r1NU+ATL_r1NU+1); \
 
11
   if ((mb_) > ATL_r1MU) (mb_) = ATL_r1MU*((mb_)/ATL_r1MU); \
 
12
   else (mb_) = ATL_r1MU; \
 
13
   (nb_) = ATL_r1NU; \
 
14
}
 
15
 
 
16
#endif