|
|
 |
 |
 |
 |
Fortran Programming Language
|
 |
 |
 |
 |
 |
 |
 |
 |
gcc fortran matmul
In Gnu GCC, is the fortran compiler using ATLAS for matmul? -- I didn't know sci.bio.paleontology was that low traffic until I tried read the thread "Where is everyone?" and found it to be expired.
On May 24, 7:47 am, Gunnar G <deb@comhem.se> wrote: > In Gnu GCC, is the fortran compiler using ATLAS for matmul? > -- > I didn't know sci.bio.paleontology was that low traffic until I tried read > the thread "Where is everyone?" and found it to be expired.
If you specify -fexternal-blas, then it uses whatever BLAS you link it to.
"highegg" <high @gmail.com> wrote in message news:1179987464.680583.279710@p47g2000hsd.googlegroups.com... > On May 24, 7:47 am, Gunnar G <deb @comhem.se> wrote: > > In Gnu GCC, is the fortran compiler using ATLAS for matmul? > > -- > > I didn't know sci.bio.paleontology was that low traffic until I tried read > > the thread "Where is everyone?" and found it to be expired. > If you specify -fexternal-blas, then it uses whatever BLAS you link it > to.
Does that mean 'no', then?
In article <L6j5i.44343$Ug.25@fe1.news.blueyonder.co.uk>, "max" <n@none.com> writes:
> "highegg" <high@gmail.com> wrote in message > news:1179987464.680583.279710@p47g2000hsd.googlegroups.com... >> On May 24, 7:47 am, Gunnar G <deb@comhem.se> wrote: >> > In Gnu GCC, is the fortran compiler using ATLAS for matmul? >> > -- >> > I didn't know sci.bio.paleontology was that low traffic until I tried > read >> > the thread "Where is everyone?" and found it to be expired. >> If you specify -fexternal-blas, then it uses whatever BLAS you link it >> to. > Does that mean 'no', then?
By default matmul does not use blas. If you use -fexternal-blas you can use whatever blas library you have (GotoBLAS, ACML, ATLAS, good old netlib blas). -- Steve http://troutmask.apl.washington.edu/~kargl/
|
 |
 |
 |
 |
|