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
currently dependencies between tensors is handled crudely, a tensor is dependent on either t, or u, or constant. This means that if you are calculating rhs, you might also calculate tensors that are only used to calculate out, for example.
Need a better way of tracking dependencies so that any function, rhs or out or other, only needs to calculate the tensors that it depends on
Could just keep all tensors in a vec, and then have a vec of indices for each tensor indicating its depenencies. Maybe a vec of (tensor_idx, tensor_elmt_idx) to indicate which element of which tensor it depends on
The text was updated successfully, but these errors were encountered:
currently dependencies between tensors is handled crudely, a tensor is dependent on either t, or u, or constant. This means that if you are calculating rhs, you might also calculate tensors that are only used to calculate out, for example.
Need a better way of tracking dependencies so that any function, rhs or out or other, only needs to calculate the tensors that it depends on
Could just keep all tensors in a vec, and then have a vec of indices for each tensor indicating its depenencies. Maybe a vec of
(tensor_idx, tensor_elmt_idx)
to indicate which element of which tensor it depends onThe text was updated successfully, but these errors were encountered: