Skip to content

Commit e731299

Browse files
committed
Fix links and typos in README.md
1 parent 246f866 commit e731299

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ OpenCoarrays
1515
[![Gitter](https://img.shields.io/gitter/room/sourceryinstitute/opencoarrays.svg?style=flat-square)](https://gitter.im/sourceryinstitute/opencoarrays)
1616
[![GitHub license][license img]](./LICENSE)
1717
[![GitHub release][release img]](https://github.com/sourceryinstitute/OpenCoarrays/releases/latest)
18-
[![homebrew](https://img.shields.io/homebrew/v/opencoarrays.svg?style=flat-square)](http://braumeister.org/formula/opencoarrays)
18+
[![homebrew](https://img.shields.io/homebrew/v/opencoarrays.svg?style=flat-square)](https://formulae.brew.sh/formula/opencoarrays)
1919
[![Download as PDF][pdf img]](https://md2pdf.herokuapp.com/sourceryinstitute/OpenCoarrays/blob/master/README.pdf)
2020
[![Twitter URL][twitter img]][default tweet]
2121

2222
[News](#news) | [Overview](#overview) | [Downloads](#downloads) |
2323
[Compatibility](#compatibility) | [Prerequisites](#prerequisites) |
2424
[Installation](#installation) | [Getting Started](#getting-started) |
2525
[Contributing](#contributing) | [Status](#status)
26-
[Support](#support) | [Acknowledgements](#acknowledgements) | [Donate](#donate)
26+
[Support](#support) | [Acknowledgments](#acknowledgments) | [Donate](#donate)
2727

2828
</div>
2929

@@ -42,13 +42,14 @@ parallel application binary interface (ABI) that abstracts away the
4242
underlying parallel programming model, which can be the Message
4343
Passing Interface ([MPI]) or [OpenSHMEM]. Parallel Fortran 2018
4444
programs may be written and compiled into object files once and
45-
then linked or relinked to either MPI or [OpenSHMEM] without modifying
45+
then linked or re-linked to either MPI or [OpenSHMEM] without modifying
4646
or recompiling the Fortran source. Not a single line of source code
4747
need change to switch parallel programming models. The default
4848
programming model is MPI because it provides the broadest capability
4949
for supporting Fortran 2018 features. However, having the option to
5050
change parallel programming models at link-time may enhance portability
51-
and performance (see [Rouson et al. (2017)] and [Rasmussen et al. (2018)]).
51+
and performance (see [Rouson et al. (2017)]).<!-- and [Rasmussen et al. (2018)]). -->
52+
<!-- Rasmussen et al. link is to a private repo that no one can access -->
5253

5354
OpenCoarrays provides a compiler wrapper (`caf`), parallel runtime
5455
libraries (`libcaf_mpi` and `libcaf_openshmem`), and a parallel
@@ -115,7 +116,7 @@ Support
115116

116117
Please submit bug reports and feature requests via our [Issues] page.
117118

118-
Acknowledgements
119+
Acknowledgments
119120
----------------
120121

121122
We gratefully acknowledge support from the following institutions:
@@ -164,35 +165,34 @@ to aid in development efforts.
164165
[Prerequisites]: #prerequisites
165166
[Installation]: #installation
166167
[Contributing]: #contributing
167-
[Acknowledgements]: #acknowledgements
168+
[Acknowledgments]: #acknowledgments
168169

169-
[Fortran 2018]: http://isotc.iso.org/livelink/livelink?func=ll&objId=19442438&objAction=Open&viewType=1
170+
[Fortran 2018]: https://isotc.iso.org/livelink/livelink/nfetch/-8919044/8919782/8919787/18770498/ISO%2DIECJTC1%2DSC22%2DWG5_N2146_Fortran_2018_Draft_International_Standard_for_Ballot.pdf?nodeid=19442438&vernum=0
170171
[Rouson et al. (2017)]: https://github.com/sourceryinstitute/coarray-icar-paw17/blob/master/main.pdf
171-
[Rasmussen et al. (2018)]: https://github.com/scrasmussen/coarray-icar-paw18/blob/master/main.pdf
172+
<!--[Rasmussen et al. (2018)]: https://github.com/scrasmussen/coarray-icar-paw18/blob/master/main.pdf-->
172173
[Arm]: https://www.arm.com
173-
[PAW-ATM Workshop]: http://sourceryinstitute.github.io/PAW/
174-
[Writing Fortran 2018 Today]: https://writing-fortran-2018-today.eventbrite.com
174+
[PAW-ATM Workshop]: https://sourceryinstitute.github.io/PAW/
175175
[Intel Speakerships at SC18]: https://easychair.org/cfp/IntelSpeakershipsatSC18
176176

177-
[OpenSHMEM]: http://www.openshmem.org
177+
[OpenSHMEM]: http://www.openshmem.org/site/
178178
[sourcery-institute logo]: http://www.sourceryinstitute.org/uploads/4/9/9/6/49967347/sourcery-logo-rgb-hi-rez-1.png
179179
[OpenCoarrays]: http://www.opencoarrays.org
180180
[ABI]: https://gcc.gnu.org/onlinedocs/gfortran/Coarray-Programming.html#Coarray-Programming
181-
[TS 18508]: http://isotc.iso.org/livelink/livelink/nfetch/-8919044/8919782/8919787/16681398/ISO%2DIECJTC1%2DSC22%2DWG5_N2027_Draft_TS_18508_Additional_Paralle.pdf?nodeid=16769292&vernum=0
182-
[MPI]: http://mpi-forum.org
183-
[GCC]: http://gcc.gnu.org
181+
[TS 18508]: https://isotc.iso.org/livelink/livelink/nfetch/-8919044/8919782/8919787/16681398/ISO%2DIECJTC1%2DSC22%2DWG5_N2027_Draft_TS_18508_Additional_Paralle.pdf?nodeid=16769292&vernum=0
182+
[MPI]: https://www.mpi-forum.org/
183+
[GCC]: https://gcc.gnu.org
184184
[gfortran]: https://gcc.gnu.org/wiki/GFortran
185185
[opencoarrays module]: ./src/extensions/opencoarrays.F90
186-
[MPICH]: http://www.mpich.org
186+
[MPICH]: https://www.mpich.org
187187
[MVAPICH]: http://mvapich.cse.ohio-state.edu
188188
[OpenMPI]: https://www.open-mpi.org
189189
[Sourcery, Inc.]: http://www.sourceryinstitute.org
190-
[Google]: http://www.google.com
190+
[Google]: https://www.google.com
191191
[CINECA]: https://www.cineca.it/en
192-
[NERSC]: http://www.nersc.gov
192+
[NERSC]: https://www.nersc.gov
193193
[National Center for Atmospheric Research]: https://ncar.ucar.edu
194194
[INSTALL.md]: ./INSTALL.md
195-
[GASNet]: http://gasnet.lbl.gov
195+
[GASNet]: https://gasnet.lbl.gov
196196
[CONTRIBUTING.md]: ./CONTRIBUTING.md
197197
[GETTING_STARTED.md]: ./GETTING_STARTED.md
198198
[Google Groups]: https://groups.google.com/forum/#!homeredir
@@ -206,7 +206,7 @@ to aid in development efforts.
206206

207207
[try OpenCoarrays online]: https://bit.ly/CAF-Binder
208208
[notebook kernel]: https://github.com/sourceryinstitute/jupyter-CAF-kernel
209-
[Binder]: https://beta.mybinder.org
209+
[Binder]: https://mybinder.org
210210
[Jupyter]: https://jupyter.org
211211
[index.ipynb]: https://nbviewer.jupyter.org/github/sourceryinstitute/jupyter-CAF-kernel/blob/master/index.ipynb
212212

@@ -217,6 +217,6 @@ to aid in development efforts.
217217
[release img]: https://img.shields.io/github/release/sourceryinstitute/OpenCoarrays.svg?style=flat-square "Latest release badge"
218218
[pdf img]: https://img.shields.io/badge/PDF-README.md-6C2DC7.svg?style=flat-square "Download this readme as a PDF"
219219
[twitter img]: https://img.shields.io/twitter/url/http/shields.io.svg?style=social
220-
[Writing Fortran 2018 Today]: https://writing-fortran-2018-today.eventbrite.com
220+
[Writing Fortran 2018 Today]: https://www.eventbrite.com/e/writing-fortran-2018-today-object-oriented-parallel-programming-tickets-48982176007
221221

222222
[default tweet]: https://twitter.com/intent/tweet?hashtags=HPC,Fortran,PGAS&related=zbeekman,gnutools,HPCwire,HPC_Guru,hpcprogrammer,SciNetHPC,DegenerateConic,jeffdotscience,travisci&text=Stop%20programming%20w%2F%20the%20%23MPI%20docs%20in%20your%20lap%2C%20try%20Coarray%20Fortran%20w%2F%20OpenCoarrays%20%26%20GFortran!&url=https%3A//github.com/sourceryinstitute/OpenCoarrays

0 commit comments

Comments
 (0)