Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ko/docs/v002/Architecture/memory_hierarchy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ L2 캐시는 소프트웨어 관리 스크래치패드로 동작한다. 전용
3.2 Constant Cache: ISA 포인터 백엔딩 스토어
----------------------------------------------

ISA는 6비트 ``shape_ptr_addr``와 ``size_ptr_addr`` 필드를 통해
ISA는 6비트 ``shape_ptr_addr``\ 와 ``size_ptr_addr`` 필드를 통해
shape/size 메타데이터를 참조한다. 이 포인터는 Constant Cache의 64개
엔트리를 가리키며 MEMSET으로 사전 로드된다. 인코딩 규칙은
:doc:`../ISA/instructions` 를 참고한다.
Expand Down
6 changes: 3 additions & 3 deletions ko/docs/v002/ISA/dataflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
========================

이 페이지는 지시어가 디스패치된 뒤 하드웨어 내부에서 데이터가 실제로
흐르는 경로를 보여준다. 아래의 그림은 :doc:`../Architecture/top_level`의
흐르는 경로를 보여준다. 아래의 그림은 :doc:`../Architecture/top_level`\
블록 다이어그램을 지시어 관점에서 다시 정리한 것이다.

1. GEMM
Expand All @@ -15,7 +15,7 @@
:alt: GEMM 지시어 데이터 흐름

그림 5: GEMM 지시어가 디스패치될 때의 데이터 흐름.
``dest_addr``와 ``src_addr`` 는 L2 캐시 주소 공간에 존재하며,
``dest_addr``\ 와 ``src_addr`` 는 L2 캐시 주소 공간에 존재하며,
shape/size 포인터가 Constant Cache를 가리킨다.

경로 요약
Expand Down Expand Up @@ -100,7 +100,7 @@ Global Scheduler가 수행한다.
- 한 지시어는 한 번에 최대 3개의 16-bit 값(``a``, ``b``, ``c``)을 쓸 수 있다.
- 일반적으로 레이어 시작 시 (M, N, K) 튜플 초기화, 또는 가중치/활성값
스케일 팩터 주입에 사용한다.
- ``dest_cache``는 대상 캐시 bank를 선택한다(``fmap_shape`` vs.
- ``dest_cache``\ 는 대상 캐시 bank를 선택한다(``fmap_shape`` vs.
``weight_shape``).

5. CVO (SFU)
Expand Down
Loading