diff options
author | Mamy Ratsimbazafy <mratsim@users.noreply.github.com> | 2018-10-25 18:09:35 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-10-25 18:09:35 +0200 |
commit | 5b977627870d925e79dca1dd5cee615015314b5d (patch) | |
tree | 32fbf5d09c2568b389cab979c684049239532aac /changelog.md | |
parent | c844a9169ccb445cc16584db4f434074614b357e (diff) | |
download | Nim-5b977627870d925e79dca1dd5cee615015314b5d.tar.gz |
Openmp parallel iterator improvements (#9493)
* More flexibility in OpenMP pragma * Use static to constrain to compile-time annotation string * Update changelog with OpenMP change
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index e9e48d035..b7fdc5a42 100644 --- a/changelog.md +++ b/changelog.md @@ -11,6 +11,12 @@ use `editdistance.editDistance` or `editdistance.editDistanceAscii` instead. +- The OpenMP parallel iterator \``||`\` now supports any `#pragma omp directives` + and not just `#pragma omp parallel for`. See [OpenMP documentation](https://www.openmp.org/wp-content/uploads/OpenMP-4.5-1115-CPP-web.pdf). + + The default annotation is `parallel for`, if you used OpenMP without annotation + the change is transparent, if you used annotations you will have to prefix + your previous annotations with `parallel for`. #### Breaking changes in the standard library |