Hello,
I have a software with std::vector in which there are a lot of insert and erase operations.
I would like to improve the performance of such software using SIMD, because naturally there are a lot of shifts of data for each insert/erase operation. I think that the shifts could be done in SIMD data-transfer instructions.
I would like to know the way to do this. Do I need to deal with alignment?