Parallelisation Flashcards

1
Q

Parallelisation

A

Allows you to perform multiple operations at the same time on a computer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Transitive dependencies

A

Basically when a variable indirectly depends on another variable.
E.g. int a = 42 // P1 writes to a
int b = a // P2 reads from a
int c = b // P3 reads from b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly