@SidneyLann no please reread my post. I’m saying samediff now has an eager mode that runs during model import. This uses more memory because we store intermediate results while the graph is executing.
Does SameDiff has an eager mode like that in tf2.x? Or they are different things?
@SidneyLann it’s mainly used for model import right now. Think of it as a half eager mode that we want to extend to allow for general use. There are some limitations right now like not being properly integrated in to the multi threaded sessions etc where normal arrays are stored.
Eager mode computed op outputs have their own separate storage that is specifically built for model import use cases. The beginnings of a real eager mode are there though yes.