Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
denolf and github-actions[bot] authored Apr 10, 2024
1 parent 61511b2 commit 2f7ce0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aie_kernels/aie_generic/passThrough.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <aie_api/aie.hpp>

template <typename T, int N>
__attribute__((noinline)) void passThrough_aie(T *restrict in, T *restrict out,
__attribute__((noinline)) void passThrough_aie(T *restrict in, T *restrict out,
const int32_t height,
const int32_t width) {
v64uint8 *restrict outPtr = (v64uint8 *)out;
Expand Down
2 changes: 1 addition & 1 deletion programming_examples/basic/passthrough_dmas/aie2.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def device_body():
@core(ComputeTile2)
def core_body():
for _ in for_(sys.maxsize):
yield_([])
yield_([])

# To/from AIE-array data movement
tensor_ty = T.memref(N, T.i32())
Expand Down

0 comments on commit 2f7ce0e

Please sign in to comment.