| | #pragma once |
| |
|
| | |
| |
|
| | #include <ATen/Context.h> |
| | #include <ATen/DeviceGuard.h> |
| | #include <ATen/TensorUtils.h> |
| | #include <ATen/TracerMode.h> |
| | #include <ATen/core/Generator.h> |
| | #include <ATen/core/Reduction.h> |
| | #include <ATen/core/Tensor.h> |
| | #include <c10/core/Scalar.h> |
| | #include <c10/core/Storage.h> |
| | #include <c10/core/TensorOptions.h> |
| | #include <c10/util/Deprecated.h> |
| | #include <c10/util/Optional.h> |
| |
|
| |
|
| |
|
| | #include <ATen/ops/adaptive_avg_pool2d_ops.h> |
| |
|
| | namespace at { |
| |
|
| |
|
| | |
| | inline at::Tensor & adaptive_avg_pool2d_out(at::Tensor & out, const at::Tensor & self, at::IntArrayRef output_size) { |
| | return at::_ops::adaptive_avg_pool2d_out::call(self, c10::fromIntArrayRef(output_size), out); |
| | } |
| |
|
| | |
| | inline at::Tensor & adaptive_avg_pool2d_outf(const at::Tensor & self, at::IntArrayRef output_size, at::Tensor & out) { |
| | return at::_ops::adaptive_avg_pool2d_out::call(self, c10::fromIntArrayRef(output_size), out); |
| | } |
| |
|
| | |
| | inline at::Tensor & adaptive_avg_pool2d_symint_out(at::Tensor & out, const at::Tensor & self, c10::SymIntArrayRef output_size) { |
| | return at::_ops::adaptive_avg_pool2d_out::call(self, output_size, out); |
| | } |
| |
|
| | |
| | inline at::Tensor & adaptive_avg_pool2d_symint_outf(const at::Tensor & self, c10::SymIntArrayRef output_size, at::Tensor & out) { |
| | return at::_ops::adaptive_avg_pool2d_out::call(self, output_size, out); |
| | } |
| |
|
| | |
| | inline at::Tensor adaptive_avg_pool2d(const at::Tensor & self, at::IntArrayRef output_size) { |
| | return at::_ops::adaptive_avg_pool2d::call(self, c10::fromIntArrayRef(output_size)); |
| | } |
| |
|
| | |
| | inline at::Tensor adaptive_avg_pool2d_symint(const at::Tensor & self, c10::SymIntArrayRef output_size) { |
| | return at::_ops::adaptive_avg_pool2d::call(self, output_size); |
| | } |
| |
|
| | } |
| |
|