db-tu-dresden / TSL

Template SIMD Library (+Generator)
GNU General Public License v3.0
7 stars 8 forks source link

Compressstore buggy #58

Open JPietrzykTUD opened 1 year ago

JPietrzykTUD commented 1 year ago

In the workaround version of compress store we have this little peace of code in the end:

if(((mask>>Vec::vector_element_count())&0b1) == 0) {
   *memory = safe[memory-orig_mem];
}

This is just wrong.