Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- mesi
- register renaming
- structural hazard
- dynamic scheduling
- cache optimization
- dependence
- relational model
- Cache
- branch prediction
- Subquery
- sql
- store conditional
- multibanekd cache
- pipline hazards
- pipelined cache
- directory based coherence protocol
- sequential consistency
- transactional memory
- cache coherence miss
- ISA
- pipelined
- atomic exchange
- way prediction
- theta join
- moesi
- nonblocking cache
- load linked
- cache coherence
- 관계형 모델
- speculative execution
Archives
- Today
- Total
목록sequential consistency (1)
공대생의 공부흔적
[컴퓨터구조#12-2] 일관성 (Consistency) - Memory Consistency, Sequential Consistency, Relaxing SC
참고: Computer Architecture: A Quantitative Approach (5th edition) - 5.6.이번 글에서는 일관성(consistency)에 대해 알아볼 것이다.목차Consistency란?Sequential consistencyRelaxing SCEnforcing SC1. Consistency란?프로세서는 새로운 값을 언제 봐야 할까? A,B를 shared variable이라 하고 다음과 같은 상황을 생각해보자.P1:A = 0;P2:B = 0; .... .... A = 1; B = 1;L1:if (B==0) ...L2:if (A==0) ...P1에서 L1에 도달했다는 것은, P2에서 B=1;을 아직 실행하지 않은 상태라는 것을 의미한다. 반대의 경우도 마찬가지이다. 즉 L..
Computer Architecture
2024. 6. 8. 15:08