반응형
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 |
Tags
- pygraphviz 설치 오류
- Pyverilog 튜토리얼
- CDC
- pyverilog 설치 오류
- Data HAzard
- 컨벌루션 연산
- makefile
- 딥러닝 가속기
- 대구 반도체 설계기업 특화
- Pyvrilog tutorial
- DNN Accelerator
- 클럭 게이팅
- 이진수 곱셈 알고리즘
- pytest-pythonpath 설치 오류
- 남산업힐
- gpgpu-sim
- Pyverilog 실행
- AMBA
- systolic array
- linux c 컴파일
- 데이터 해저드
- CLOCK GATING
- CUDA
- Makefile compile
- Pyverilog 설치
- DNN 가속기
- linux c++ 컴파일
- Design DNN Accelerator
- gcc 컴파일
- linux makefile 작성
Archives
- Today
- Total
목록numpy array file read write (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