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
[SYCL-MLIR] Use SmallString<0> to store arguments in ArgumentList (#7274)
std::string performs short string optimizations, so that moving an
std::string might invalidate iterators to it. On the other hand,
llvm::SmallString<0> is always heap-allocated, so moving does not
involve invalidation.
Signed-off-by: Victor Perez <[email protected]>
Signed-off-by: Victor Perez <[email protected]>
0 commit comments