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/_foreach_cosh_ops.h>
21
22namespace at {
23
24
25// aten::_foreach_cosh(Tensor[] self) -> Tensor[]
26inline ::std::vector<at::Tensor> _foreach_cosh(at::TensorList self) {
27 return at::_ops::_foreach_cosh::call(self);
28}
29
30// aten::_foreach_cosh_(Tensor(a!)[] self) -> ()
31inline void _foreach_cosh_(at::TensorList self) {
32 return at::_ops::_foreach_cosh_::call(self);
33}
34
35// aten::_foreach_cosh.out(Tensor[] self, *, Tensor(a!)[] out) -> ()
36inline void _foreach_cosh_out(at::TensorList out, at::TensorList self) {
37 return at::_ops::_foreach_cosh_out::call(self, out);
38}
39// aten::_foreach_cosh.out(Tensor[] self, *, Tensor(a!)[] out) -> ()
40inline void _foreach_cosh_outf(at::TensorList self, at::TensorList out) {
41 return at::_ops::_foreach_cosh_out::call(self, out);
42}
43
44}
45