Make vtkWrapHierarchy 5x faster on Windows
When VTK's Python wrapper is used at application level, vtkWrapHierarchy takes several minutes to create hierarchy file for each larger library, because there are hundreds of include directories (all the directories of ITK, VTK, and other dependencies) and hundreds of header files to locate.
It turns out that the root cause is that on Windows, checking existence of a random file using stat function (or any Window-specific API) is very slow.
It is magnitudes faster to iterate through all the files in a folder. For example, iterating through a total of 17000 files in 600 include folders just takes 1-2 seconds. Therefore, checking existence of a file can be made about 5x faster by collecting a list of all the files in include directories and use that list to check if the file exists.
Co-authored-by: @lassoan
Merge request reports
Activity
added lang:python label
Errors:
- commit 2be6b130 is not allowed because the following files are not formatted according to the 'clang-format' check:
Wrapping/Tools/vtkParsePreprocess.c
. Post a comment ending in the lineDo: reformat
to rewrite the MR source branch automatically.
Warnings:
- please consider adding a changelog entry in a file ending with
.md
inDocumentation/release/dev
. - the merge request is marked as a work-in-progress.
The warnings do not need to be fixed, but it is recommended to do so.
Please rewrite commits to fix the errors listed above (adding fixup commits will not resolve the errors) and force-push the branch again to update the merge request.
- commit 2be6b130 is not allowed because the following files are not formatted according to the 'clang-format' check:
Errors:
- commit 2be6b130 is not allowed because the following files are not formatted according to the 'clang-format' check:
Wrapping/Tools/vtkParsePreprocess.c
. Post a comment ending in the lineDo: reformat
to rewrite the MR source branch automatically. - commit d848a12d is not allowed because the following files are not formatted according to the 'clang-format' check:
Wrapping/Tools/vtkParsePreprocess.c
. Post a comment ending in the lineDo: reformat
to rewrite the MR source branch automatically.
Warnings:
- please consider adding a changelog entry in a file ending with
.md
inDocumentation/release/dev
. - the merge request is marked as a work-in-progress.
The warnings do not need to be fixed, but it is recommended to do so.
Please rewrite commits to fix the errors listed above (adding fixup commits will not resolve the errors) and force-push the branch again to update the merge request.
- commit 2be6b130 is not allowed because the following files are not formatted according to the 'clang-format' check:
added 154 commits
-
91add508...71085392 - 150 commits from branch
vtk:master
- 0102a662 - Wrapper hash table to track existing headers
- df5918d8 - Manage the cleanup of wrapper file system cache
- 31c4c538 - Handle filename case-insensitivity issue in wrappers
- e13acc12 - Make a list of headers that cannot be found
Toggle commit list-
91add508...71085392 - 150 commits from branch
@ben.boeckel @lassoan this relates to our discussion on discourse.
mentioned in commit fbcdb5d8
mentioned in merge request !8039 (merged)
mentioned in merge request !10624 (merged)