본문 바로가기
SMALL

전체 글50

git 사용법 - sourcetree git 기본 사용법. window용 git program은 https://www.sourcetreeapp.com/ 에서 설치.기본적인 연동방법은 http://hackersstudy.tistory.com/41 참조. shell에서는, 1. 기본적으로 git 과 연동.> git clone http://username@150.123.123.123/git_name/name_rep.git 연동된뒤, 2. file을 다운받을 폴더로 간뒤> git pull : 저장소 -> local로 갱신. 3. 변경할 파일이 있으면,> git add * : 파일추가 4. log 남기고, commit 시키기.> git commit -m "log" 5. 저장소에 저장하기.> git push 그외. 저장소의 file을 삭제하고 싶으면,.. 2016. 10. 25.
[bug_report] inferring latches for variable "<name>" vivado synthesis 시, inferring latch(es) for variable "" 과 같은 warning이 발생할때, 해결방법. 기본적으로 coding style에 문제 가 있음 추천 할만한 해결방법으로 altera가 잘 설명해놓음. 참조 : http://quartushelp.altera.com/14.0/mergedProjects/msgs/msgs/wvrfx2_l2_veri_always_id_holds_value.htm CAUSE: In an always construct at the specified location in a Verilog Design File (.v), you updated the valu.. 2016. 10. 21.
xilinx - ultrascale timing / constraint / implementation 참조. ug949 - 문서 참조. 1. I/O path 무시 command : config_timing_analysis -ignore_io_paths yes 2. 1xclk & 2xclk (sync.) 사용 : clock uncertainty 제거할 필요가 있음. BUFG_DIV 사용 권장. 2016. 10. 19.
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.
LIST