0
votes
1answer
49 views

Vim syntax highlighting for multiline fortran openmp directives

I'm using modern fortran for doing parallel programming. I'm using vim and it's been really annoying me that the fortran.vim syntax files don't seem to handle compiler directives like !$omp or !dir$. ...
0
votes
2answers
67 views

OpenMP FORTRAN issue with privates

In the following code, when I am passing the variable "aa" as private, the results are getting bad. The code works fine how it is posted, but when I replace the line !$OMP PARALLEL ...
0
votes
1answer
35 views

Thread issues with OpenMP on FORTRAN90?

The number of files that are getting written is always less than the number of threads. Logically for me, when I can have 4 threads and the CPU is working at 400%, I was expecting the number of files ...
0
votes
1answer
69 views

Array and subroutine help in fortran90

I have a piece of experimental code that works perfectly with serial compilation and execution. When I compile it with openmp option on ifort (on ubuntu), the compilation goes on fine but the ...
0
votes
2answers
57 views

OpenMP ensemble execution

I am new to the OpenMP and at the moment with no access to my workstation where I can check the details. Had a quick question to set the basics right before moving on to the hands on part. Suppose I ...
1
vote
3answers
230 views

Loop in fortran with openmp and allocatable arrays

I like to do this: program main implicit none integer l integer, allocatable, dimension(:) :: array allocate(array(10)) array = 0 !$omp parallel do private(array) do l = 1, 10 ...
1
vote
2answers
143 views

The best way to solve Segmentation fault in OpenMP

I'm try to parallelize a big program in Fortran90 using OpenMP. I get segmentation fault errors all the time. I am wondering if there is any easy way to fix them. What do you do if you have a ...
2
votes
1answer
353 views

OpenMP Segmentation fault: 11

When I try to parallelize my program in Fortran90 by OpenMP, I get a segmentation fault error. !$OMP PARALLEL DO NUM_THREADS(4) & !$OMP PRIVATE(numstrain, i) do irep = 1, nrep ...
0
votes
1answer
229 views

OpenMP and array summation with Fortran 90

I'm trying to to compute pressure tensor of a crystal structure. To do so, I have to go throught all pair of particle like in the simplify code below do i=1, atom_number ! sum over atoms i ...
0
votes
2answers
387 views

OpenMP Crashing with Large Arrays

I'm using fortran 90 and openmp, but I keep encountering an issue when I try to parallelize loops using openmp when there are large arrays. For example, the following code: PROGRAM main IMPLICIT NONE ...
1
vote
2answers
121 views

why do omp functions not work when constants are declared in a module?

i have a module 'gvars' defined for my global variable declarations. when i define integer :: nthreads, max_threads, tid, omp_get_max_threads, omp_get_num_threads, omp_get_thread_num inside of my ...
1
vote
1answer
764 views

Fortran 90/95 OpenMP reduction with an array (sum)

I'm working on adding some OpenMP directives to a large set of fairly expensive nested loops. I believe I need to use a reduction clause with my directive since the operations on the array on not ...
1
vote
2answers
304 views

Low Performance of Nested DO Loop using OpenMP for FORTRAN90

I am trying to parallel a portion of my code which is as follows !$OMP PARALLEL PRIVATE(j,x,y,xnew, ynew) SHARED(xDim, yDim, ex, f, fplus) !$OMP DO DO j = 1, 8 DO y=1, yDim ...
5
votes
3answers
221 views

Program stalls during long runs

Fixed: Well this seems a bit silly. Turns out top was not displaying correctly and programs actually continue to run. Perhaps the CPU time became too large to display? Either way, the program seems ...