Skip to content

Commit

Permalink
Correction: run_all does not use OpenMP (#72)
Browse files Browse the repository at this point in the history
* - comments correction in run_all

* - re-introduce comment on OpenMP
  • Loading branch information
PaulBautin authored Sep 4, 2020
1 parent 3fb786d commit fa7b3f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions run_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8
#########################################################################################
#
# Break down OpenMP jobs across sub-datasets
# Break down multiprocessing jobs across sub-datasets
# example: python run_all.py -config config_sct_run_batch.yml
#
#########################################################################################
Expand All @@ -15,7 +15,7 @@
def get_parser(mandatory=None):
"""parser function"""
parser = argparse.ArgumentParser(
description="Break down OpenMP jobs across sub-datasets",
description="Break down multiprocessing jobs across sub-datasets",
formatter_class=argparse.RawTextHelpFormatter,
prog=os.path.basename(__file__).strip(".py")
)
Expand All @@ -36,7 +36,7 @@ def get_parser(mandatory=None):
)
parser.add_argument(
'-n',
help="Break down OpenMP jobs across sub-datasets of n subjects. Adjust 'n' based on the number of CPU cores "
help="Break down multiprocessing jobs across sub-datasets of n subjects. Adjust 'n' based on the number of CPU cores "
"available",
type=int,
default=32
Expand Down

0 comments on commit fa7b3f2

Please sign in to comment.