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
- transactional memory
- ISA
- Cache
- mesi
- theta join
- moesi
- 관계형 모델
- load linked
- directory based coherence protocol
- cache coherence
- speculative execution
- structural hazard
- dynamic scheduling
- relational model
- nonblocking cache
- cache coherence miss
- pipline hazards
- pipelined cache
- register renaming
- atomic exchange
- multibanekd cache
- pipelined
- dependence
- way prediction
- sql
- branch prediction
- store conditional
- Subquery
- sequential consistency
- cache optimization
Archives
- Today
- Total
목록atomic exchange (1)
공대생의 공부흔적
[컴퓨터구조#12-1] 동기화 (Synchronization) - Lock, Atomic exchange, LL-SC, Transactional Memory
참고: Computer Architecture: A Quantitative Approach (5th edition) - 5.5.이번 글에서는 동기화에 대해 알아볼 것이다.목차LockLock을 위한 하드웨어 지원: exchLock을 위한 하드웨어 지원: LL&SCTransaction Memory1. Lock프로그래밍 시 Lock을 사용하는 이유는, 병렬 프로그램에서 *data race condition을 회피하기 위함이다. *data race condition: 공유 메모리 시스템에서, 여러 쓰레드가 정해지지 않은 순서로 공유 메모리 위치에 접근하는 경우. 이때 적어도 하나의 접근은 쓰기인 경우.예시) total_count가 global variable인 경우, 적절한 동기화 없이 모든 쓰레드가 total..
Computer Architecture
2024. 6. 7. 16:46