Skip to content

Commit

Permalink
Fixup wrong accumulator type; fixup legal comments (Xilinx#758)
Browse files Browse the repository at this point in the history
  • Loading branch information
erwei-xilinx authored Nov 3, 2024
1 parent e3a7253 commit 9a48bfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/xrt/26_vecmat_i8/vm.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===- mm.cc ----------------------------------------------000---*- C++ -*-===//
//===- vm.cc ----------------------------------------------000---*- C++ -*-===//
//
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down Expand Up @@ -28,7 +28,7 @@ template <typename T_in, typename T_out, unsigned colA, unsigned colB,
unsigned r, unsigned s, unsigned t>
void vecmat_vectorized(const T_in *__restrict pA, const T_in *__restrict pB,
T_out *__restrict pC) {
using MMUL = aie::mmul<r, s, t, T_in, T_in, accfloat>;
using MMUL = aie::mmul<r, s, t, T_in, T_in, acc32>;

event0();

Expand Down

0 comments on commit 9a48bfb

Please sign in to comment.