일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vim
- 운영체제
- 소비자 생산자
- parallel programming
- multiprocessor
- GPU
- cdua
- thread
- Linux
- C
- vi
- ubuntu
- Process
- .cu
- OS
- Producer consumer
- Virtual Address
- CSAPP
- Unified Memory
- GPGPU
- gpgpu-sim
- Multithreading
- tabedit
- gpgpu sim
- CUDA
- nvidia
- peer-to-peer access
- ostep
- vi 여러 창
- unix
- Today
- Total
목록전체 글 (58)
하루의 대학원 도전기
https://zenodo.org/record/5787410 GPU-Sched This is the artifact for the upcoming PPoPP 2022 publication CASE: A Compiler-Assisted SchEduling Framework for Multi-GPU Systems. zenodo.org 우선 CASE의 zip 파일을 받아줍니다. 빌드를 시작하기 전에 필요한 tool들의 버전을 알맞은 버전으로 맞춰주어야 합니다. 필요한 것은 다음과 같습니다. 1. cmake (v.3.10.2) 2. llvm (v.9.0.0) 3. CUDA (v.10.2) CUDA 설치 방법 https://developer.nvidia.com/cuda-10.2-download-archive?ta..
Vim에 여러 가지 플러그인을 설치하기 위해선 플러그인 관리자 Vundle을 사용해야 합니다. Vundle을 설치하는 방법은 다음과 같습니다. git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim vundle 플러그인을 clone 해줍니다. 그 다음 ~/.vimrc 파일을 열어 다음을 추가해줍니다. set nocompatible filetype off set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'VundleVim/Vundle.vim' call vundle#end() filetype plugin indent on " Brief help " :PluginL..
https://docs.google.com/presentation/d/146YVA6RU8pbQw230Gi2qAaCwPPcxnb1hDXQ1ZhTJJOw/edit?usp=sharing PROACT presentation Efficient Multi-GPU Shared Memory via Automatic Optimization of Fine-Grained Transfers Paper review by Yunchae Choi ISCA 21, June 2021 University of Michigan - Harini Muthukrishnan, Jeffrey A. Fessler, Thomas F. Wenisch NVIDIA - David Nellans, Daniel Lusti docs.google.com ISCA..
https://coffeebeforearch.github.io/2020/03/30/gpgpu-sim-1.html Working with GPGPU-Sim - Introduction Working with GPGPU-Sim - Introduction coffeebeforearch.github.io
https://developer.download.nvidia.com/CUDA/training/cuda_webinars_GPUDirect_uva.pdf Peer-to-Peer & Unified Virtual Addressing
출처: https://wooono.tistory.com/259 [Linux] vi에서 여러줄 주석처리/해제하는 방법 여러줄 주석처리 하는 방법 esc로 명령모드 들어가기 v를 눌러 visual 모드로 들어가, 주석처리를 원하는 부분 선택 : 키 누르기 norm i 타이핑 norm i# norm i// 여러줄 주석 해제하는 방법 wooono.tistory.com visual mode로 여러 줄 선택 후, :norm i// 로 주석 처리 :norm 2x 로 앞 두 글자 삭제 (e.g., //)
출처: https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=jayeonsaram&logNo=220648947768 [Linux] vim 유용한 명령 vim 사용 시, 개인적으로 활용하는 명령들입니다. 1. 함수원형찾기 원하는 함수명 위에서 [i 누르면 하단에... blog.naver.com
https://www.nvidia.com/docs/IO/116711/sc11-cuda-c-basics.pdf add() 함수를 만들어 HOST에서 호출하는 예제입니다. 출처 : NVIDIA