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
Some linear models are using int for the number of rows and columns, this can lead to integer overflow for big matrices. Here is an example on Ridge:
int
cuml/cpp/src/glm/ridge.cuh
Line 94 in d65121a
The text was updated successfully, but these errors were encountered:
Add support for 64bit svdeig (#1060)
de24a94
`raft::linalg::eigDC` already supports 64bit. This will be useful for rapidsai/cuml#4906 Authors: - Micka (https://github.com/lowener) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: #1060
Fix indexing type for ridge and linear models (#4996)
ff4f3cf
Fixes #4906 Authors: - Micka (https://github.com/lowener) Approvers: - Dante Gama Dessavre (https://github.com/dantegd) URL: #4996
Fix indexing type for ridge and linear models (rapidsai#4996)
1e45c55
Fixes rapidsai#4906 Authors: - Micka (https://github.com/lowener) Approvers: - Dante Gama Dessavre (https://github.com/dantegd) URL: rapidsai#4996
d39a83b
lowener
Successfully merging a pull request may close this issue.
Some linear models are using
int
for the number of rows and columns, this can lead to integer overflow for big matrices.Here is an example on Ridge:
cuml/cpp/src/glm/ridge.cuh
Line 94 in d65121a
Linking the more general issue: #2459, #4105
The text was updated successfully, but these errors were encountered: