Skip to content

Commit

Permalink
double the default cpu and ram
Browse files Browse the repository at this point in the history
  • Loading branch information
dmd committed Apr 1, 2024
1 parent fe9d98b commit bd93118
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions micc_fmriprep.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,15 +197,15 @@ def is_dir(dirname):
)

parser.add_argument(
"--ncpus", help="Number of threads and cores. (Default: 4)", type=int, default=4
"--ncpus", help="Number of threads and cores. (Default: 8)", type=int, default=8
)

parser.add_argument(
"--dummy-scans", help="Number of dummy scans. (Default: 0)", type=int
)

parser.add_argument(
"--ramsize", help="RAM size to use, in GB. (Default: 8)", type=int, default=8
"--ramsize", help="RAM size to use, in GB. (Default: 16)", type=int, default=16
)

parser.add_argument(
Expand Down

0 comments on commit bd93118

Please sign in to comment.