|
7 | 7 | import overrides
|
8 | 8 | import third_party_utils
|
9 | 9 |
|
10 |
| -from utils import error, memoize |
| 10 | +from utils import error, memoize, check_valid_var |
11 | 11 |
|
12 | 12 | @memoize
|
13 | 13 | def _find_pmi2():
|
@@ -41,33 +41,30 @@ def get():
|
41 | 41 | return 'none'
|
42 | 42 |
|
43 | 43 | oob_val = overrides.get('CHPL_COMM_OFI_OOB')
|
44 |
| - if oob_val: |
45 |
| - if oob_val not in ('mpi', 'pmi2', 'sockets'): |
46 |
| - error("CHPL_COMM_OFI_OOB must be 'mpi', 'pmi2', or 'sockets'") |
47 |
| - return oob_val |
48 |
| - |
49 |
| - # |
50 |
| - # By default, use PMI2 out-of-band support on Cray X* and HPE Cray EX |
51 |
| - # systems, MPI on other Cray systems or with an MPI-based launcher, |
52 |
| - # and "sockets" otherwise. |
53 |
| - # |
54 |
| - platform_val = chpl_platform.get('target') |
55 |
| - launcher_val = chpl_launcher.get() |
56 |
| - if 'cray-x' in platform_val or chpl_platform.is_hpe_cray('target'): |
57 |
| - oob_val = 'pmi2' |
58 |
| - elif 'cray-' in platform_val: |
59 |
| - oob_val = 'mpi' |
60 |
| - elif 'mpi' in launcher_val: |
61 |
| - oob_val = 'mpi' |
62 |
| - else: |
63 |
| - import chpl_compiler |
64 |
| - if _find_pmi2() is not None: |
65 |
| - oob_val = 'pmi2' |
66 |
| - elif "-lpmi2" in chpl_compiler.get_system_link_args('target'): |
| 44 | + if not oob_val: |
| 45 | + # |
| 46 | + # By default, use PMI2 out-of-band support on Cray X* and HPE Cray EX |
| 47 | + # systems, MPI on other Cray systems or with an MPI-based launcher, |
| 48 | + # and "sockets" otherwise. |
| 49 | + # |
| 50 | + platform_val = chpl_platform.get('target') |
| 51 | + launcher_val = chpl_launcher.get() |
| 52 | + if 'cray-x' in platform_val or chpl_platform.is_hpe_cray('target'): |
67 | 53 | oob_val = 'pmi2'
|
| 54 | + elif 'cray-' in platform_val: |
| 55 | + oob_val = 'mpi' |
| 56 | + elif 'mpi' in launcher_val: |
| 57 | + oob_val = 'mpi' |
68 | 58 | else:
|
69 |
| - oob_val = 'sockets' |
70 |
| - |
| 59 | + import chpl_compiler |
| 60 | + if _find_pmi2() is not None: |
| 61 | + oob_val = 'pmi2' |
| 62 | + elif "-lpmi2" in chpl_compiler.get_system_link_args('target'): |
| 63 | + oob_val = 'pmi2' |
| 64 | + else: |
| 65 | + oob_val = 'sockets' |
| 66 | + |
| 67 | + check_valid_var("CHPL_COMM_OFI_OOB", oob_val, ("mpi", "pmi2", "sockets")) |
71 | 68 | return oob_val
|
72 | 69 |
|
73 | 70 | # returns 2-tuple of lists
|
|
0 commit comments