Why do we have this assertion in the float_kernels.cuh, function computeMiddlePass?
It prevents from running align program with query sequences smaller than 63 characters long!
` const int final_out = queryLength % 64;
const int from_thread_id = 32 - ((final_out+1)/2);
Why do we have this assertion in the float_kernels.cuh, function computeMiddlePass? It prevents from running align program with query sequences smaller than 63 characters long!
` const int final_out = queryLength % 64; const int from_thread_id = 32 - ((final_out+1)/2);
`