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
To get this project to successfully build using CUDA 12.6 one has to uncomment
cuGridder/src/utils.cu
Line 19 in 729db09
cuGridder/test/adjointness_1d_test.cu
Line 9 in 729db09
Then the compiler still warns about
cuGridder/contrib/common.cu
Line 184 in 729db09
cuGridder/contrib/common.h
Line 14 in 729db09
INT_MAX
The text was updated successfully, but these errors were encountered:
Really appreciate your comments. Just made a new commit to support cuda 12 except the warnings.
Sorry, something went wrong.
No branches or pull requests
To get this project to successfully build using CUDA 12.6 one has to uncomment
cuGridder/src/utils.cu
Line 19 in 729db09
and get rid of the unneeded
cuGridder/test/adjointness_1d_test.cu
Line 9 in 729db09
in the test files.
Then the compiler still warns about
cuGridder/contrib/common.cu
Line 184 in 729db09
because of
cuGridder/contrib/common.h
Line 14 in 729db09
"floating-point value does not fit in required integral type". So it should probably be replaced with
INT_MAX
?The text was updated successfully, but these errors were encountered: