Skip to content

Commit 924c130

Browse files
authored
Make setting CHPL_* environment variables to invalid values an error (#26501)
Makes most CHPL_* environment variables produce an error if set to an invalid value. This can help prevent user error when accidentally doing the wrong thing. For example, a user might misspell something or just misunderstand how to set a variable. Previously, we would just silently take that value and maybe break in expected ways later. Now, we refuse to accept it and tell the user exactly what they did wrong Previously, ```bash export CHPL_LLVM=ssystem make # error, cannot find Makefile.include-ssystem ``` Now, ```bash export CHPL_LLVM=ssystem make # Error: CHPL_LLVM=ssystem is not valid, CHPL_LLVM must be none, bundled, or system ``` [Reviewed by @mppf]
2 parents 1536d04 + f36ab4a commit 924c130

22 files changed

+117
-86
lines changed

util/chplenv/chpl_atomics.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import chpl_comm, chpl_compiler, chpl_platform, overrides
66
from compiler_utils import CompVersion, get_compiler_version, has_std_atomics
7-
from utils import error, memoize, warning
7+
from utils import error, memoize, warning, check_valid_var
88

99

1010
@memoize
@@ -21,7 +21,7 @@ def get(flag='target'):
2121
elif atomics_val == 'gasnet':
2222
error("CHPL_NETWORK_ATOMICS=gasnet is not supported")
2323
elif atomics_val not in valid:
24-
error("CHPL_NETWORK_ATOMICS must be one of " + ','.join(valid))
24+
check_valid_var("CHPL_NETWORK_ATOMICS", atomics_val, valid)
2525
elif atomics_val != 'none' and atomics_val != comm_val:
2626
error("CHPL_NETWORK_ATOMICS=%s is incompatible with CHPL_COMM=%s"
2727
% (atomics_val, comm_val))
@@ -82,6 +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+
86+
check_valid_var("CHPL_ATOMICS", atomics_val, ['cstdlib', 'intrinsics', 'locks'])
87+
8588
else:
8689
error("Invalid flag: '{0}'".format(flag), ValueError)
8790

util/chplenv/chpl_aux_filesys.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
from glob import glob
55

66
import overrides
7-
from utils import memoize
7+
from utils import memoize, check_valid_var
88

99

1010
@memoize
1111
def get():
1212
aux_fs = overrides.get('CHPL_AUX_FILESYS', 'none')
13+
check_valid_var('CHPL_AUX_FILESYS', aux_fs, ['none', 'lustre'])
1314
return aux_fs
1415

1516

util/chplenv/chpl_comm.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import re
55
import shutil
66

7-
import overrides
8-
from utils import memoize
7+
import chpl_platform, overrides
8+
from utils import memoize, check_valid_var
99

1010

1111
@memoize
@@ -38,6 +38,7 @@ def get():
3838
else:
3939
comm_val = 'none'
4040

41+
check_valid_var("CHPL_COMM", comm_val, ("none", "gasnet", "ofi", "ugni"))
4142
return comm_val
4243

4344

util/chplenv/chpl_comm_ofi_oob.py

+23-26
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import overrides
88
import third_party_utils
99

10-
from utils import error, memoize
10+
from utils import error, memoize, check_valid_var
1111

1212
@memoize
1313
def _find_pmi2():
@@ -41,33 +41,30 @@ def get():
4141
return 'none'
4242

4343
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'):
6753
oob_val = 'pmi2'
54+
elif 'cray-' in platform_val:
55+
oob_val = 'mpi'
56+
elif 'mpi' in launcher_val:
57+
oob_val = 'mpi'
6858
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"))
7168
return oob_val
7269

7370
# returns 2-tuple of lists

util/chplenv/chpl_comm_segment.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33

44
import chpl_comm, chpl_comm_substrate, chpl_platform, overrides
5-
from utils import memoize
5+
from utils import memoize, check_valid_var
66

77

88
@memoize
@@ -21,6 +21,7 @@ def get():
2121
segment_val = 'large'
2222
else:
2323
segment_val = 'everything'
24+
check_valid_var("CHPL_GASNET_SEGMENT", segment_val, ("fast", "large", "everything"))
2425
else:
2526
segment_val = 'none'
2627
return segment_val

util/chplenv/chpl_comm_substrate.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import sys
33
import shutil
44

5-
import chpl_comm, overrides
6-
from utils import memoize
5+
import chpl_comm, chpl_platform, overrides
6+
from utils import memoize, check_valid_var
77

88

99
@memoize
@@ -38,6 +38,8 @@ def get():
3838
substrate_val = 'udp'
3939
else:
4040
substrate_val = 'none'
41+
42+
check_valid_var("CHPL_COMM_SUBSTRATE", substrate_val, ("none", "aries", "ofi", "ibv", "udp", "mpi"))
4143
return substrate_val
4244

4345

util/chplenv/chpl_gmp.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import chpl_compiler, chpl_platform, overrides, third_party_utils
77
from chpl_home_utils import get_chpl_third_party
8-
from utils import memoize, warning, error
8+
from utils import memoize, warning, error, check_valid_var
99

1010
# returns True if CHPL_GMP was set by the user
1111
# (i.e. not inferred to be the default)
@@ -36,6 +36,7 @@ def get():
3636
else:
3737
gmp_val = 'none'
3838

39+
check_valid_var('CHPL_GMP', gmp_val, ['none', 'bundled', 'system'])
3940
return gmp_val
4041

4142
@memoize

util/chplenv/chpl_gpu.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import chpl_tasks
99
import chpl_home_utils
1010
import overrides
11-
from utils import error, warning, memoize, try_run_command, which, is_ver_in_range
11+
from utils import error, warning, memoize, try_run_command, which, is_ver_in_range, check_valid_var
1212

1313
def _validate_cuda_version():
1414
return _validate_cuda_version_impl()
@@ -234,7 +234,7 @@ def get():
234234
chpl_gpu_env = overrides.get("CHPL_GPU")
235235
if chpl_gpu_env:
236236
if chpl_gpu_env not in GPU_TYPES:
237-
error("Only {} supported for 'CHPL_GPU'".format(list(GPU_TYPES.keys())))
237+
check_valid_var("CHPL_GPU", chpl_gpu_env, list(GPU_TYPES.keys()))
238238
else:
239239
return chpl_gpu_env
240240
else:

util/chplenv/chpl_hwloc.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import optparse
66
import chpl_locale_model, chpl_tasks, chpl_platform, overrides, third_party_utils
77
import chpl_hwloc_pci
8-
from utils import error, memoize, warning, try_run_command, run_command
8+
from utils import error, memoize, warning, try_run_command, run_command, check_valid_var
99

1010

1111
@memoize
@@ -18,6 +18,7 @@ def get():
1818
else:
1919
hwloc_val = 'none'
2020

21+
check_valid_var('CHPL_HWLOC', hwloc_val, ['none', 'bundled', 'system'])
2122
return hwloc_val
2223

2324

util/chplenv/chpl_hwloc_pci.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import chpl_hwloc, chpl_comm, chpl_locale_model, chpl_gpu
1414
import overrides
1515

16-
from utils import error, memoize
16+
from utils import error, memoize, check_valid_var
1717

1818
@memoize
1919
def get():
@@ -33,6 +33,7 @@ def get():
3333
gpu_val = chpl_gpu.get()
3434
if gpu_val != 'cpu':
3535
pci_val = 'enable'
36+
check_valid_var('CHPL_HWLOC_PCI', pci_val, ['enable', 'disable'])
3637
return pci_val
3738

3839

util/chplenv/chpl_jemalloc.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import chpl_bin_subdir, chpl_compiler, chpl_mem, chpl_platform, overrides, third_party_utils
77
import homebrew_utils
8-
from utils import error, memoize, run_command, warning
8+
from utils import error, memoize, run_command, warning, check_valid_var
99

1010

1111
@memoize
@@ -53,11 +53,14 @@ 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

63+
check_valid_var(var_name, jemalloc_val, ["none", "bundled", "system"])
6164
return jemalloc_val
6265

6366

util/chplenv/chpl_launcher.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44

55
import chpl_comm, chpl_comm_substrate, chpl_platform, overrides
6-
from utils import which, error, memoize, warning
6+
from utils import which, error, memoize, warning, check_valid_var
77

88

99
def slurm_prefix(base_launcher, platform_val):
@@ -69,6 +69,13 @@ def get():
6969
if launcher_val is None:
7070
launcher_val = 'none'
7171

72+
gasnet_launchers = ["mpi", "ibv", "ucx", "ofi"]
73+
valid_values = ["none", "amudprun", "smp", "aprun", "slurm-srun"]
74+
valid_values.extend(["lsf-gasnetrun_ibv", "mpirun", "mpirun4ofi", "pals", "pbs-aprun", "pbs-gasnetrun_ibv"])
75+
valid_values.extend(["gasnetrun_{}".format(l) for l in gasnet_launchers])
76+
valid_values.extend(["slurm-gasnetrun_{}".format(l) for l in gasnet_launchers])
77+
check_valid_var("CHPL_LAUNCHER", launcher_val, valid_values)
78+
7279
return launcher_val
7380

7481

util/chplenv/chpl_lib_pic.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33

44
import overrides
55
import chpl_platform
6-
from utils import memoize
6+
from utils import memoize, check_valid_var
77

88
@memoize
99
def get():
10-
lib_pic_val = overrides.get('CHPL_LIB_PIC')
11-
if not lib_pic_val:
12-
lib_pic_val = 'none'
13-
10+
lib_pic_val = overrides.get('CHPL_LIB_PIC', 'none')
11+
check_valid_var("CHPL_LIB_PIC", lib_pic_val, ["none", "pic"])
1412
return lib_pic_val
1513

1614

util/chplenv/chpl_libfabric.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import chpl_comm, chpl_comm_debug, chpl_launcher, chpl_platform, chpl_comm_ofi_oob
77
import overrides, third_party_utils
88

9-
from utils import error, memoize, try_run_command, warning
9+
from utils import error, memoize, try_run_command, warning, check_valid_var
1010

1111
@memoize
1212
def get():
@@ -18,10 +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':
21+
22+
check_valid_var('CHPL_LIBFABRIC', libfabric_val, ['bundled', 'system'])
23+
if chpl_platform.is_hpe_cray('target') and libfabric_val != 'system':
2424
warning('CHPL_LIBFABRIC!=system is discouraged on HPE Cray')
25+
2526
else:
2627
libfabric_val = 'none'
2728

util/chplenv/chpl_llvm.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from chpl_home_utils import get_chpl_third_party, get_chpl_home
1010
import chpl_gpu
1111
import homebrew_utils
12-
from utils import which, memoize, error, run_command, try_run_command, warning
12+
from utils import which, memoize, error, run_command, try_run_command, warning, check_valid_var
1313
from collections import defaultdict
1414

1515
# returns a tuple of supported major LLVM versions as strings
@@ -641,6 +641,9 @@ def has_compatible_installed_llvm():
641641
@memoize
642642
def get():
643643
llvm_val = overrides.get('CHPL_LLVM')
644+
if llvm_val:
645+
check_valid_var("CHPL_LLVM", llvm_val, ['none', 'bundled', 'system'])
646+
644647
if not llvm_val:
645648
llvm_val = 'unset'
646649

util/chplenv/chpl_locale_model.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@
22
import sys
33

44
import overrides
5-
from utils import memoize, error
5+
from utils import memoize, error, check_valid_var
66

77

88
@memoize
99
def get():
1010
locale_model_val = overrides.get('CHPL_LOCALE_MODEL', 'flat')
11-
12-
if locale_model_val not in ['flat', 'gpu']:
13-
error('{} is not a valid value for CHPL_LOCALE_MODEL. '
14-
'It can only be "flat" or "gpu".'.format(locale_model_val))
15-
11+
check_valid_var("CHPL_LOCALE_MODEL", locale_model_val, ["flat", "gpu"])
1612
return locale_model_val
1713

1814

util/chplenv/chpl_mem.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44

55
import chpl_platform, overrides
6-
from utils import error, memoize, warning
6+
from utils import error, memoize, warning, check_valid_var
77

88
@memoize
99
def get(flag='host'):
@@ -37,6 +37,9 @@ def get(flag='host'):
3737
mem_val = 'jemalloc'
3838
else:
3939
error("Invalid flag: '{0}'".format(flag), ValueError)
40+
41+
var_name = 'CHPL_{0}_MEM'.format(flag.upper())
42+
check_valid_var(var_name, mem_val, ["cstdlib", "jemalloc"])
4043
return mem_val
4144

4245

0 commit comments

Comments
 (0)