diff --git a/debugging/vov-bug-finder/kp_view_of_views_bug_finder.cpp b/debugging/vov-bug-finder/kp_view_of_views_bug_finder.cpp index 375fc06bd..2a395d6dc 100644 --- a/debugging/vov-bug-finder/kp_view_of_views_bug_finder.cpp +++ b/debugging/vov-bug-finder/kp_view_of_views_bug_finder.cpp @@ -61,7 +61,8 @@ bool ignore_fence(std::string_view s) { bool ignore_alloc(std::string_view s) { // TODO replace poor man's starts_with and ends_with when C++20 is available return (s.find("Kokkos::") == 0 && - s.rfind("::scratch_mem") == s.length() - 13); + s.rfind("::scratch_mem") == s.length() - 13) || + (s == "Kokkos::thread_scratch"); } std::optional get_substr(std::string const &str,