Why cant I compile anything ?
I tried downloading the newest VS (2016), but the license file would not allow it.The registration people wont tell me how to upgrade my license to the newest activation, butwhen I reloaded the older...
View ArticleAnother debugging issue - gives wrong values
The following source code runs fine as far as the PRINT statements go -But I get completely wrong values when I put a break point after the PRINT statements, andtry to look at the variable contents. It...
View ArticleSIMD cross product
Colleagues,I need to form the cross products of a single vector with a long string of other vectors (all vectors 3D). I have not been able to see how to vectorize this process in Fortran. C++ allows...
View Articleopenmp and type bound procedures
Hi there,the following example compiles, but it crashes if I set the thread number > 1Module ModClassOne Type :: ClassOne Real(kind=8), Allocatable, Dimension(:,:) :: tmp contains Procedure, Pass ::...
View ArticleCrash with Dialogs
I have ab About dialog that looks like:Type (dialog) mDlg bret = DlgInit(IDD_ABOUT,mDlg) iret = DlgModal(mDlg) Call DlgUnInit(mDlg)Now the dialog box is simple (3...
View ArticleWrong result depending on order of component in DT
Hi,The following code creates wrong outputs.! Compilation & excecution: ifort main.f90 ; ./a.out Module Universal_Class implicit none Type ,abstract :: Universal_Type End Type End Module Module...
View Articlecompiling 32 bit sequentially on 64 OS
I want to compile staticaly a 32 bit source code sequentially on 64 bit OS (Ubuntu 14.04) using ifort V-16 (parallel)pl give the detailed commandanand
View Articlepure requirement for contained procedures of a PURE procedure
A question for a customer for which I don't have a good answer. This is one for Doctor FortranThe question posed: "Why is it that contained functions in pure routines need to be pure? If they capture...
View ArticleAttempting to read a record with a smaller array length
Hi everyone,I have a very strange problem while reading a previously written file. I write an unformatted file using the following code !...... SOME PREVIOUS CODE COMPLEX(KIND=8), ALLOCATABLE,...
View ArticleParallel Studio XE 2016 Update 2 Redistributable
I have just downloaded Intel Parallel Studio XE 2016 Update 2 Composer Edition. Where can I find the redistributable exe or msm files that go with them? Marc
View ArticleInterop C and Fortran problem
I cannot figure out, why I am not able to pass len argument correctly into c function from fortran (gfortran + gcc handle this code without any obvious problem)simple C function#include...
View ArticleRecommended method for creating an array of variable length strings
Dear forum members,I would be grateful for advice on the "best" practice for creating a dynamic array of Variable Length Strings (VLS) in Fortran. The following is a working skeleton implementation of...
View Articleunresolved external symbol
Hi,I have been hired (I am a freelance) to 'convert' functions written in a strange and very slow language named R into FORTRAN. Some works have been done previously and we have a large amount of...
View ArticleUp-DOWN SPIN CONTROL Callback
I am looking for any code fragment that shows the proper use for a callback routine for a spin control. I've read https://software.intel.com/en-us/node/535415 but it does not help. My shot, which...
View ArticleIMSL new version
Hello,I use the Intel FORTRAN Composer or the Intel Prallel Studio XE Composer for FORTRAN Windows since 2011. I bought every year a new version including IMSL. However, sinnce a few years their are no...
View ArticleRelocation truncated to fit
Hi,I tried to increase the size of some arrays in COMMON, but when I compile the code I got many messages like this:for_diags_intel.c:(.text+0x13aa): relocation truncated to fit: R_X86_64_PC32 against...
View ArticleProtected variables in modules with sub-modules
module mymod implicit none integer, protected :: n interface module subroutine set_n(i) integer, intent(in) :: i end subroutine set_n end interface end module mymod submodule(mymod) mymod_i contains...
View Articlecreating pdb file by ifort command
I am developing an UMAT subroutine for abaqus, which is a fortran code. I want to debug the soubroutine, so I need to compile it and generate the .obj and .pdb files. but when I use the ifort command...
View ArticleAnother bad compile message
I dont understand why this gives me error #5508.Seems pretty straightforward. I think the compiler is overloaded,I could try splitting the source into two or more smaller ones. I uploaded 2 source...
View ArticleDefault ivf compiler
how do i make IA64 the default compiler in VS2013 while compiling Fortran programs ?
View Article