I am trying to implement a parallel for loop in Julia. I am familiar with MATLAB coding but not with Julia. I have noticed that MATLAB requires cell type data structure to make the parallel code run faster. I have the following doubts:
What is the alternative for "parfor" in Julia? Is there any package required to do so?
Can we use "cell" in Julia? (To distribute the memory allocation, so that each memory location can be accessed independently.)
Any reference material would also be helpful.