Skip to content

Commit c4f43a4

Browse files
FPGA: Fix typo in SVD code sample (#2526)
This PR fixes a typo that was introduced in a previous PR that was to address some compilation crashes. This typo was leading to functional incorrectness (i.e., failures).
1 parent 77295f3 commit c4f43a4

File tree

1 file changed

+1
-1
lines changed
  • DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/svd/src

1 file changed

+1
-1
lines changed

DirectProgramming/C++SYCL_FPGA/ReferenceDesigns/svd/src/svd.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ double SingularValueDecomposition(
126126
dwidth<512>})>;
127127
PtrAnn u_matrix_device_ptr(u_matrix_device);
128128
PtrAnn s_matrix_device_ptr(s_matrix_device);
129-
PtrAnn v_matrix_device_ptr(s_matrix_device);
129+
PtrAnn v_matrix_device_ptr(v_matrix_device);
130130
#endif
131131

132132
// Check that the malloc succeeded.

0 commit comments

Comments
 (0)