lattice/quda

Tuning behavior is dependent on verbosity setting

maddyscientist opened this issue · 1 comments

@jcosborn I just noticed an issue with your PR #1353 that has me confused. Specifically, on this line, error is only set if the verbosity is set to QUDA_DEBUG_VERBOSE. Is this a bug? We shouldn't have behavior like this dependent on the verbosity setting.

The goal was to make sure to print out the last error string if we end up here. If verbosity >= QUDA_DEBUG_VERBOSE then we would have already printed it out above, so I didn't bother to print it again (plus we would need to save it since it gets reset). We could save it above and print it again if that is preferred.