Exclude subgraph from codegen

I have a codegen, let’s call it “npz”, and I have the Bert graph I want to run. there are 2 minor subgraphs that i want to run on the fallback of TVM and the rest in my codegen. Since the operators in the subgraphs Running on TVM are not unique but they are also found in the rest of the graph, I use pattern table to get those 2 subgraphs. But - how can I run the whole graph on my codegen “npz”, and only the 2 subgraphs on TVM? the annotation and partition pass are working on the opposite and I dont find a way to “exclude” the pattern from my codegen while it becomes the default. thx to helpers!