Skip to content

Commit

Permalink
Update to pg/section-3 README
Browse files Browse the repository at this point in the history
  • Loading branch information
jgmelber authored Oct 30, 2024
1 parent 43197ac commit 5e94c18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions programming_guide/section-3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ We also need to declare that the compute core will run an external function: a k

```python
# Type declarations
tensor_ty = np.ndarray[(4096,), np.dtype[np.int16]]
tile_ty = np.ndarray[(1024,), np.dtype[np.int16]]
tensor_ty = np.ndarray[(4096,), np.dtype[np.int32]]
tile_ty = np.ndarray[(1024,), np.dtype[np.int32]]
scalar_ty = np.ndarray[(1,), np.dtype[np.int32]]

# AIE Core Function declarations
Expand Down

0 comments on commit 5e94c18

Please sign in to comment.