answersLogoWhite

0

What is a compute bound program?

Updated: 12/24/2022
User Avatar

Wiki User

16y ago

Best Answer

In general, applications are I/O bound or processor bound, meaning that the process is waiting for either I/O or everything else is waiting for the processor to finish working.

With the speed of today's CPU's, most modern applications are NOT processor bound, meaning that we're typically not waiting for the processor to finish what it's doing. Usually we're waiting for some kind of I/O process to complete.

Many times we're I/O bound when we have insufficient memory and the operating system has to "swap" an application or parts of an application out to swap space (virtual memory) on the disk. Moving an application into and out of virtual memory becomes very time consuming and is often the reason people are advised to add more Random Access Memory (RAM) to make the computer run faster.

User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a compute bound program?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the verb for computer?

The verb for computer is compute.Other verbs are computes, computing and computed."I am computing"."We have computed the program""I like to compute".


Write a pascal program that compute an area of a triangle?

{A program to compute the area of a triangle} {by Ogboin W. Meshach} Var; b,h:real; BEGIN Writeln('Triangle'); Write('Base: '); Readln(base); Write('Height: '); Readln(height); area:=0.5*base*height; Writeln('Area: ', area :0:2); End.


What are high level and low level scheduling?

Explain briefly the meaning of an input-output (1/0) bound program, and a processor (CPU) bound program.


Write a c program to find Volume and surface area of cube?

Write a c program to compute the surface area and volume of a cube


Design and develop a simple application program that will compute the sum of two numbers?

This isn't a question!


What BASIC program can compute and display all prime numbers from 1 to 40?

PRINT 2,3,5,7,11,13,17,19,23,29,31,37


Write a program in c plus plus to compute first of non-terminal?

there is no solution of this problem...........that's it..........


What is input -output bound program?

input output bound program is a program (or process in precise way), which spends most of time allocated to it for execution, on input/output devices and need very small CPU time for it.


What is the assembly program to generate a geometric series and compute its sum The inputs are the base root and the length of the series The outputs are the series elements and their sum?

What is the assembly program to generate a geometric series and compute its sum The inputs are the base root and the length of the series The outputs are the series elements and their sum?


Impact of CPU utilization by increasing CPU speed?

Increasing CPU speed will maintain the current level of CPU utilization, in the case where the process mix is compute bound, or decrease CPU utilization, in the case where the process mix is I/O bound.


Distinguish between a CPU-bound process and an io- bound process?

A program is CPU bound if it would go faster if the CPU were faster, i.e. it spends the majority of its time simply using the CPU (doing calculations). A program that computes new digits of π will typically be CPU-bound, it's just crunching numbers. A program is I/O bound if it would go faster if the I/O subsystem was faster. Which exact I/O system is meant can vary; I typically associate it with disk. A program that looks through a huge file for some data will often be I/O bound, since the bottleneck is then the reading of the data from disk.


Write a c plus plus program to compute two integers?

int x= 1; int y= 2;