Changes necessary to build lbann@develop (#15153)

* Necessary changes to get lbann develop to compile.

* Reformatting for flake8

* More flake8 changes.

* Removing redundant clara dependency.
This commit is contained in:
Robert Blake 2020-02-21 12:42:37 -08:00 committed by GitHub
parent 6d8e0699f4
commit 6764a9464d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -183,8 +183,9 @@ def cmake_args(self):
args.extend(['-DAluminum_DIR={0}'.format(spec['aluminum'].prefix)]) args.extend(['-DAluminum_DIR={0}'.format(spec['aluminum'].prefix)])
if '+conduit' in spec: if '+conduit' in spec:
args.extend(['-DLBANN_CONDUIT_DIR={0}'.format( args.extend([
spec['conduit'].prefix)]) '-DLBANN_CONDUIT_DIR={0}'.format(spec['conduit'].prefix),
'-DConduit_DIR={0}'.format(spec['conduit'].prefix)])
# Add support for OpenMP # Add support for OpenMP
if (self.spec.satisfies('%clang')): if (self.spec.satisfies('%clang')):