New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
m2.f90 in vendors/t/fcm-make/23-build-omp/src – NEMO

source: vendors/t/fcm-make/23-build-omp/src/m2.f90 @ 10669

Last change on this file since 10669 was 10669, checked in by nicolasmartin, 5 years ago

Import latest FCM release from Github into the repository for testing

File size: 254 bytes
Line 
1module m2
2contains
3subroutine s2(n, z, y)
4integer, intent(in) :: n
5real, intent(out) :: z(:)
6real, intent(in) :: y(:)
7integer :: i
8!$omp parallel do shared(z)
9do i = 1, n
10    z(i) = y(i) * 3.0
11end do
12!$omp end parallel do
13end subroutine s2
14end module m2
Note: See TracBrowser for help on using the repository browser.