<div dir="ltr">Hello,<div><br></div><div>  I'm working with a dataset in tecplot format. Each processor generates a separate file for its own part of the domain. I read all of them in, merge the datasets using the group datasets filter and then visualize them (make contours etc.). </div><div><br></div><div><div>nProcs = len(glob.glob('scalar-*dat'))</div><div>allOutData = []</div><div><br></div><div>for i in range(1,nProcs+1):</div><div>    # create a new 'Tecplot Reader'                     </div><div>    allOutData.append(TecplotReader(FileNames=['out-{}-{:05d}.dat'.format(sys.argv[1],i)]))<br></div><div>    allOutData[-1].DataArrayStatus = ['u', 'v', 'w', 'P', 'phi', 'node']</div><div><br></div><div># # create a new 'Group Datasets'</div><div>groupDatasets1 = GroupDatasets(Input=allOutData)<br></div></div><div><br></div><div>How can I speed this up? The reading of the data seems to be the most time consuming part. So running paraview in parallel is not really helping as now each processor has to read all the files as opposed to just one processor eariler. </div><div><br></div><div>ganesh</div></div>