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
Tensorflow stack ops track activations for backpropping while loops. These ops maintain a stack of tensor handles that point to activations for each iteration of the while loop. We need to add support for StackPush(V?) and StackPop(V?) ops to Catamount.
These ops will require the following functionality:
Since StackPush ops need to execute before corresponding StackPop ops, we may need to implement ordering requirements (e.g., control dependencies) to ensure topological traversals consider the pushes before the pops
The data pushed in a StackPush needs to be returned in the StackPop. Corresponding ops may need to manage a backing stack of tensors to ensure we can track the shapes and values as appropriate.
The text was updated successfully, but these errors were encountered:
Tensorflow stack ops track activations for backpropping while loops. These ops maintain a stack of tensor handles that point to activations for each iteration of the while loop. We need to add support for StackPush(V?) and StackPop(V?) ops to Catamount.
These ops will require the following functionality:
The text was updated successfully, but these errors were encountered: