python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Out of Order execution and loops
I've always had the same question in mind about instruction level parallelism and loops:
How does a cpu parallelize loops? Do they execute multiple successive iterations at once? Do they execute subse...
MrUnbelievable92
Votes: 0
Answers: 0
What's the relationship between CPU Out-of-order execution and memory order?
In my understanding, CPU changes the operations order which are written on machine code for optimization and it is called out-of-order execution.
In the term "memory order", it defines the o...

hidetatz
Votes: 0
Answers: 1
frame stack size in MIPS
I am reading an introductory computer design book. The book explains the inner workings using MIPS, is very information dense and expects the reader to connect the dots.
This is the c code:
main ()
{
...

sanjihan
Votes: 0
Answers: 0
How many ALU operations can run in parallel on modern x86_64?
How many ALU operations can run in parallel on modern x86(_64) CPUs when each instruction has no dependency to others? It would obviously depend on a specific model, but then, where can I find such in...
xiver77
Votes: 0
Answers: 0