Skip to content
New issue

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

[BUG] Simple matrix rotation could not compile #1783

Closed
lucifer1004 opened this issue Sep 5, 2024 · 1 comment · Fixed by #1784
Closed

[BUG] Simple matrix rotation could not compile #1783

lucifer1004 opened this issue Sep 5, 2024 · 1 comment · Fixed by #1784
Labels
? - Needs Triage bug Something isn't working

Comments

@lucifer1004
Copy link
Contributor

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.

@thakkarV
Copy link
Collaborator

thakkarV commented Sep 5, 2024

yep, seems like it. CC @yzhaiustc @hwu36

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
? - Needs Triage bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants