add nvechip to sundials components when mfem+rocm (#40512)

This commit is contained in:
Cody Balos 2023-10-19 12:08:24 -07:00 committed by GitHub
parent 72b36ac144
commit 8720cec283
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1198,6 +1198,8 @@ def sundials_components(self):
sun_comps += ",nvecparhyp,nvecparallel"
if "+cuda" in spec and "+cuda" in spec["sundials"]:
sun_comps += ",nveccuda"
if "+rocm" in spec and "+rocm" in spec["sundials"]:
sun_comps += ",nvechip"
return sun_comps
@property