lbann: make two variants sticky (#39710)
* Make the state of the Python Front End (PFE) and Python data reader support sticky so that the concretizer does not arbitrarily disable them. Co-authored-by: Massimiliano Culpo <massimiliano.culpo@gmail.com>
This commit is contained in:
parent
91011a8c5f
commit
33500b5169
@ -140,8 +140,18 @@ class Lbann(CachedCMakePackage, CudaPackage, ROCmPackage):
|
||||
variant("onednn", default=False, description="Support for OneDNN")
|
||||
variant("onnx", default=False, description="Support for exporting models into ONNX format")
|
||||
variant("nvshmem", default=False, description="Support for NVSHMEM")
|
||||
variant("python", default=True, description="Support for Python extensions (e.g. Data Reader)")
|
||||
variant("pfe", default=True, description="Python Frontend for generating and launching models")
|
||||
variant(
|
||||
"python",
|
||||
default=True,
|
||||
sticky=True,
|
||||
description="Support for Python extensions (e.g. Data Reader)",
|
||||
)
|
||||
variant(
|
||||
"pfe",
|
||||
default=True,
|
||||
sticky=True,
|
||||
description="Python Frontend for generating and launching models",
|
||||
)
|
||||
variant("boost", default=False, description="Enable callbacks that use Boost libraries")
|
||||
variant("asan", default=False, description="Build with support for address-sanitizer")
|
||||
variant("unit_tests", default=False, description="Support for unit testing")
|
||||
|
Loading…
Reference in New Issue
Block a user