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

경희대학교 컴퓨터공학부 김정욱 교수님의 컴퓨터 구조 강의 내용을 기반으로 한 정리글 Compiled MIPS Code Examples program variables에 registers 할당 procedure code 작성 호출되면서 preserve registers Swap Function void swap(int v[], int k) { int temp; temp = v[k]; v[k] = v[k + 1]; v[k + 1] = temp; } 1. Allocate registers to program variables v[], k -> $a0, $a1에 저장 temp -> $t0 2. Produce code for the body of the procedure swap: sll $t1, $a1, 2#k..
3학년 1학기 전공/컴퓨터 구조
2024. 4. 5. 01:49