본문 바로가기
반응형
SMALL

일/Tips19

fio file generation & split > vi gen_file [global]bs=4kiodepth=8size=10mdirect=1buffer_compress_percentage=0 #0~100 압축률.directory=./.filename=test [job1] > fio gen_file test file 생성. > split --bytes=4096 --additional-suffix=뒷단에붙을이름 test 4K단위로 쪼개어진, 총 10MB의 file들이 생성. 2016. 8. 18.
fio 설치 & 사용방법. fio 설치 > # yum install gcc -y# yum install libaio-devel -ydownload http://freecode.com/projects/fio# wget -O /var/usr/fio-2.1.10.tar.gz http://freecode.com/urls/3aa21b8c106cab742bf1f20d60629e3f# tar xf fio-2.1.10.tar.gz# cd fio-2.1.10# ./configure# make(make install)fio 사용법 > http://linux.die.net/man/1/fio - 출처 Namefio - flexible I/O tester Synopsisfio [options] [jobfile]... Descriptionfio is a .. 2016. 8. 17.
How to reduce Place & Route time in vivado Using Incremental Implementation in Vivado Implementation 시, 시간 단축을 위해 이전에 imp. 해놓은 .dcp file을 이용하여, 시간을 단축하는 방법. 2016. 7. 29.
gprof / gprof2dot 사용법. gprof : linux에 기본으로 설치되어있음.gprof2dot 은 설치해야함.> yum install graphviz gprof를 동작시키려면, configure file에 CFLAG 옵션에 -pg 를 삽입.ex> pngquant의 경우,> ./configure --enable-debug CFLAGS=-pg> make를 하고, 프로그램을 실행시키면 gmon.out이라는 파일이 생성됨.> ./pngquant -f -v 256 test/img/test.pnggmon.out 이 생성됨.> gprof ./pngquant gmon.out > profile.txtprofile 된 file 출력됨.> gprof ./pngquant gmon.out | ./gprof2dot.py | dot -Tpng -o outpu.. 2016. 6. 14.
반응형
SMALL