Alpine-DAV / ascent

A flyweight in situ visualization and analysis runtime for multi-physics HPC simulations
https://alpine-dav.github.io/ascent/
Other
189 stars 65 forks source link

caliper config header logic fix #1369

Open cyrush opened 2 weeks ago

cyrush commented 2 weeks ago

ascent_config.h.in:

#cmakedefine ASCENT_CALIPER_ENABLED   "@ASCENT_CALIPER_ENABLED@"

Should be:

#cmakedefine ASCENT_CALIPER_ENABLED   "@CALIPER_FOUND@"
cyrush commented 2 weeks ago

@nicolemarsaglia related to the issue you saw in your caliper work, this is how we should fix the define.

nicolemarsaglia commented 2 weeks ago

Ah that makes sense! Thank you for double checking!