deallocate linked list
Dear all,I have a question. Is there any fast way to deallocate a linked list or I have to to it manually?A sort of DEALLOCATE(linkedlistname)Thanks a lot
View ArticleDCOPY Fortran Subroutine
Hello,Does DCOPY have some lenght limit? In my fortran code I copy a 65000x2000 matrix using this subroutine, and I think that it is generating some problems in my results.Thanks!
View Articleusing integers as booleans
The legacy application that I am porting from g77 to Intel Fortran has many tests of the form:IF (INTEGER_VAR)and, since the FORTRAN is generated by RATFOR, many more tests of the formIF...
View ArticleFortran derived type arguments in DLL subroutines
I'm upgrading an application to allow for dynamically-loaded DLLs created by the user. (I'm basing it on the DynamicLoad Intel example). For my case, one of the arguments to the main subroutine that...
View ArticleINTERFACE and combining several F90 files
Hi,1) I'm relative new to Fortran and I have a series of questions to fortran that may seem very simple to your experts. I'm aware that this line of questions may seem inappropiate for this forum in...
View ArticleHelp with terminating a process
Hi,I am trying to create a routine that launches an application from within my code. However, in certain conditions (unfortunately not all of them avoidable), the external application goes...
View ArticleDiagnostic 15543: loop was not vectorized: loop with function call not...
Cause:A function call inside the loop is preventing auto-vectorization.Example:Program foo implicit none integer, parameter :: nx = 100000000 real(8) :: x, xp, sumx integer :: i interface real(8)...
View Articleoptimization with debug symbols. is that "-g -O3" or "-O3 -g" ?
Just wanted to verify what the precedence order is on compiler flags for the intel compilers is.is the precedence that the last flag specified on the command line the one that wins?I simply want to...
View ArticleDifferent FORTRAN versions for Different Visual Studio Versions
I currently have Microsoft Visual Studio 2008 installed with Intel FORTRAN 11.1 and have projects with that setup. I am setting up Microsoft Visual Studio 2013 with Visual FORTRAN Composer XE 2013....
View ArticleF90sql supports java or not
Dear Sir/Madam,I would like to know whether can I extract data from f90sql using java? If yes what should i need to do please suggest me. Thanks in advance.Regards,Neha
View Articlebuild _fftpack failed
with below command to build part of scipy failed:"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\amd64\link.exe" /DLL...
View ArticleBuild Scipy With MKL failed
I use command to build numpy first:python %MYPWD%/%NUMPY_VER%/setup.py config --compiler=msvc build_clib --compiler=msvc build_extthe site.cfg content is:[mkl] library_dirs = C:\Program Files...
View ArticleFortran Dynamic Allocation Array
Hithe problem is that How can i increase a (Fortran) allocated array size in a program?in program like this:... real(8), allocatable, dimension(:) :: x ... ! programs body N=100 allocate(x(N)) ......
View ArticleCompilation error ; breakpoint 0*7c90120e
Hi everyone,I've received a program that seems to work correctly on windows 7 (code block+fortran)I've ran it on windows xp (vitrual machine), i've got these errors.1) forrt1: severe 29: file not...
View ArticleConditional Shared/Private in OpenMP parallel region?
Steve, Colleagues:For an OpenMP parallel-do loop, I would like an array to be either private or shared, depending on a determination that includes an assessment of its size and the computational work...
View ArticleOpenMP crash with derived type
I am using Fortran Compiler XE 15.0.1.148 .When I compile and run the following simple program in Debug mode, it runs fine without any errors or warnings. However, it crashes if I compile it in...
View ArticleWhere did it put the output files? Bogus location - -
I moved some source code to a folder on my desktop, and did a project build using those.It did the build OK, but after searching for an hour, I could not find out where it put the output files.I am...
View ArticleDebugging -debug:minimal code with VS2013
When using VS2013 Update 4, for Fortran source files compiled with -debug:minimal we lost the ability to set breakpoints or have the source file automatically opened in the IDE with Break All. The...
View ArticleUsing DwmEnableComposition
I have a Fortran application with an embedded OpenGL window. I need to call DwmEnableComposition to turn off Aero so that the buttons refresh correctly but I can't work out how to do it. I've added...
View Articlestack overflow in write-stmt with 2d-array
Dear developers,I observed a bug under Win7(64-bit) with Intel-12.1.2 Fortran-compiler :In a write-stmt the Intel-compiler uses the stack, where it is not necessary, and then (certainly) aborts with...
View Article