[GPU] Pointprobe.cu comparison always false
In PointProbe from line 141 there is some comparison which always results in false:
for(int n_y=0; n_y<n_y; n_y++)
{
for(int n_z=0; n_z<n_z; n_z++)
{
this->pointCoordsX.push_back(pos_x);
this->pointCoordsY.push_back(pos0_y+delta_y*n_y);
this->pointCoordsZ.push_back(pos0_z+delta_z*n_z);
}
}
I outcomment this part until we find a solution.
Edited by Sören Peters