Displaying 1 result from an estimated 1 matches for "0b7cd830".
2019 Jul 03
2
Using bytecode version of std::sort for JIT generated data type
Hi LLVM devs,
The performance of C++ std::sort comes from being able to inline the
comparator. For a JIT generated data type, using the comparator as a
function call from std::sort may not be ideal. So, i was wondering how can
we make a JIT-sort which is as good as statically compiled std::sort with
comparator inlined.
What is the recommended way to pass a an existing function like std::sort
into