Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Intel Fortran Compiler

HB7
Novice
1,111 Views

Hi everyone,

 

I'm a PhD student and I need Intel Parallel XE 2019 for my research. I found out that there used to be a free student version, but now the entire Intel Parallel XE software has been replaced with the oneAPI toolkit. I can't find any information about a student version of oneAPI, and I'm not sure if it will work for me.

 

Is there any way to get access to Intel Parallel XE 2019?

 

Thanks!

0 Kudos
1 Solution
HB7
Novice
883 Views

I just wanted to update that I copied most lib files both in mkl and another folder to my nmake/codes folder. Now my nmake works.

 

Thanks.

View solution in original post

0 Kudos
5 Replies
Steve_Lionel
Honored Contributor III
1,106 Views

The oneAPI toolkits are free for everyone. (Support licenses may be purchased.)

HB7
Novice
1,000 Views

Thank you for your response. I tried using the Intel oneAPI terminal to run my nmake and I am getting this error: 

 

 

 

ifort -w -q -o lsdyna.exe couple2other_user.obj dyn21cnt.obj dyn21ueos.obj dyn21umats.obj dyn21ushl.obj dyn21utan.obj dyn21.obj dyn21tumat.obj dyn21umatc.obj dyn21umatv.obj dyn21usld.obj dynrfn_user.obj dyn21umat.obj init_dyn21.obj dyn21em.obj dyn21icfd.obj libdyna.lib libansys.lib shell32.lib user32.lib comctl32.lib comdlg32.lib Iphlpapi.lib gdi32.lib mkl_intel_ilp64.lib mkl_sequential.lib mkl_core.lib -F:1610612736 -link -force -nodefaultlib:msvcrt.lib -ignore:4217 -ignore:4049 -nodefaultlib:vcomp.lib
Intel(R) Fortran Intel(R) 64 Compiler Classic for applications running on Intel(R) 64, Version 2021.12.0 Build 20240222_000000
Copyright (C) 1985-2024 Intel Corporation. All rights reserved.

ifort: remark #10448: Intel(R) Fortran Compiler Classic (ifort) is now deprecated and will be discontinued late 2024. Intel recommends that customers transition now to using the LLVM-based Intel(R) Fortran Compiler (ifx) for continued Windows* and Linux* support, new language support, new language features, and optimizations. Use '/Qdiag-disable:10448' to disable this message.
ipo: error #11018: Cannot open mkl_intel_ilp64.lib
ipo: error #11018: Cannot open mkl_sequential.lib
ipo: error #11018: Cannot open mkl_core.lib
Microsoft (R) Incremental Linker Version 14.40.33811.0
Copyright (C) Microsoft Corporation. All rights reserved.

-out:lsdyna.exe
-subsystem:console
-stack:1610612736
-force
-nodefaultlib:msvcrt.lib
-ignore:4217
-ignore:4049
-nodefaultlib:vcomp.lib
couple2other_user.obj
dyn21cnt.obj
dyn21ueos.obj
dyn21umats.obj
dyn21ushl.obj
dyn21utan.obj
dyn21.obj
dyn21tumat.obj
dyn21umatc.obj
dyn21umatv.obj
dyn21usld.obj
dynrfn_user.obj
dyn21umat.obj
init_dyn21.obj
dyn21em.obj
dyn21icfd.obj
libdyna.lib
libansys.lib
shell32.lib
user32.lib
comctl32.lib
comdlg32.lib
Iphlpapi.lib
gdi32.lib
mkl_intel_ilp64.lib
mkl_sequential.lib
mkl_core.lib
LINK : fatal error LNK1181: cannot open input file 'mkl_intel_ilp64.lib'
NMAKE : fatal error U1077: 'ifort' : return code '0x49d'

 

I understand that I am missing some libraries, but I don't know where to find them. I am pretty new to Fortran so it may be a silly problem. Is it because I am using a newer version of the Fortran compiler ?

0 Kudos
andrew_4619
Honored Contributor III
990 Views

Well on my system those are in "C:\Program Files (x86)\Intel\oneAPI\mkl\2024.2\lib\" 

AKA C:\Program Files (x86)\Intel\oneAPI\mkl\latest\lib\"

This is no QMKL compile option set on the build command.  That I think triggers the search for the mkl settings which should lead to the lib folder. You need to look at your build script.

0 Kudos
Devorah_H_Intel
Moderator
1,056 Views

@HB7 wrote:

Hi everyone,

 

I'm a PhD student and I need Intel Parallel XE 2019 for my research. I found out that there used to be a free student version, but now the entire Intel Parallel XE software has been replaced with the oneAPI toolkit. I can't find any information about a student version of oneAPI, and I'm not sure if it will work for me.

 

Is there any way to get access to Intel Parallel XE 2019?

 

Thanks!


Here is the direct download link 

0 Kudos
HB7
Novice
884 Views

I just wanted to update that I copied most lib files both in mkl and another folder to my nmake/codes folder. Now my nmake works.

 

Thanks.

0 Kudos
Reply