You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It was recently discovered in #984 that the bash command that's responsible for invoking our Google Test binaries has some invalid quotes around the * character which prevent all of the tests from being called (link). However, after moving the quotes in #984, some additional tests are run that weren't being run before. In particular, this causes issues with tests that rely on CUDA malloc async since there are no runtime checks that enable them to be skipped on CUDA versions that are less than 11.2.
To address this issue, the following changes should be made:
Add a runtime check to Google Tests to ensure that they are skipped on CUDA < 11.2 environments if they rely on CUDA malloc async
It was recently discovered in #984 that the bash command that's responsible for invoking our Google Test binaries has some invalid quotes around the
*
character which prevent all of the tests from being called (link). However, after moving the quotes in #984, some additional tests are run that weren't being run before. In particular, this causes issues with tests that rely on CUDA malloc async since there are no runtime checks that enable them to be skipped on CUDA versions that are less than 11.2.To address this issue, the following changes should be made:
*
character, as done in Fixbash
command for running tests #984.The text was updated successfully, but these errors were encountered: