What is the meaning of the >>= symbol in C/C++? Does it have any particular name?
I have this for loop in a CUDA code which looks like this
for(int offset=blockDim.x; offset>0; offset >>=1)
{
//Some code
}
How does the offset variable get modfied with the >>= operator?