Parallelisation Flashcards
1
Q
Parallelisation
A
Allows you to perform multiple operations at the same time on a computer.
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