From 5e94c18c48ebb08aa7eefbb6ceeb940687445c81 Mon Sep 17 00:00:00 2001 From: Joseph Melber Date: Wed, 30 Oct 2024 16:28:21 -0600 Subject: [PATCH] Update to pg/section-3 README --- programming_guide/section-3/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programming_guide/section-3/README.md b/programming_guide/section-3/README.md index 61ddbe3a98..60275927c9 100644 --- a/programming_guide/section-3/README.md +++ b/programming_guide/section-3/README.md @@ -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