You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found in the loop of renderCUDA() in backward.cu, you use i twice in a nested loop. I wonder if it may cause an issue, because it seems the i in the inner loop will change the value of i in outer loop.
The text was updated successfully, but these errors were encountered:
Oh Thank you for pointing out this. This will not cause issue because of the properties of C/CUDA. But definitely, we should replace the second $i$ with something like $j$ for avoiding misinterpretation and potential risks.
I found in the loop of renderCUDA() in backward.cu, you use i twice in a nested loop. I wonder if it may cause an issue, because it seems the i in the inner loop will change the value of i in outer loop.
The text was updated successfully, but these errors were encountered: