본문 바로가기
반응형
SMALL

48

xilinx - logic level name 보기 logic level name 보기 : 1. Go to 'Synthesis Settings'. 2. Change the '-flatten_hierarchy' to none. 3. Re-Synthesize the design. (This will the ensure the full path is available) 4. Open the synthesized design. 5. In the Tools Tab, goto Timing->Check Timing. 6. Select only the 'loop' option and press ok. Resource 최적화 : http://www.xilinx.com/support/answers/9417.html 2021. 7. 1.
Tool 명령어 1. NVIDIA docker 유지하며 나가기 : ctrl +P+Q docker 실행: docker attach name(jhnamcont) docker 상태 : docker ps -a gpu사용현황 : nvidia-smi -e NVIDIA_VISIBLE_DEVICES=3 2.cmake cc file 추가 cc file code가 있는 위치에 CMakeLists.txt 에 해당 file add_executable target_link_libraries로 추가 3.IES lic 확인 : lic_check -tool ncsim lic상태확인 : lmstat -c 5280@logiclic01 -f Xelium_Single_Core lic 대기 : ncsim -licqueue 해당 레벨의 신호만 찍는다: $sh.. 2021. 7. 1.
linux 명령어 정리 linux : 1. display @@.png : image 보기 터미널에서 Screenshot 사용법 import image.png 실행하면, 십자모양 나옴.드래그. 2. find . -name “*.v” | xargs grep -l ccc 파일내의 ccc 검색 grep -inrw “찾는 문자열” ./ -i : ignore case -n : print line number -r : recursive (equivalent to -d) -w : word만 grep -rnw ‘경로’ -e ‘이름’ // ‘경로’ 안에있은 file중에 ‘이름’이 있는 것 찾기 3. ssh user@10.96.103.164 -X 접속하기 scp -r user@10.100.100.100:/user/파일경로 . 4.vimdiff a.. 2021. 7. 1.
Vim 명령어 gvim : http://math.ewha.ac.kr/~jylee/CompMath.html/unix2/ch5.html 1. grap후 내용0 or 내용1 이있는부분 라인 지우기 grap/내용0₩|내용1/을 지워라(line지우기) :g/내용0₩|내용1/d 2. 폴딩(folding) zf : 선택부분 접기 zi : 접는기능 토글(누를 때마다 접기/펴기가 토글됨) zv : 켜서 줄 보기 zo : 부분 펴기 open zc : 부분 접기 close zM : 모두 접기 zR : 모두 펴기 zd : 접은 부분 삭제 3. ggvG= gg : 처음으로 v : visual mode G : 끝으로 = : 정렬하기 4. 대소문자 변환 블럭지정후, u(소문자) , U(대문자) 5. :nohl //강조문자 없애기 6. 글자 치환.. 2021. 7. 1.
반응형
SMALL