Parent Directory
|
Revision Log
|
Revision Graph
|
Patch
| revision 1.1 by heimbach, Tue Feb 5 20:34:34 2002 UTC | revision 1.2 by heimbach, Fri Nov 15 04:03:25 2002 UTC | |
|---|---|---|
| # | Line 0 | Line 1 |
| 1 | ||
| 2 | #ifndef BLAS1_H | |
| 3 | #define BLAS1_H | |
| 4 | ||
| 5 | #ifdef IS_DOUBLE | |
| 6 | # define SDOT ddot | |
| 7 | # define SNRM2 dnrm2 | |
| 8 | # define SSUM dsum | |
| 9 | # define SSCAL dscal | |
| 10 | #else | |
| 11 | # define SDOT sdot | |
| 12 | # define SNRM2 snrm2 | |
| 13 | # define SSUM ssum | |
| 14 | # define SSCAL sscal | |
| 15 | #endif | |
| 16 | ||
| 17 | #endif |
|
||||||||
| ViewVC Help | |
| Powered by ViewVC 1.1.22 |