+ 1
Can you name some cpu-bound programming language?
a computer is cpu-bound when the time for it to complete a task is determined principally by the speed of the processor.
3 Respostas
+ 2
The concepts of CPU-bound and I/O-bound apply to many programming languages. For example, Python's NumPy library provides efficient arrays and math functions for CPU-bound tasks, while asyncio library provides efficient concurrency for I/O-bound tasks such as reading from a disk. Understanding these concepts is important for optimizing code performance. Libraries are available for both CPU-bound and I/O-bound tasks, depending on the specific requirements.
This article may provide more info about python optimizations.
https://leimao.github.io/blog/Python-Concurrency-High-Level/
+ 2
https://stackoverflow.com/questions/194676/what-language-platform-would-you-recommend-for-cpu-bound-application
Is this what you want?
+ 1
useful answer, thx