I have a CustomConv2d module which subclasses nn.Conv2d. When I run fx.symbolic_trace, it does not stop at CustomConv2d, but will rather trace into it and generate a graph with conv_weights, F.conv2d, etc.
How to inform fx to treat CustomConv2d as an end node?