Contrib ops and Graph Optimization #23178
Unanswered
tarekziade
asked this question in
API Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am implementing a contrib operation that replaces
MatMulIntegerToFloat
. I could rewrite the graph to have my operation used instead of the other one.However, the graph optimizer will replace
MatMulInteger
to usingMatMulIntegerToFloat
inMatMulIntegerToFloatFusion
so my contrib ops will not be used in replacement ofMatMulIntegerToFloat
since the optimization step occurs when the session is created.Is there a way around this? Thanks
Beta Was this translation helpful? Give feedback.
All reactions