The ListDiff op in tensorflow1 call for support

Hello,

I am running a network from tensorflow1 using .pb format model.

And I find the " ListDiff " op hasn’t been supported:

NotImplementedError: The following operators are not implemented: {'ListDiff'}

Can anyone help me or tell how to add this op? Thank you.

1 Like

Hi, TVM don’t support ListDiff op now. But you can check your model, in many cases the input sub-graph of ListDiff op is const value, and fold_constants pass in Tensorflow may help to fold this op.