Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
29285 Discussions

how to use IMSL in intel fortran complier7.0?

hawkccem
Beginner
619 Views
I have installed visual fortran 6.6 professional edition and intel fortran for windows 7.0. When I builded my program, the intel complier told me "can not find IMSL library", and my program is just as following:
program test
USE IMSL
implicit none

Does anyone could like to tell me how to solve my porblem ? thanks
0 Kudos
3 Replies
Steven_L_Intel1
Employee
619 Views
You can't. The CVF modules and IMSL libraries are not compatible with Intel Fortran. You would need to buy an Intel Fortran version of IMSL from Visual Numerics or wait to see if a compatible version of IMSL is included in a future version of Intel Fortran (uncertain at this time.)

Steve
0 Kudos
gfthomas8
Novice
619 Views
I've never tried this, but why not create a cvf dll (statically linked against the appropriate imsl .lib(s)) that exports wrappers to the imsl functionality that you need and call these from ifc?

Ciao,
Gerry T.
0 Kudos
Steven_L_Intel1
Employee
619 Views
That should work ok.

Steve
0 Kudos
Reply