This is an archive of the discontinued LLVM Phabricator instance.

[AMDGPU] Change std::sort to llvm::sort in response to r327219
ClosedPublic

Authored by mgrang on Mar 23 2018, 5:14 PM.

Details

Summary

r327219 added wrappers to std::sort which randomly shuffle the container before sorting.
This will help in uncovering non-determinism caused due to undefined sorting
order of objects having the same key.

To make use of that infrastructure we need to invoke llvm::sort instead of std::sort.

Diff Detail

Repository
rL LLVM

Event Timeline

mgrang created this revision.Mar 23 2018, 5:14 PM
arsenm accepted this revision.Mar 23 2018, 6:45 PM

LGTM

This revision is now accepted and ready to land.Mar 23 2018, 6:45 PM
This revision was automatically updated to reflect the committed changes.

Linking back to the full patch: https://reviews.llvm.org/D44363