I would like to use _mm512_mask_cmple_pd_mask to compare two packed double precision vectors. My issue is that the result comes as __mmask8 type...
So I guess that my question is how I convert such mask into packed integer vectors, so I can use the result of the comparison later on.
In my particular case, I need to know how many Trues are, so I will need to do some sort of reduction afterwards... but one thing at the time!