Open cponder opened 3 years ago
I'm told that
This is a mistake in their script, index() returns 0 if the names match and -1 otherwise so it should be if ( index() >= 0 ).
and I can see that this change to libexec/driver.pl fixes the problem:
784c784
< if (index($host, "summit.olcf")) {
---
> if (index($host, "summit.olcf") >= 0) {
Can you please integrate the change?
When I run commands like this
all of the tests fail, and some of the corresponding Log/* files say this
I don't get why this is happening, since this is the only reference I can find in the source
and the hostname is clearly set differently from "summit.olcf":
The problem doesn't show up with single-GPU tests, likely because the launcher is not invoked.