일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- parallel programming
- Virtual Address
- Process
- 소비자 생산자
- cdua
- nvidia
- unix
- Linux
- .cu
- C
- ostep
- ubuntu
- tabedit
- gpgpu-sim
- Multithreading
- 운영체제
- GPU
- gpgpu sim
- CUDA
- vi 여러 창
- GPGPU
- OS
- thread
- Producer consumer
- CSAPP
- vi
- multiprocessor
- peer-to-peer access
- Unified Memory
- vim
- Today
- Total
목록프로그래밍 (16)
하루의 대학원 도전기
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://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
출처 ㅣ: https://docs.oracle.com/javase/1.5.0/docs/api/java/util/concurrent/BlockingQueue.html BlockingQueue (Java 2 Platform SE 5.0) boolean offer(E o, long timeout, TimeUnit unit) Inserts the specified element into this queue, waiting if necessary up to the specified wait time for space to become available. docs.oracle.com class Producer implements Runnable { private final BlockingQueue queue; Pr..
출처 : https://www.cyberciti.biz/faq/vim-undo/ How to Undo in Vim / Vi text editor This page explains how to undo recent changes and editing in Vim / vi text editor under Linux, macOS, and Unix-like operating systems. www.cyberciti.biz normal mode에서 u를 누르면 undo를 할 수 있습니다. ctrl+r은 redo what's undone.
출처 : https://bowbowbow.tistory.com/15 [리눅스] ctags 사용법 [리눅스]ctags 사용법 [리눅스]ctags 사용법 ctags 란? ctags의 장점 ctags 설치 ctags 생성 ctags 사용법 tags 파일 열기 사용법 vim 에디터와 연동하기 ctags 명령어 ctags 란? ctags 란, 프로그래밍 소스코드.. bowbowbow.tistory.com 소스코드 내에서 함수나 변수 등이 어떤 파일 안에 있는 지 찾는 것을 도와주는 ctags 입니다. 보통 기본적으로 설치되어 있으며, 설치되어 있지 않다면 sudo apt-get install ctags 로 설치해주시면 됩니다.