We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would it be possible to provide some explanation as to why is the following code needed?
docking-plp-openCL/src/kernels/kernelInitGrid.cl
Line 47 in 21eabf5
I find it strange that the first cell is initialized to a score of 50.
The text was updated successfully, but these errors were encountered:
If an atom coordinate is not inside docking site, then c_site check will fail.
docking-plp-openCL/src/kernels/grid.cl
Line 46 in 21eabf5
If this check fails, value grid[0].point[classification] will be used, which is set to c_site penalty (50.0).
Line 7 in 21eabf5
This is how c_site penalty is calculated at the moment. It would probably be faster to replace grid[0] with an if statement.
Sorry, something went wrong.
davors
te2445
No branches or pull requests
Would it be possible to provide some explanation as to why is the following code needed?
docking-plp-openCL/src/kernels/kernelInitGrid.cl
Line 47 in 21eabf5
I find it strange that the first cell is initialized to a score of 50.
The text was updated successfully, but these errors were encountered: