#pragma once #include #include namespace at::native { using histogramdd_fn = void(*)(const Tensor&, const c10::optional&, bool, Tensor&, const TensorList&); using histogramdd_linear_fn = void(*)(const Tensor&, const c10::optional&, bool, Tensor&, const TensorList&, bool); using histogram_select_outer_bin_edges_fn = void(*)(const Tensor& input, const int64_t N, std::vector &leftmost_edges, std::vector &rightmost_edges); DECLARE_DISPATCH(histogramdd_fn, histogramdd_stub); DECLARE_DISPATCH(histogramdd_linear_fn, histogramdd_linear_stub); DECLARE_DISPATCH(histogram_select_outer_bin_edges_fn, histogram_select_outer_bin_edges_stub); } // namespace at::native