You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is another error says: no instance of function template "func" matches the argument list, argument types are cute::gmem_ptr<float *> rather than float .
How can I get the data pointer float from a tensor?
Tensor is a template type. The error you see "argument list for class template "cute::Tensor" is missing." is telling you what is wrong/missing. The signature of your device function will be something like this:
I am writing a device function like:
I want to call it like:
However I got an error says: argument list for class template "cute::Tensor" is missing.
How can I pass a tensor as parameter to a function?
The text was updated successfully, but these errors were encountered: