Pergunta de entrevista da empresa NVIDIA

what is the 3 Cs in cache miss?

Respostas da entrevista

Sigiloso

27 de fev. de 2018

Compulsory/ Cold start miss - Cannot be avoided no matter the cache size / associativity. Any data/instruction needs to be fetched for the first time. Capacity Miss - Due to the limitation of the cache size. Can be avoided by using a larger cache. Conflict Miss - No matter the size, multiple blocks will eventually be mapped to the same location. So one of them needs to be evicted. Can be made better by using a cache with higher associativity. Or use a victim cache.

2

Sigiloso

9 de fev. de 2017

compulsory miss, capacity miss, confict miss

1