I have a frozen tensorflow graph, and I'm wondering what the best method is to get the computation cost of running it(assuming it only uses deterministic operations and nothing that makes it turing complete like while loops).
Is there a way to run a static graph analysis to get either the worst case or the average case computation cost? I'm not sure what metric I should use, a possible metric is number of instructions.