Skip to content

Commit 8d454c8

Browse files
committed
apple reviewer feedback
Signed-off-by: Jade Abraham <[email protected]>
1 parent 2b332b7 commit 8d454c8

8 files changed

+41
-39
lines changed

util/chplenv/chpl_atomics.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,9 @@ def get(flag='target'):
8282
# we can't use intrinsics, fall back to locks
8383
if not atomics_val:
8484
atomics_val = 'locks'
85-
else:
86-
check_valid_var("CHPL_ATOMICS", atomics_val, ['cstdlib', 'intrinsics', 'locks'])
85+
86+
check_valid_var("CHPL_ATOMICS", atomics_val, ['cstdlib', 'intrinsics', 'locks'])
87+
8788
else:
8889
error("Invalid flag: '{0}'".format(flag), ValueError)
8990

util/chplenv/chpl_comm_ofi_oob.py

+22-24
Original file line numberDiff line numberDiff line change
@@ -41,32 +41,30 @@ def get():
4141
return 'none'
4242

4343
oob_val = overrides.get('CHPL_COMM_OFI_OOB')
44-
if oob_val:
45-
check_valid_var("CHPL_COMM_OFI_OOB", oob_val, ("mpi", "pmi2", "sockets"))
46-
return oob_val
47-
48-
#
49-
# By default, use PMI2 out-of-band support on Cray X* and HPE Cray EX
50-
# systems, MPI on other Cray systems or with an MPI-based launcher,
51-
# and "sockets" otherwise.
52-
#
53-
platform_val = chpl_platform.get('target')
54-
launcher_val = chpl_launcher.get()
55-
if 'cray-x' in platform_val or chpl_platform.is_hpe_cray('target'):
56-
oob_val = 'pmi2'
57-
elif 'cray-' in platform_val:
58-
oob_val = 'mpi'
59-
elif 'mpi' in launcher_val:
60-
oob_val = 'mpi'
61-
else:
62-
import chpl_compiler
63-
if _find_pmi2() is not None:
64-
oob_val = 'pmi2'
65-
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'):
6653
oob_val = 'pmi2'
54+
elif 'cray-' in platform_val:
55+
oob_val = 'mpi'
56+
elif 'mpi' in launcher_val:
57+
oob_val = 'mpi'
6758
else:
68-
oob_val = 'sockets'
69-
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"))
7068
return oob_val
7169

7270
# returns 2-tuple of lists

util/chplenv/chpl_comm_segment.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ def get():
2121
segment_val = 'large'
2222
else:
2323
segment_val = 'everything'
24-
else:
25-
check_valid_var("CHPL_GASNET_SEGMENT", segment_val, ("none", "fast", "large", "everything"))
24+
check_valid_var("CHPL_GASNET_SEGMENT", segment_val, ("fast", "large", "everything"))
2625
else:
2726
segment_val = 'none'
2827
return segment_val

util/chplenv/chpl_jemalloc.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ def get(flag='target'):
5353
elif darwin and mem_val == 'jemalloc' and jemalloc_val == 'bundled':
5454
error("CHPL_HOST_JEMALLOC=bundled is not supported on Mac for host builds")
5555

56+
var_name = 'CHPL_{0}_JEMALLOC'.format(flag.upper())
57+
mem_var_name = 'CHPL_{0}_MEM'.format(flag.upper())
5658
if mem_val == 'jemalloc' and jemalloc_val == 'none':
57-
error("CHPL_JEMALLOC must not be 'none' when CHPL_TARGET_MEM is jemalloc")
59+
error("{0} must not be 'none' when {0} is jemalloc".format(var_name, mem_var_name))
5860
elif mem_val != 'jemalloc' and jemalloc_val != 'none':
59-
error("CHPL_JEMALLOC must be 'none' when CHPL_TARGET_MEM is not jemalloc")
61+
error("{0} must be 'none' when {0} is not jemalloc".format(var_name, mem_var_name))
6062

61-
var_name = 'CHPL_{0}_JEMALLOC'.format(flag.upper())
62-
var_name = 'CHPL_JEMALLOC' if chpl_target_jemalloc is None else var_name
6363
check_valid_var(var_name, jemalloc_val, ["none", "bundled", "system"])
6464
return jemalloc_val
6565

util/chplenv/chpl_libfabric.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,11 @@ def get():
1818
libfabric_val = 'system'
1919
else:
2020
libfabric_val = 'bundled'
21-
if libfabric_val == 'none':
22-
error("CHPL_LIBFABRIC must not be 'none' when CHPL_COMM is ofi")
23-
elif chpl_platform.is_hpe_cray('target') and libfabric_val != 'system':
24-
warning('CHPL_LIBFABRIC!=system is discouraged on HPE Cray')
2521

2622
check_valid_var('CHPL_LIBFABRIC', libfabric_val, ['bundled', 'system'])
23+
if chpl_platform.is_hpe_cray('target') and libfabric_val != 'system':
24+
warning('CHPL_LIBFABRIC!=system is discouraged on HPE Cray')
25+
2726
else:
2827
libfabric_val = 'none'
2928

util/chplenv/chpl_locale_model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
@memoize
99
def get():
1010
locale_model_val = overrides.get('CHPL_LOCALE_MODEL', 'flat')
11-
check_valid_var("CHPL_LOCALE_MODEL", locale_model_val, ["flat", "shared"])
11+
check_valid_var("CHPL_LOCALE_MODEL", locale_model_val, ["flat", "gpu"])
1212
return locale_model_val
1313

1414

util/chplenv/chpl_mem.py

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def get(flag='host'):
3939
error("Invalid flag: '{0}'".format(flag), ValueError)
4040

4141
var_name = 'CHPL_{0}_MEM'.format(flag.upper())
42-
var_name = 'CHPL_MEM' if chpl_target_mem is None else var_name
4342
check_valid_var(var_name, mem_val, ["cstdlib", "jemalloc"])
4443
return mem_val
4544

util/chplenv/utils.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,13 @@ def is_ver_in_range(versionStr, minimumStr, maximumStr):
182182
return False
183183

184184
def check_valid_var(varname, value, valid_values):
185-
"""Check that a variable is set to a valid value"""
185+
"""
186+
Check that a variable is set to a valid value
187+
188+
:param varname: The name of the variable, used for printing the error message
189+
:param value: The value of the variable as set by the user or as inferred
190+
:param valid_values: A sequence of valid values for the variable, e.g. a tuple or a list
191+
"""
186192

187193
def join_words(words, conjunction='or'):
188194
if len(words) == 1:

0 commit comments

Comments
 (0)