Оптимизировали, оптимизировали, да не выоптимизировали!
Оптимизация? Конечно, каждый сталкивался с данной задачей при разработке своих, сколь-нибудь значительных, требующих определённых вычислений, приложений. При этом способов оптимизировать код существует...
View ArticleFree Intel Visual Fortran for students!
Intel Fortran is now available under a free, non-commercial license for qualified students on Linux, OS X and WIndows. See https://software.intel.com/en-us/qualify-for-free-software/student for more...
View ArticleFix for 2015 Update 4 Composer Edition install exiting
Some users may experience a problem where installing Intel Parallel Studio XE 2015 Composer Edition for Fortran Windows Update 4 exits the installer after clicking Next on the first install screen....
View ArticleWhat's TYPE accept
I found these two TYPE declarations are not welcome:1. EXTERNAL in type is not acceptTYPE myvar EXTERNAL :: fun END TYPE2. this trick is not allowedTYPE myvec INTEGER :: n REAL*8, DIMENSION(1:n) :: x...
View ArticleLNK2019 error
I am in the process of converting from Compaq Visual Fortran to Intel Visual Fortran. I am trying to run simple "hello_world" program.My program complies just fine with: "Ifort /c...
View ArticleDLLEXPORT and unresolved external reference
I'm compiling a fortran DLL project. I have two subroutines in the same .f file. The first one shown below calls the second one, but I'm getting unresolved external symbol. The problem must be how I'm...
View ArticlePolymorphic dummy arguments and ICE
This discussion is going to be generic until I can create a suitable small test case. I am just hoping somebody has seen this problem before and can point me in the right direction.I am attempting to...
View ArticleMultithreaded vs Multithread DLL
The following problem, involving "Multithreaded" vs. "Multithread Dll" Runtime Libraries, is not critical to anything I'm doing, but my curiosity is aroused. The program is written in .f90...
View Articleassigning input file to stdin when debugging fortran in intel visual studio
I want to run a fortran code in debug mode in visual studio. the code reads input from stdin (unif 5). I would like it to read from an input file. Can you tell me how to assign my input file to stdin?
View ArticleLinking IVF Compiled DLL to Qt Application
Hi everybody, This is my first attempt at library assembly, so please have mercy! Let me also start by saying to Steve Lionel: Wow, you answer a lot, I hope they are paying you well there at Intel!I am...
View ArticleReference Material for Visual Fortran Windowing Applications
Hello, I am attempting to create a simple windowing application in Fortran using Visual Studio. I have experience with C and BASIC, but I am completely new to Fortran. In order to create my...
View ArticleAccess 2D Fortran array from C - odd behaviour
This topic must have been beaten to death, but the issue I've encountered seems very odd.Here is the C code:void test_array(int *, int *, double **); // To test accessing a Fortran 2D array.void...
View ArticleSlow debugging when variables in watch window using VS2008 with Windows 8.1
This will not be an easy question to handle for anyone as it involves a lot of variables. We shifted on to Windows 8.1 and started observing this issue.OS: Windows 8.1 EnterpriseVS: Visual Studio 2008...
View ArticleCompiling without MAIN program to Link with ABAQUS
Greetings,I'm writing an ABAQUS FILM user subroutine. The subroutine uses many supporting modules to get the job done, and works well with a dummy driver. I'm most experienced writing stand-alone...
View ArticleUnexpected compiler error with the use of a type-bound procedure returning a...
The compiler error with the following code appears to be incorrect:module m implicit none private type, public :: t private integer, pointer :: m_i contains private procedure, pass(this), public ::...
View Article