# Questions about getting started with parallel computing

**URL:** https://discourse.julialang.org/t/questions-about-getting-started-with-parallel-computing/25341
**Category:** Julia at Scale
**Created:** [June 16, 2019, 6:09am UTC](https://discourse.julialang.org/t/questions-about-getting-started-with-parallel-computing/25341 "2019-06-16T06:09:47Z")
**Posts on this page:** 1
**Showing post:** 9

<div class="post-metadata">

### Author: ![johnh](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/johnh/32/3615_2.png) [@johnh](https://discourse.julialang.org/u/johnh)
#### Post date: [June 16, 2019, 7:36am UTC](https://discourse.julialang.org/t/questions-about-getting-started-with-parallel-computing/25341/9 "2019-06-16T07:36:41Z")

</div>

Rhis is an article concerning vectorisation in Julia.  
I think your loop should vectorise well - each i is independent.  
[https://juliacomputing.com/blog/2017/09/27/auto-vectorization-in-julia.html](https://juliacomputing.com/blog/2017/09/27/auto-vectorization-in-julia.html)

You also consider the type of the array which you use. Is N a fixed size?

> [@Whats the difference between a regular array and an array from StaticArrays](https://discourse.julialang.org/t/whats-the-difference-between-a-regular-array-and-an-array-from-staticarrays/14454/2):
>
> The type of a regular Julia Array only includes the number of dimensions, not the size: julia\> typeof(Array{Int64}(3)) Array{Int64,1} julia\> typeof(Array{Int64}(10)) Array{Int64,1} julia\> typeof(Array{Int64}(1000000)) Array{Int64,1} so the difference between a StaticArray and an Array is exactly what the docs here say: [https://github.com/JuliaArrays/StaticArrays.jl](https://github.com/JuliaArrays/StaticArrays.jl) , namely that the size of a StaticArray is actually part of the type: julia\> typeof(SVector(0, 0)) StaticArrays.SArray{Tuple{2}…

---

_[View the full topic](https://discourse.julialang.org/t/questions-about-getting-started-with-parallel-computing/25341)._
