Skip to content

Commit

Permalink
add keyword parallel for parallelized modules (#2322)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrasovaa committed Apr 26, 2022
1 parent 7a0780c commit 7e2a63f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 3 deletions.
5 changes: 3 additions & 2 deletions raster/r.patch/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
* Glynn Clements <glynn gclements.plus.com>,
* Jachym Cepicky <jachym les-ejk.cz>,
* Jan-Oliver Wagner <jan intevation.de>,
* Huidae Cho <grass4u gmail.com>
* Huidae Cho <grass4u gmail.com>,
* Aaron Saw Min Sern (OpenMP parallelization)
* PURPOSE:
* COPYRIGHT: (C) 1999-2014 by the GRASS Development Team
* COPYRIGHT: (C) 1999-2022 by the GRASS Development Team
*
* This program is free software under the GNU General Public
* License (>=v2). Read the file COPYING that comes with GRASS
Expand Down
1 change: 1 addition & 0 deletions raster/r.sim/r.sim.sediment/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ int main(int argc, char *argv[])
G_add_keyword(_("erosion"));
G_add_keyword(_("deposition"));
G_add_keyword(_("model"));
G_add_keyword(_("parallel"));
module->description =
_("Sediment transport and erosion/deposition simulation "
"using path sampling method (SIMWE).");
Expand Down
1 change: 1 addition & 0 deletions raster/r.sim/r.sim.water/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ int main(int argc, char *argv[])
G_add_keyword(_("flow"));
G_add_keyword(_("overland flow"));
G_add_keyword(_("model"));
G_add_keyword(_("parallel"));
module->description =
_("Overland flow hydrologic simulation using "
"path sampling method (SIMWE).");
Expand Down
4 changes: 3 additions & 1 deletion raster/r.slope.aspect/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
* Jachym Cepicky <jachym les-ejk.cz>,
* Jan-Oliver Wagner <jan intevation.de>,
* Radim Blazek <radim.blazek gmail.com>
* Aaron Saw Min Sern (OpenMP parallelization)
* PURPOSE: generates raster maps of slope, aspect, curvatures and
* first and second order partial derivatives from a raster map
* of true elevation values
* COPYRIGHT: (C) 1999-2011 by the GRASS Development Team
* COPYRIGHT: (C) 1999-2022 by the GRASS Development Team
*
* This program is free software under the GNU General Public
* License (>=v2). Read the file COPYING that comes with GRASS
Expand Down Expand Up @@ -170,6 +171,7 @@ int main(int argc, char *argv[])
G_add_keyword(_("aspect"));
G_add_keyword(_("slope"));
G_add_keyword(_("curvature"));
G_add_keyword(_("parallel"));
module->label =
_("Generates raster maps of slope, aspect, curvatures and "
"partial derivatives from an elevation raster map.");
Expand Down
1 change: 1 addition & 0 deletions raster/r.sun/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ int main(int argc, char *argv[])
G_add_keyword(_("solar"));
G_add_keyword(_("sun energy"));
G_add_keyword(_("shadow"));
G_add_keyword(_("parallel"));
module->label = _("Solar irradiance and irradiation model.");
module->description =
_("Computes direct (beam), diffuse and reflected solar irradiation raster "
Expand Down
1 change: 1 addition & 0 deletions vector/v.surf.rst/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ int main(int argc, char *argv[])
G_add_keyword(_("RST"));
G_add_keyword(_("3D"));
G_add_keyword(_("no-data filling"));
G_add_keyword(_("parallel"));
module->label = _("Performs surface interpolation from vector points map by splines.");
module->description =
_("Spatial approximation and topographic analysis from given "
Expand Down

0 comments on commit 7e2a63f

Please sign in to comment.