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 | 31 |
Tags
- load linked
- dynamic scheduling
- ISA
- pipelined cache
- 관계형 모델
- sql
- store conditional
- moesi
- speculative execution
- cache coherence miss
- multibanekd cache
- cache optimization
- Subquery
- Cache
- structural hazard
- cache coherence
- pipline hazards
- mesi
- atomic exchange
- pipelined
- register renaming
- theta join
- directory based coherence protocol
- sequential consistency
- way prediction
- dependence
- relational model
- branch prediction
- transactional memory
- nonblocking cache
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