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
- SSIM
- posterior collapse
- public key
- prompt engineering
- Grad-CAM
- 귀납
- Design Patterns
- PSNR
- Transductive Learning
- url
- 디자인 패턴
- 생성 모델
- 대칭키
- ARIMA
- Google Cloud
- DeepLearing.AI
- 연역
- GCP
- 생성 모델 평가
- session 미종료
- Vertex AI
- tmux
- uri
- ChatGPT
- Inductive Learning
- mode collapse
- python3
- cam
Archives
- Today
- Total
목록Computer Science/Operating Systems (1)
데이터 과학 노트
Process vs. Thread (프로세스와 스레드 차이)
프로그램 (Program) 어떤 작업을 위해 실행할 수 있는 파일 프로세스 (Process) 프로세스: 실행 중인 프로그램 할당받는 자원 CPU 시간 스레드 (Thread) 스레드: 프로세스 내에서 실행되는 흐름의 단위 할당받는 자원 스레드는 각각 Stack, Register 할당, (Code, Data, Heap 공유) 메모리 구조 Code (Text): Data: 지역 변수, 매개 변수 (static) Data: 초기화된 정적 변수 BSS (block started by symbol): 초기화되지 않은 정적 변수 Heap: 사용자 할당 동적 변수 (malloc) Stack: non-static local variables 멀티 프로세스 vs 멀티 스레드 참조 참조 Difference between P..
Computer Science/Operating Systems
2023. 3. 20. 03:48