You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will work without any additional libraries and currently under active development, but does not yet have all
709
714
features implemented.
710
715
711
716
## Using ifort
712
717
713
-
Refer to the [ifort documentation](https://software.intel.com/content/www/us/en/develop/documentation/fortran-compiler-oneapi-dev-guide-and-reference/top.html)
714
-
for details.
718
+
If you use `ifort`, you can use the `-coarray` option, as in
719
+
```
720
+
$ ifort -coarray hello.f90
721
+
```
722
+
and then run the executable. This will give you the shared memory
723
+
version. For more details refer to the manpage of ifort.
715
724
716
725
## Using NAG Fortran
717
726
718
-
Refer to the [NAG Fortran compiler documentation](https://www.nag.com/content/nag-fortran-compiler) for details.
727
+
If you use `nagfor`, you can use the `-coarray` option, as in
728
+
```
729
+
$ nagfor -coarray hello.f90
730
+
```
731
+
and then run the executable. This will give yo the shared memory
732
+
version. For more details refert to the manpage of nagfor.
0 commit comments