Re: [julia-users] @parallel and HDF5 is posible to work together?

2015-09-04 Thread René Donner
Only process number 1 has the actual underlying file handle. Therefore all other workers, when trying to read, report that the file is unaccessible. You could try to designate one worker for the reads, i.e. use something along the lines of @fetchfrom 1 dset=fid["punkty"*string(i)] You could

[julia-users] @parallel and HDF5 is posible to work together?

2015-09-01 Thread paul analyst
@parallel and HDF5 is posible to work together? julia> addprocs(6) 6-element Array{Any,1}: 2 3 4 5 6 7 julia> @parallel for i=1:l dset=fid["punkts"*string(i)] f=vec(h5read("F.h5","F",(:,i))); . end WARNING: Module HDF5 not defined on process 2 WARNING