Compile Pytorch model for iOS

Since I have model library and runtime library in my hands now, I’m working on writing an inference code. Unfortunately, I’m having problems from the very beginning:

m_mod = tvm::runtime::Module::LoadFromFile(“/Applications/Algoface-Landmarks-Tracker.app/model.dylib”);

The problem here is that I can not identify a path to .dylib file because I can’t find it in my Application package. Could you please give me an advice on how can I do that?

Also, if I’m not mistaken, App Store forbids usage of .dylib files inside the iOS application. What modifications should I do in order to have TVM in my application not worrying that App Store forbids its upload?