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
We get several garbage value Tensor objects when we debug the backOp of e. This is a very puzzling bug.
Also we cannot perform operations where there is a temporary on the right hand side.
Tensor<float> e = a*b + c*d;
is an example of that where a*b is a temporary.
There are bugs in the operation overloading and that is a medium priority item. It would be very good to get fixed but we can proceed using the assemly coding style one op per line approach
The text was updated successfully, but these errors were encountered:
Added another way to perform operations on tensors by just taking the pointer of two tensors and adding them. This approach removes a lot of bugs and headaches, The only problem is via a user perspective with the API being tensorOps::add(t1,t2) instead of t1+t2.
Maybe this will change in the future to the latter hopefully.
Changes will be pushed through the CUDA dot product feature
When we try to overload operations such that complex operations can be done in a single expression. Something like
We get several garbage value Tensor objects when we debug the backOp of e. This is a very puzzling bug.
Also we cannot perform operations where there is a temporary on the right hand side.
is an example of that where
a*b
is a temporary.There are bugs in the operation overloading and that is a medium priority item. It would be very good to get fixed but we can proceed using the assemly coding style one op per line approach
The text was updated successfully, but these errors were encountered: