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
As I was reminded here https://discourse.julialang.org/t/in-using/90056/5 this package tends to assume that the name TensorCast is in scope where the macro runs. It shouldn't.
TensorCast
The text was updated successfully, but these errors were encountered:
Thanks for opening an issue. An MWE is
using TensorCast: @cast B = ones(3, 3) @cast A[row][col] := B[row, col]
I think that wrapping each function form f(args...) in $(f(args...)) in the macro implementation should fix this, but didn't test.
f(args...)
$(f(args...))
In addition, it would be great to clarify that ⊗ is just a placeholder and does not need to be imported.
⊗
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
As I was reminded here https://discourse.julialang.org/t/in-using/90056/5 this package tends to assume that the name
TensorCast
is in scope where the macro runs. It shouldn't.The text was updated successfully, but these errors were encountered: