#if !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
#pragma once
#include <c10/metal/common.h>

template <unsigned N = c10::metal::max_ndim>
struct IndexReduceParams {
  int32_t ndim;
  int32_t reduce_dim;
  ::c10::metal::array<uint32_t, N> self_strides;
  ::c10::metal::array<uint32_t, N> self_sizes;
  ::c10::metal::array<uint32_t, N> source_strides;
  ::c10::metal::array<uint32_t, N> source_sizes;
  uint32_t index_stride;
};

#else
#error "This file should not be included when either TORCH_STABLE_ONLY or TORCH_TARGET_VERSION is defined."
#endif  // !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
