Skip to content

Commit 7bb3748

Browse files
FPGA: Fix IS_BSP flow for pca and qri (#2501)
This change addresses a bug in the full-system flow where a pointer was not being passed into MatrixReadPipeToDDR.
1 parent d06e7b4 commit 7bb3748

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/pca/src/memory_transfers.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ template <typename TT, // Datatype of the elements of the matrix
7272
>
7373
void MatrixReadPipeToDDR(
7474
#if defined (IS_BSP)
75-
TT matrix_ptr, // Output matrix pointer
75+
TT* matrix_ptr, // Output matrix pointer
7676
# else
7777
annotated_ptr<TT, decltype(properties{buffer_location<BL0>,
7878
dwidth<512>})> matrix_ptr,

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/qri/src/memory_transfers.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ template <typename TT, // Datatype of the elements of the matrix
126126
>
127127
void MatrixReadPipeToDDR(
128128
#if defined (IS_BSP)
129-
TT matrix_ptr, // Output matrix pointer
129+
TT* matrix_ptr, // Output matrix pointer
130130
# else
131131
annotated_ptr<TT, decltype(properties{buffer_location<BL0>,
132132
dwidth<512>})> matrix_ptr,

0 commit comments

Comments
 (0)