일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- LG Aimers 4th
- gpt
- 지도학습
- 오블완
- 회귀
- 분류
- 해커톤
- Classification
- PCA
- GPT-4
- OpenAI
- LG
- 티스토리챌린지
- deep learning
- ChatGPT
- LG Aimers
- regression
- AI
- 딥러닝
- Machine Learning
- 머신러닝
- LLM
- supervised learning
- Today
- Total
목록3학년 2학기 전공/운영체제 (12)
SYDev

경희대학교 허선영 교수님의 운영체제 수업을 기반으로 정리한 글입니다. Process in Memory1. ProcessProcess: 실행중인 프로그램Program - passive entity -> instruction의 list를 저장, disk에 위치Process - active entity -> memory에 올려진 program, program counter(다음 실행할 명령어의 위치 특정)& set of associated resources(cpu, memory, files) 2. Memory LayoutText section: program codeData section: (uninitialized and initialized) global variablesStack section: temp..

경희대학교 허선영 교수님의 운영체제 수업을 기반으로 정리한 글입니다. Part 1: OverviewGoals of this Exercise What operating systems doHow operating systems interact with user programs and computer hardware? Going Deeper! - Software Interrupt and System CallOn Unix and Linux systems, software interrupt(trap) -> system calls를 요청하기 위해 사용됨 int -> x86 processors에서 software interrupt를 호출하기 위해 사용하는 assebly language instructionex) in..

경희대학교 허선영 교수님의 운영체제 수업을 기반으로 정리한 글입니다. How Operating Systems Interact with Hardware?OS가 hardware와 소통하는 방식 -> Interrupts Device Controller각각의 특정한 device type을 담당하는 device controller가 존재 -> device를 controllex) disk controller, USB controller, graphics adapter이런 device controller들은 common bus에 의해 연결되고, common bus를 통해 shared memory에 접근 가능 -> common bus를 통해 신호를 주고받음OS는 각각의 device controller에 device ..

경희대학교 허선영 교수님의 운영체제 수업을 기반으로 정리한 글입니다. Computer Architecture von Neumann Architectureprocessing unit with arithmetic logic units & processor registersMemory stores data & instructions-> CPU와 Memory를 분리하여 명령어를 따로 저장하는 '프로그램 내장 방식'이 핵심 !!-> 기존에 하나의 기기를 스위치로 조작하던 방식 -> CPU와 메모리를 분리하고, '연산 작업'을 program memory에 순서대로 저장한 후, 해당 연산 작업이 필요해질 때 저장해놓은 program을 찾아 data 영역으로 꺼내온 뒤 입력값과 함께 전달하여 CPU에 전달해 연산작업 ..