반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Pyverilog 설치
- 클럭 게이팅
- Pyverilog 튜토리얼
- Makefile compile
- DNN 가속기
- CUDA
- pyverilog 설치 오류
- 컨벌루션 연산
- AMBA
- CDC
- Pyvrilog tutorial
- 남산업힐
- Pyverilog 실행
- 대구 반도체 설계기업 특화
- makefile
- linux c 컴파일
- 이진수 곱셈 알고리즘
- linux makefile 작성
- 딥러닝 가속기
- CLOCK GATING
- pygraphviz 설치 오류
- 데이터 해저드
- Design DNN Accelerator
- pytest-pythonpath 설치 오류
- gpgpu-sim
- DNN Accelerator
- linux c++ 컴파일
- gcc 컴파일
- systolic array
- Data HAzard
Archives
- Today
- Total
목록numpy 16진수 저장 (1)
오늘은 맑음
Numpy array file Read/Write
numpy array를 txt파일로 저장하고 읽는법 Write np.savetxt('file_name.txt', 'target array') 추가적으로 저는 fmt옵션을 자주 사용하는데 decimal / hex로 저장할때 옵션을 사용합니다. ex) np.savetxt('file_name.txt', 'target array', fmt = '%x') # hex값으로 저장 Read array = np.genfromtxt('file_name.txt') 여기에도 다양한 옵션이 존재하지만 주로 다양한 옵션은 numpy document를 참조하시기 바랍니다.
Tip
2020. 5. 20. 23:59