Lazy-import heavy modules for faster startup#219
Open
oxysoft wants to merge 1 commit intoGourieff:mainfrom
Open
Lazy-import heavy modules for faster startup#219oxysoft wants to merge 1 commit intoGourieff:mainfrom
oxysoft wants to merge 1 commit intoGourieff:mainfrom
Conversation
Move torchvision, insightface, scipy, cv2, segment_anything, ultralytics, and onnxruntime imports from module top-level into function bodies. This defers loading until actual use, reducing import time from ~7.6s to ~0.04s during ComfyUI startup.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
torchvision,insightface,scipy,cv2,segment_anything,ultralytics, andonnxruntimeimports from module top-level into function bodiesDetails
ComfyUI imports all custom nodes at startup to discover
NODE_CLASS_MAPPINGS. The current top-level imports pull in torchvision (~3.7s), insightface + albumentations (~2.0s), and scipy (~1.75s) even before any node is used.By moving these imports into the methods that actually need them, the node classes register instantly and libraries only load when a user first queues a workflow that uses ReActor.
14 files modified. No functional changes — just import relocation.
Test plan
python -X importtimeor similar