Skip to content

Commit

Permalink
Merge pull request #1373 from jedwards4b/pio_adjust_indentation_fix
Browse files Browse the repository at this point in the history
Fix indentation problem in case_setup

Test suite: scripts_regression_tests + several hand tests with different pio_stride and pio_numtasks values.
Test baseline:
Test namelist changes:
Test status: bit for bit

Fixes #1372

User interface changes?:

Code review:
  • Loading branch information
jayeshkrishna authored Apr 18, 2017
2 parents ca289d9 + fbcb8e8 commit a99eab3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/lib/CIME/case_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,9 @@ def adjust_pio_layout(case, new_pio_stride):
if pio_stride != new_stride:
logger.info("Resetting PIO_STRIDE_%s to %s"%(comp, new_stride))
case.set_value("PIO_STRIDE_%s"%comp, new_stride)
if pio_numtasks != new_numtasks:
logger.info("Resetting PIO_NUMTASKS_%s to %s"%(comp, new_numtasks))
case.set_value("PIO_NUMTASKS_%s"%comp, new_numtasks)
if pio_numtasks != new_numtasks:
logger.info("Resetting PIO_NUMTASKS_%s to %s"%(comp, new_numtasks))
case.set_value("PIO_NUMTASKS_%s"%comp, new_numtasks)


###############################################################################
Expand Down

0 comments on commit a99eab3

Please sign in to comment.