Questions tagged [pgi-visual-fortran]

PGI Visual Fortran is PGI's Fortran extension to Visual Studio.

8 questions
2
votes
1 answer

Bound checking for empty arrays --- behavior of various compilers

Update 20210914: Absoft support confirms that the behavior of af95 / af90 described below is unintended and indeed a bug. Absoft developers will work to resolve it. The other compilers act correctly in this regard. Thank @Vladimir F for the answer,…
2
votes
2 answers

Compile-time warning to declare array as sequence

I'm encountering a compile-time warning when passing arrays to MPI calls by referencing their first value. Consider the following example code, which is the leanest I could get: module mymod implicit none contains subroutine…
Ross
  • 2,130
  • 14
  • 25
1
vote
1 answer

Unresolved external symbol MPI_INIT when compiling MPI with PGI Visual Fortran

I am using Visual Fortran and I'm trying to implement a very simple code using MPI. program hello_world include 'C:\Program Files (x86)\Microsoft SDKs\MPI\Include\mpif.h' integer ierr call MPI_INIT ( ierr ) write(*,*) 'Hello world' call MPI_FINALIZE…
1
vote
0 answers

forrtl severe(193):Run-time Check Failure. The variable \'TRNSYSFUNCTIONS_mp_GETOUTPUT VALUE$GETOUTPUT VALUE\' is being used without being initiated

I am trying to simulate my FMU created from TRNSYS using pyFMI. When I try to simulate it, it prompts the following message: "forrtl severe(193):Run-time Check Failure. The variable \'TRNSYSFUNCTIONS_mp_GETOUTPUT VALUE$GETOUTPUT VALUE\' is being…
Nauman
  • 11
  • 2
0
votes
0 answers

Creating a new project Visual Studio 2015 and PGI Visual Fortran

I have installed Visual Studio and PGI Visual Fortran 18.5 on my machine. Installation went smoothly, but when I try to create a new project on Visual Studio I get the following error: "C:\Users\...\AppData\Local\Temp\...\PVF...pvfproj cannot be…
phdstudent
  • 1,060
  • 20
  • 41
0
votes
0 answers

Installing gfortran on PGI in Windows

I am trying to get into learning Fortran for research and choosing to use PGI community edition 2015. I have installed the necessary Visual studios/other packages so the compiler works. Since PGI uses some Cygwin components, how do I download the…
Partth
  • 19
  • 3
0
votes
1 answer

CuSolver Sparse interface on Fortran

I'm trying to write a program to interface cusolverSp onto fortran. although I'm no stranger for coding cuda in C, I'm unsure how to get it on fortran. The following is my code: ! Fortran Console Application ! module cuda_cusolverSP …
ceeely
  • 135
  • 1
  • 10
0
votes
0 answers

Can I profile a normal/sequential (not parallelized) fortran .f90 file in PGI Visual Fortran 2015? I only have f90 files, no executables

How can I profile a fortran .f90 file in PGI Visual Fortran 2015? I only have f90 files, no executables in my project.