Replies: 1 comment 5 replies
-
Hi again @VMM-MMV :) Yeah some nodes will be fallback to CPU but in the most cases this hasn't any impact in this case: For example some operations like unsqueeze, gather and so on will be executed on CPU because that's small computations where it would take more time to move to CUDA and detach to CPU afterwards instead of keeping on CPU All compute intensive operations like convolutions are moved and computed on the GPU The layers which are executed on CPU and which ones on GPU is also in your shared log file :) So the CPU fallback is required for some operations, additional the default configuration has some additional parameters to get the best inference latency Overview Running on CPU:
Running on GPU:
|
Beta Was this translation helpful? Give feedback.
-
I try to ocr some pdfs on the gpu, but I'm getting such warnings:
I have tried to set the provider to only gpu
But I'm getting:
Here's the verbose log
https://pastebin.com/cBZMMWpB
Some additional info:
Beta Was this translation helpful? Give feedback.
All reactions