You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/lecture_10/lecture.md
+8-4
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ function juliaset_pixel(z₀, c)
108
108
returnUInt8(255)
109
109
end
110
110
```
111
-
A nice property of fractals like Julia set is that the computation can be easily paralelized, since the value of each pixel is independent from the remaining. In our experiments, the level of granulity will be one column, since calculation of single pixel is so fast, that thread or process switching will have much higher overhead.
111
+
A nice property of fractals like Julia set is that the computation can be easily paralelized, since the value of each pixel is independent from the remaining. In our experiments, the level of granurality will be one column, since calculation of single pixel is so fast, that thread or process switching will have much higher overhead.
112
112
```julia
113
113
functionjuliaset_column!(img, c, n, j)
114
114
x =-2.0+ (j-1)*4.0/(n-1)
@@ -312,10 +312,15 @@ The execution time is much higher then what we have observed in the previous cas
0 commit comments