This is an archive of the discontinued LLVM Phabricator instance.

[MemProf] Refactor memory profile matching into MemProfiler (NFC)
ClosedPublic

Authored by tejohnson on Jul 10 2023, 11:42 AM.

Diff Detail

Event Timeline

tejohnson created this revision.Jul 10 2023, 11:42 AM
Herald added a project: Restricted Project. · View Herald TranscriptJul 10 2023, 11:42 AM
tejohnson requested review of this revision.Jul 10 2023, 11:42 AM
Herald added a project: Restricted Project. · View Herald TranscriptJul 10 2023, 11:42 AM

Accidentally removed an early return, causing a test failure

This revision is now accepted and ready to land.Jul 10 2023, 12:40 PM
This revision was landed with ongoing or failed builds.Jul 10 2023, 1:13 PM
This revision was automatically updated to reflect the committed changes.
jplehr added a subscriber: jplehr.Jul 11 2023, 12:40 AM

This seems to have broken the AMDGPU OpenMP Offload buildbot https://lab.llvm.org/buildbot/#/builders/193/builds/34428 for some reason.

This seems to have broken the AMDGPU OpenMP Offload buildbot https://lab.llvm.org/buildbot/#/builders/193/builds/34428 for some reason.

My patch https://reviews.llvm.org/D154069 which I had to revert caused the same failures:
https://lab.llvm.org/buildbot/#/builders/193/builds/34397

Yes, I have checked that reverting this patch and the follow-up patch will get the bot back to green.
I'm going to add reverting commits.

We're looking at the error we were seeing and will report when we learned something.

This seems to have broken the AMDGPU OpenMP Offload buildbot https://lab.llvm.org/buildbot/#/builders/193/builds/34428 for some reason.

This seems very strange. It was a minor refactoring in a pass that these tests wouldn't even invoke.

This seems to have broken the AMDGPU OpenMP Offload buildbot https://lab.llvm.org/buildbot/#/builders/193/builds/34428 for some reason.

My patch https://reviews.llvm.org/D154069 which I had to revert caused the same failures:
https://lab.llvm.org/buildbot/#/builders/193/builds/34397

Thanks for that pointer. Per the last comment there it seems these failures may be spurious.

Hi Teresa, it seems that the problem was indeed inside the OpenMP part -- we believe we fixed it in https://reviews.llvm.org/D154971.
Feel free to reland your patches and I'm sorry for the inconvenience this has caused.
(Or should I reland those patches? I'm not sure what is common procedure here)

Hi Teresa, it seems that the problem was indeed inside the OpenMP part -- we believe we fixed it in https://reviews.llvm.org/D154971.
Feel free to reland your patches and I'm sorry for the inconvenience this has caused.
(Or should I reland those patches? I'm not sure what is common procedure here)

I can take care of it, thanks for the update!