- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you use gfortran, you may have noticed that the g77-compiled blas library supplied in typical linux distros isn't compatible with gfortran. I ran some tests successfully with
gfortran -O2 -march=nocona -L/opt/intel/mkl/8.0/lib/em64t *.f -lmkl_em64t -lguide -lpthread
As expected, setenv OMP_NUM_THREADS=2 invokes parallel execution, where mkl so chooses. Mkl performance was the same, linked with ifort or with gfortran.
lapack would have a problem, due to the run-time library differences between gfortran and ifort.
gfortran -O2 -march=nocona -L/opt/intel/mkl/8.0/lib/em64t *.f -lmkl_em64t -lguide -lpthread
As expected, setenv OMP_NUM_THREADS=2 invokes parallel execution, where mkl so chooses. Mkl performance was the same, linked with ifort or with gfortran.
lapack would have a problem, due to the run-time library differences between gfortran and ifort.
Link Copied
0 Replies

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page