blob: 79e915ea4226677df89e2ac7d68f6f949b1a5bfa [file] [log] [blame]
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <cmath>
#include <executorch/kernels/portable/cpu/util/reduce_util.h>
#include <executorch/runtime/kernel/kernel_includes.h>
#include <executorch/runtime/platform/assert.h>
namespace torch {
namespace executor {
namespace native {
using Tensor = exec_aten::Tensor;
using ScalarType = exec_aten::ScalarType;
Tensor& amax_out(
RuntimeContext& ctx,
const Tensor& in,
ArrayRef<int64_t> dim_list,
bool keepdim,
Tensor& out) {
(void)ctx;
ET_KERNEL_CHECK(
ctx,
check_amin_amax_args(in, dim_list, keepdim, out),
InvalidArgument,
out);
ET_KERNEL_CHECK(
ctx,
resize_reduction_out(in, dim_list, keepdim, out) == Error::Ok,
InvalidArgument,
out);
ET_KERNEL_CHECK(
ctx, tensors_have_same_dim_order(in, out), InvalidArgument, out);
ET_SWITCH_REAL_TYPES_AND(
Bool, in.scalar_type(), ctx, "amax.out", CTYPE, [&]() {
CTYPE* out_data = out.mutable_data_ptr<CTYPE>();
for (size_t out_ix = 0; out_ix < out.numel(); ++out_ix) {
out_data[out_ix] = reduce_over_dim_list<CTYPE>(
[](CTYPE v, CTYPE max_v) {
return std::isnan(v) || v > max_v ? v : max_v;
},
in,
dim_list,
out_ix);
}
});
return out;
}
} // namespace native
} // namespace executor
} // namespace torch