subject

Acisc (complex instructions set computer) machine has cpls of 4 for loadstore, 3 for alu/branch, 10 for call/return and cpu clock rate of 1.75 ghz. risc (reduced instructions set computer) machine has a cpi of 1.2 (as it is pipelined) and cpu clock rate of 1 ghz. cisc machine uses complex instructions so the cisc version of the benchmark is 40% less than the same benchmark on the risc machine (that is, cisc ic is 40% less than risc ic). the benchmark has a breakdown of: 38% loads, 10% stores, 35% alu operations, 3% calls. 3% returns, and 11% branches. which machine can run the benchmark in less time?

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 22:40
Least square fit to polynomial write a function leastsquarefit3pol that solves a linear system of equations to find a least squares fit of a third order polynomial to an experimental data set given as two row arrays. the function leastsquarefit3pol must explicitly solve a set of linear equations and cannot use polyfit. there should be no restriction on the size of the problem that can be solved.
Answers: 1
question
Computers and Technology, 23.06.2019 04:10
2pointswho was mikhail gorbachev? oa. a russian leader who opposed a coupob. a polish leader who founded the labor union "solidarityoc. a soviet leader who called for a closer relationship with the unitedstates, economic reform, and a more open societyd. a soviet leader who called for more oppression in the soviet union
Answers: 3
question
Computers and Technology, 24.06.2019 00:20
The guy wire bd exerts on the telephone pole ac a force p directed along bd. knowing the p must have a 720-n component perpendicular to the pole ac, determine the magnitude of force p and its component along line ac.
Answers: 2
question
Computers and Technology, 24.06.2019 18:20
Acommon algorithm for converting a decimal number to binary is to repeatedly divide the decimal number by 2 and save the remainder. this division is continued until the result is zero. then, each of the remainders that have been saved are used to construct the binary number.write a recursive java method that implements this algorithm.it will accept a value of int and return a string with the appropriate binary character representation of the decimal number.my code: public class lab16{public string converttobinary(int input){int a; if(input > 0){a = input % 2; return (converttobinary(input / 2) + "" +a); } return ""; } }
Answers: 1
You know the right answer?
Acisc (complex instructions set computer) machine has cpls of 4 for loadstore, 3 for alu/branch, 10...
Questions