Hi, I have an array of composite type
A = Array{MyType}(N)
that have been initialized somewhere else.
Currently, I am doing this operation
for i=1:N
doit!(A[i])
end
I would like to perform this operation in parallel (threads if possible on
a single computer) but SharedArray does not accept composite types.
Thank you for your suggestions,
R
