Parallel execution of computation graph

Sorry for some basic questions, but interpreter in JIT seems to run all the operators in a sequence. Can it be assumed that JIT based execution of computation-graphs are sequential unless we use “torch.script._fork” and “future.wait()” primitives? Or am I missing something basic :slight_smile:

Yes, that is correct

Thanks for the response :slight_smile: