Hi! When running tensorflow js node version, are all cores working? are there any problems? If anyone can post a screenshot of how the processor cores work, thank you. Without GPU.
Hi @gotostereo ,
I apologies for the delay in my response. TFJS in Node.js runs on a single CPU core by default and does not automatically utilize multiple cores. To leverage all CPU cores, you’ll need to manually implement worker threads for parallel processing. You can monitor CPU core utilization while running your Node.js application. On Windows, use Task Manager → Performance tab. On macOS, check Activity Monitor → CPU.
Let me know if it helps.
Thank You!!