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
Describe the bug The following program could not compile:
#include "cutlass/matrix.h" int main() { using Element = float; cutlass::Matrix<Element, 3, 3> A; cutlass::Matrix<Element, 3, 1> B; A.rotation(0.2f, B); }
The error was
cutlass/include/cutlass/matrix.h(7828): error: class "cutlass::Matrix<float, 3, 3>" has no member "set_slice3x3" m.set_slice3x3({
The reason might be that set_slice3x3 renamed to set_slice_3x3 but there are still several occurrences remaining. It should be simple to fix.
set_slice3x3
set_slice_3x3
The text was updated successfully, but these errors were encountered:
yep, seems like it. CC @yzhaiustc @hwu36
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
The following program could not compile:
The error was
The reason might be that
set_slice3x3
renamed toset_slice_3x3
but there are still several occurrences remaining. It should be simple to fix.The text was updated successfully, but these errors were encountered: