Skip to content

Commit

Permalink
revise for build error for aarch
Browse files Browse the repository at this point in the history
  • Loading branch information
guodongliang committed Oct 29, 2024
1 parent e8d8699 commit e7a7f18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Native/include/nncase/ntt/kernels/gather.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ void gather(const TA &input, const TB &indices, TC &&output) noexcept {
indices.elements().end());
auto result = detail::continuous_dims_groups(input_v);

constexpr auto domain_before_axis = slice_fixed_dims<Axis>(input.shape());
constexpr auto domain_after_axis =
auto domain_before_axis = slice_fixed_dims<Axis>(input.shape());
auto domain_after_axis =
slice_fixed_dims<rank - Axis - 1, Axis + 1>(input.shape());

auto addr_output =
Expand Down

0 comments on commit e7a7f18

Please sign in to comment.