0
votes
1answer
55 views

Intel Fortran Compiler option for automatic dependency generation

Is there an option for automatic dependency generation for INTEL Fortran Compiler, like the "-MM" option of c/c++ compiler, we can use in makefile?
0
votes
1answer
144 views

How to search for subroutines/modules within MS Visual Studio 2010

Is there a way in MS Visual Studio 2010 (I use Intel Visual Fortran Composer XE 2011) to search for subroutines and modules? For example if I am in a subroutine (written by somebody else) that calls ...
0
votes
1answer
253 views

Parallel program giving error “Undefined reference to _Kmpc_ok_to_fork”

I am trying to compile the OPENMP fortran code on linux. I have around 230 subroutines. The code I used to compile the code is as follows: 1) At first I compiled each subroutine with the following ...
0
votes
0answers
466 views

Using Intel Parallel Studio XE 2013 Fortran compilers with Matlab R2011a to create MEX files

I would like to use the Fortran compiler shipped with Intel Parallel Studio XE 2013 to compile MEX files for Matlab. I currently have Matlab 2011a (32-bit) running on Windows 7 (64-bit), and I am ...
1
vote
1answer
163 views

Fortran profiling: get line execution count

I'm using the Intel Fortran Compiler (v. 12.0.3) on Linux. I'd like to perform profiling with gprof and get a basic block count with all lines labelled with their own run count, but all I have managed ...
0
votes
1answer
219 views

Using the Intel Fortran Composer XE for Linux under Cygwin

I have previously used the GNU FORTRAN compiler gfortran. But since the Intel FORTRAN compiler for Linux is available for personal non-commercial use I decided to give it a try. Is it possible to use ...
0
votes
0answers
365 views

Installing 64-bit only version of Intel Fortran Composer XE for Linux 2011 [closed]

I am trying to install the 64-bit only version of Intel Fortran Composer XE for Linux, so that I will not have to install the 32-bit compatibility libraries. On the web page where you select which ...
0
votes
1answer
265 views

MKL error when using IMSL

I am using IMSL with Intel Virtual Fortran with MKL. I tried to use a routine from IMSL. It was compiled fine, but when I try to execute the file it came up with an error saying: MKL ERROR: ...
0
votes
1answer
364 views

Intel Fortran Composer 2011 and Linux Mint 12

I'm using Intel Fortran Composer 2011 on a Linux Mint 12 system. Every time (and for every user) I restart the computer I need to set the environment variables. source ...
2
votes
1answer
702 views

gdb — No source file named <something> - intel compiler

I am calling fortran 90 code from a c code. There is a main() (in c) that calls a wrapper function in the same file, that calls a fortran subroutine (actually in a liblibrary.a). I am working on ...
3
votes
1answer
422 views

How to use break command in idb(intel compiler debugger) for fortran executable file?

I am new to the idb/gdb debugger so I am apologize for the bad questions in advance. I am trying to set a breakpoint in a function called set_time_i which is in a file called time_manager.F90 by using ...
1
vote
2answers
608 views

forrt1: severe (170): Program Exception - stack overflow

and thanks ahead of time for any help! I have compiled a program (which I did not write) and it works just fine on Mac's but when I try to execute the program on Windows I get the following error ...
0
votes
1answer
2k views

eigenvalues and eigenvectors using mkl lapack libraries in Fortran

I am trying to calculate the eigenvalues and eigenvectors of matrices of different sizes. I am using a piece of very simple Fortran90 code and I am compiling it linking to the appropriate Lapack ...
2
votes
3answers
1k views

How to tell what version of Intel compiler was used to compile binary

So it is relatively straightforward to tell from the symbols embedded in an executable if an Intel compiler was used to compile it, e.g. from the presence of symbols like __intel_proc_init in the ...
2
votes
1answer
562 views

make with g++/intel C++ compiler calling fortran functions

I have been trying to call some functions from a library provided by a commercial finite element code. The examples on using this library are being compiled with intel fortran compiler for my type of ...
1
vote
1answer
1k views

Intel fortran support in Xcode 4

I tried to install Intel Fortran 11 with Xcode 4. It does not work. Is there any version which works with Xcode 4?
0
votes
1answer
346 views

How to generate code-coverage info from VS2010 solution with Intel Fortran projects

The clue is in the title really but I'm struggling to get code coverage for a mixed solution (C#,C++,Fortran). The C# drops out easily and I believe native C++ is supported to a degree but I can't ...
1
vote
2answers
1k views

Why will this code compile using ifort compiler and not when using gfortran compiler? Help!

I'm rewriting some code to make a program compile with the gfortran compiler as opposed to ifort compiler I usually use. The code follows: _Subroutine SlideBits (WORD, BITS, ADDR) Implicit None ...
1
vote
2answers
357 views

Incorrect result with Intel Fortan Compiler on Mac, but fine on Linux!

I have been working with a fast multipole code in Fortran. It is a black box to me, and I have been having some strangeness when compiling it on my mac. I am using version 11.1 of the compiler, ...
5
votes
4answers
3k views

Turning off Hyper-Threading in 6-core Intel Xeon

We got a 12-core MacPro to do some Monte Carlo calculations. Its Intel Xeon processors have Hyper-Threading (HT) enabled, so in fact there should be 24 processes running in parallel to make them fully ...
1
vote
2answers
905 views

ifort linker undefined reference

I'm compiling a large HPC system written in Fortran using the Intel compiler (ifort). There are about several hundred individual modules and they all compile fine, but the linker throws up this error: ...
0
votes
1answer
519 views

Vectorizing Code with Intel Visual FORTRAN for X64

I'm compiling my fortran90 code using Intel Visual FORTRAN on Windows Server 2003 Enterprise X64 Edition. When I compile the code for 32 bit structure and using automatic and manual vectorizing ...
1
vote
2answers
1k views

What's the macro to distinguish ifort from other fortran compilers?

I'm working with Fortran code that has to work with various Fortran compilers (and is interacting with both C++ and Java code). Currently, we have it working with gfortran and g95, but I'm researching ...