Skip to content

Provide parallel methods to check file systems instead of using SystemTools.

Andrew Bauer requested to merge acbauer/paraview:filestats_on_proc0 into master

For config information, plugins, etc. we are having each pvserver/pvbatch process check the file system for information through VTK's SystemTools class. This is very inefficient when going to moderate to high process counts. Changes are to have process 0 check information and then broadcast that out. PVSystemTools is the main class that does that and really just wraps a lot of SystemTools methods to work better in parallel. PVDirectory was also added but used less.

Merge request reports