-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update FSI branch dependencies (#584)
Allow nalu-wind to build against `openfast@develop` since the FSI features have been merged.
- Loading branch information
1 parent
90338b8
commit ab0a2de
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ class NaluWind(SMCMakeExtension, bNaluWind, ROCmPackage): | |
variant("asan", default=False, | ||
description="Turn on address sanitizer") | ||
variant("fsi", default=False, | ||
description="Use FSI branch of openfast") | ||
description="Enable fluid-structure-interaction simulation capabilities") | ||
variant("stk_simd", default=False, | ||
description="Enable SIMD in STK") | ||
variant("shared", default=True, | ||
|
@@ -45,14 +45,13 @@ class NaluWind(SMCMakeExtension, bNaluWind, ROCmPackage): | |
|
||
conflicts("+cuda", when="+rocm") | ||
conflicts("+rocm", when="+cuda") | ||
conflicts("openfast@fsi", when="~fsi") | ||
conflicts("+hypre", when="+hypre2") | ||
depends_on("hypre+gpu-aware-mpi", when="+gpu-aware-mpi") | ||
|
||
depends_on("[email protected]: ~int64+mpi~superlu-dist~shared", when="+hypre2") | ||
depends_on("hypre+umpire", when="+umpire") | ||
depends_on("trilinos gotype=long") | ||
depends_on("openfast@fsi+netcdf+cxx", when="+fsi") | ||
depends_on("openfast@4.0.0:+netcdf+cxx", when="+fsi") | ||
|
||
for _arch in ROCmPackage.amdgpu_targets: | ||
depends_on("[email protected]: ~shared+exodus+tpetra+zoltan+stk+boost~superlu-dist~superlu+hdf5+shards~hypre+gtest+rocm amdgpu_target={0}".format(_arch), | ||
|