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
In acmp.cu - CheckerboardPropagation()
line 808: int pointTemp = left_near - (1 + i) - i * width;
should be: int pointTemp = left_near - (1 + i) + i * width;
The text was updated successfully, but these errors were encountered:
In acmp.cu - CheckerboardPropagation()
line 808:
int pointTemp = left_near - (1 + i) - i * width;
should be:
int pointTemp = left_near - (1 + i) + i * width;
The text was updated successfully, but these errors were encountered: