#pragma once // @generated by torchgen/gen.py from Function.h #include #include #include #include #include #include #include #include #include #include #include #include #include namespace at { // aten::hann_window(int window_length, *, ScalarType? dtype=None, Layout? layout=None, Device? device=None, bool? pin_memory=None) -> Tensor inline at::Tensor hann_window(int64_t window_length, at::TensorOptions options={}) { return at::_ops::hann_window::call(window_length, optTypeMetaToScalarType(options.dtype_opt()), options.layout_opt(), options.device_opt(), options.pinned_memory_opt()); } // aten::hann_window(int window_length, *, ScalarType? dtype=None, Layout? layout=None, Device? device=None, bool? pin_memory=None) -> Tensor inline at::Tensor hann_window(int64_t window_length, c10::optional dtype, c10::optional layout, c10::optional device, c10::optional pin_memory) { return at::_ops::hann_window::call(window_length, dtype, layout, device, pin_memory); } // aten::hann_window.periodic(int window_length, bool periodic, *, ScalarType? dtype=None, Layout? layout=None, Device? device=None, bool? pin_memory=None) -> Tensor inline at::Tensor hann_window(int64_t window_length, bool periodic, at::TensorOptions options={}) { return at::_ops::hann_window_periodic::call(window_length, periodic, optTypeMetaToScalarType(options.dtype_opt()), options.layout_opt(), options.device_opt(), options.pinned_memory_opt()); } // aten::hann_window.periodic(int window_length, bool periodic, *, ScalarType? dtype=None, Layout? layout=None, Device? device=None, bool? pin_memory=None) -> Tensor inline at::Tensor hann_window(int64_t window_length, bool periodic, c10::optional dtype, c10::optional layout, c10::optional device, c10::optional pin_memory) { return at::_ops::hann_window_periodic::call(window_length, periodic, dtype, layout, device, pin_memory); } // aten::hann_window.out(int window_length, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & hann_window_out(at::Tensor & out, int64_t window_length) { return at::_ops::hann_window_out::call(window_length, out); } // aten::hann_window.out(int window_length, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & hann_window_outf(int64_t window_length, at::Tensor & out) { return at::_ops::hann_window_out::call(window_length, out); } // aten::hann_window.periodic_out(int window_length, bool periodic, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & hann_window_out(at::Tensor & out, int64_t window_length, bool periodic) { return at::_ops::hann_window_periodic_out::call(window_length, periodic, out); } // aten::hann_window.periodic_out(int window_length, bool periodic, *, Tensor(a!) out) -> Tensor(a!) inline at::Tensor & hann_window_outf(int64_t window_length, bool periodic, at::Tensor & out) { return at::_ops::hann_window_periodic_out::call(window_length, periodic, out); } }