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
JaxPM/jaxpm/painting.py
Line 55 in a848d43
The return line
return (mesh[neighboor_coords[..., 0], neighboor_coords[..., 1], neighboor_coords[..., 3]] * kernel).sum(axis=-1)
should be
return (mesh[neighboor_coords[..., 0], neighboor_coords[..., 1], neighboor_coords[..., 2]] * kernel).sum(axis=-1)
but the behavior is identical because of JAX out-of-bounds indexing
The text was updated successfully, but these errors were encountered:
No branches or pull requests
JaxPM/jaxpm/painting.py
Line 55 in a848d43
The return line
should be
but the behavior is identical because of JAX out-of-bounds indexing
The text was updated successfully, but these errors were encountered: