Merge pull request #1549 from martin-frbg/fix_ompcheck
Drop C-style "L" suffx from OPENMP version number tests in the LAPACK source
This commit is contained in:
commit
6fff8c626a
|
@ -512,7 +512,7 @@ C END IF
|
|||
*
|
||||
* Call the kernel
|
||||
*
|
||||
#if defined(_OPENMP) && _OPENMP >= 201307L
|
||||
#if defined(_OPENMP) && _OPENMP >= 201307
|
||||
IF( TTYPE.NE.1 ) THEN
|
||||
!$OMP TASK DEPEND(in:WORK(MYID+SHIFT-1))
|
||||
!$OMP$ DEPEND(in:WORK(MYID-1))
|
||||
|
|
|
@ -481,7 +481,7 @@
|
|||
*
|
||||
* Call the kernel
|
||||
*
|
||||
#if defined(_OPENMP) && _OPENMP >= 201307L
|
||||
#if defined(_OPENMP) && _OPENMP >= 201307
|
||||
IF( TTYPE.NE.1 ) THEN
|
||||
!$OMP TASK DEPEND(in:WORK(MYID+SHIFT-1))
|
||||
!$OMP$ DEPEND(in:WORK(MYID-1))
|
||||
|
|
|
@ -512,7 +512,7 @@ C END IF
|
|||
*
|
||||
* Call the kernel
|
||||
*
|
||||
#if defined(_OPENMP) && _OPENMP >= 201307L
|
||||
#if defined(_OPENMP) && _OPENMP >= 201307
|
||||
|
||||
IF( TTYPE.NE.1 ) THEN
|
||||
!$OMP TASK DEPEND(in:WORK(MYID+SHIFT-1))
|
||||
|
|
Loading…
Reference in New Issue