-
This is regarding that line above. Just thought i'd ask. :) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
ReActor also uses CPU execution provider only |
Beta Was this translation helpful? Give feedback.
-
Thanks for the summary. I wasn't aware of everything you wrote, so that's very great work. |
Beta Was this translation helpful? Give feedback.
ReActor also uses CPU execution provider only
I tried to rework the code to use GPU, but this's really no performance benefit, even it causes performance drop (too long loading of GPU execution providers, VRAM usage and inability to use "deepcopy" method for an already loaded insightface analysis model)
Considering that the standard Onnxruntime (neither GPU nor Silicon version) package is installed, it has only one execution provider available (CPUExecutionProvider), so that lines
providers = onnxruntime.get_available_providers()
andproviders = ["CPUExecutionProvider"]
are totally equalonnxruntime.get_available_providers()
returns["CPUExecutionProvider"]
But I think this is more correc…