Pytorch vs. Torchscript about GIL policy

PyTorch should use multi-processing instead of multi-threading due to GIL policy, but can torchscript have multi-threading effect because it is JIT?
Is it correct that JIT does not follow GIL policy?
So, is it correct to use Python interpreter when running Python and JIT interpreter when using Torch script?