parfor with BioIndexedFile?
이전 댓글 표시
Is it possible to use parfor with a BioIndexedFile? I have tried, and Matlab seems to gag on it.
Example:
B=BioIndexedFile('fastq','P.fastq');
parfor n=1:1e6
a=read(B,n);
%some operations here
end
It doesn't seem to matter how simple the operations are. The machine runs out of memory, and doesn't seem to start the task. Perhaps it is trying to make a copy of the BioIndexedFile for each worker?
답변 (1개)
Walter Roberson
2015년 11월 13일
0 개 추천
You might possibly be able to take advantage of http://www.mathworks.com/matlabcentral/fileexchange/31972-worker-object-wrapper
카테고리
도움말 센터 및 File Exchange에서 Speech Recognition에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!