Performance comparison of nn.Module vs jit.ScriptModule

I am working on code that subclasses the models using jit.ScriptModule but still uses them in native python and doesnt convert it to C++ using the trace function. In this case, is there any performance benefit from using the ScriptModule or can I change all the models back to nn.Module without any degradation in speed if I am running python scripts only?