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
When a user creates a transform op then queries the rank and size of that op it returns -1 for rank and 0 for size.
The cause of this is that we return an mtie for transform ops here:
https://github.com/NVIDIA/MatX/blob/main/include/matx/core/tensor.h#L285-L296
Mtie currently returns matxNoRank for rank and 0 for size here:
https://github.com/NVIDIA/MatX/blob/main/include/matx/core/tie.h#L84-L92
This causes issues if you try to then pass that transform into other ops.
The text was updated successfully, but these errors were encountered:
mtie should output the correct rank and size for the output operator.
28b20c9
Fixes #725
50fb9db
mtie should output the correct rank and size for the output operator. (…
2186ba0
…#726) Fixes #725
Successfully merging a pull request may close this issue.
When a user creates a transform op then queries the rank and size of that op it returns -1 for rank and 0 for size.
The cause of this is that we return an mtie for transform ops here:
https://github.com/NVIDIA/MatX/blob/main/include/matx/core/tensor.h#L285-L296
Mtie currently returns matxNoRank for rank and 0 for size here:
https://github.com/NVIDIA/MatX/blob/main/include/matx/core/tie.h#L84-L92
This causes issues if you try to then pass that transform into other ops.
The text was updated successfully, but these errors were encountered: