If I'm reading your post right Leexgx, your tests were done with a drive that was filled with used blocks, but those pages could just simply be wiped because the file was deleted and no data needed to be preserved. So the SSD only needed to Erase -> Write
If you fill a drive using lots of small file operations and general use, you can end up with a drive that has some data that needs to be preserved in most of the blocks, meaning the SSD needs to Read the block to cache, modify it in cache, erase the block and write it back out. This Reading and modifying is an additional overhead that would explain the difference in yours and Halks findings.
I'm assuming that the hit to read speeds that Halk is seeing comes from the fact that SSD's are very highly parallel internally, after a while of general use with small files the drive will be unable to place blocks evenly across all of it's channels thanks to having some channels where there are no empty blocks or blocks with deleted data, rather than take the performance hit at write time, it stores the file across a more limited number of channels.
Thus the file can't be read back from as many channels at once and you get a slower sequential read.
Just a theory, you should be able to test it by messing up a drive with small file ops, writing a large file to it, then copy a large file, at least a couple of GB. Run a benchmark testing the sequential read of this file back into a Ramdrive. Run wiper, and then do the file copy again.
If I'm right you should see similar speeds both times, because wiper doesn't move data around the file will still only be spread across a limited number of channels. This wouldn't show up in benchmarks because I assume they create the file they are testing new each time, and if it's created on a wiped drive it will be written across all channels.
Could highlight a new issue with them, that wiper fixes benches, but any data written during the poor performance state will remain at poor performance. Running wiper regularly will prevent it ever happening in the first place though.
Anyway, just a theory, I'd love it if someone with an indilinx drive could test it for me.