1#pragma once
2
3// @generated by torchgen/gen.py from Function.h
4
5#include <ATen/Context.h>
6#include <ATen/DeviceGuard.h>
7#include <ATen/TensorUtils.h>
8#include <ATen/TracerMode.h>
9#include <ATen/core/Generator.h>
10#include <ATen/core/Reduction.h>
11#include <ATen/core/Tensor.h>
12#include <c10/core/Scalar.h>
13#include <c10/core/Storage.h>
14#include <c10/core/TensorOptions.h>
15#include <c10/util/Deprecated.h>
16#include <c10/util/Optional.h>
17
18
19
20#include <ATen/ops/hann_window_ops.h>
21
22namespace at {
23
24
25// aten::hann_window(int window_length, *, ScalarType? dtype=None, Layout? layout=None, Device? device=None, bool? pin_memory=None) -> Tensor
26inline at::Tensor hann_window(int64_t window_length, at::TensorOptions options={}) {
27 return at::_ops::hann_window::call(window_length, optTypeMetaToScalarType(options.dtype_opt()), options.layout_opt(), options.device_opt(), options.pinned_memory_opt());
28}
29// aten::hann_window(int window_length, *, ScalarType? dtype=None, Layout? layout=None, Device? device=None, bool? pin_memory=None) -> Tensor
30inline at::Tensor hann_window(int64_t window_length, c10::optional<at::ScalarType> dtype, c10::optional<at::Layout> layout, c10::optional<at::Device> device, c10::optional<bool> pin_memory) {
31 return at::_ops::hann_window::call(window_length, dtype, layout, device, pin_memory);
32}
33
34// aten::hann_window.periodic(int window_length, bool periodic, *, ScalarType? dtype=None, Layout? layout=None, Device? device=None, bool? pin_memory=None) -> Tensor
35inline at::Tensor hann_window(int64_t window_length, bool periodic, at::TensorOptions options={}) {
36 return at::_ops::hann_window_periodic::call(window_length, periodic, optTypeMetaToScalarType(options.dtype_opt()), options.layout_opt(), options.device_opt(), options.pinned_memory_opt());
37}
38// aten::hann_window.periodic(int window_length, bool periodic, *, ScalarType? dtype=None, Layout? layout=None, Device? device=None, bool? pin_memory=None) -> Tensor
39inline at::Tensor hann_window(int64_t window_length, bool periodic, c10::optional<at::ScalarType> dtype, c10::optional<at::Layout> layout, c10::optional<at::Device> device, c10::optional<bool> pin_memory) {
40 return at::_ops::hann_window_periodic::call(window_length, periodic, dtype, layout, device, pin_memory);
41}
42
43// aten::hann_window.out(int window_length, *, Tensor(a!) out) -> Tensor(a!)
44inline at::Tensor & hann_window_out(at::Tensor & out, int64_t window_length) {
45 return at::_ops::hann_window_out::call(window_length, out);
46}
47// aten::hann_window.out(int window_length, *, Tensor(a!) out) -> Tensor(a!)
48inline at::Tensor & hann_window_outf(int64_t window_length, at::Tensor & out) {
49 return at::_ops::hann_window_out::call(window_length, out);
50}
51
52// aten::hann_window.periodic_out(int window_length, bool periodic, *, Tensor(a!) out) -> Tensor(a!)
53inline at::Tensor & hann_window_out(at::Tensor & out, int64_t window_length, bool periodic) {
54 return at::_ops::hann_window_periodic_out::call(window_length, periodic, out);
55}
56// aten::hann_window.periodic_out(int window_length, bool periodic, *, Tensor(a!) out) -> Tensor(a!)
57inline at::Tensor & hann_window_outf(int64_t window_length, bool periodic, at::Tensor & out) {
58 return at::_ops::hann_window_periodic_out::call(window_length, periodic, out);
59}
60
61}
62