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/lshift_ops.h>
21
22namespace at {
23
24
25// aten::__lshift__.Scalar(Tensor self, Scalar other) -> Tensor
26inline at::Tensor __lshift__(const at::Tensor & self, const at::Scalar & other) {
27 return at::_ops::__lshift___Scalar::call(self, other);
28}
29
30// aten::__lshift__.Tensor(Tensor self, Tensor other) -> Tensor
31inline at::Tensor __lshift__(const at::Tensor & self, const at::Tensor & other) {
32 return at::_ops::__lshift___Tensor::call(self, other);
33}
34
35// aten::__lshift__.Scalar_out(Tensor self, Scalar other, *, Tensor(a!) out) -> Tensor(a!)
36inline at::Tensor & __lshift___out(at::Tensor & out, const at::Tensor & self, const at::Scalar & other) {
37 return at::_ops::__lshift___Scalar_out::call(self, other, out);
38}
39// aten::__lshift__.Scalar_out(Tensor self, Scalar other, *, Tensor(a!) out) -> Tensor(a!)
40inline at::Tensor & __lshift___outf(const at::Tensor & self, const at::Scalar & other, at::Tensor & out) {
41 return at::_ops::__lshift___Scalar_out::call(self, other, out);
42}
43
44// aten::__lshift__.Tensor_out(Tensor self, Tensor other, *, Tensor(a!) out) -> Tensor(a!)
45inline at::Tensor & __lshift___out(at::Tensor & out, const at::Tensor & self, const at::Tensor & other) {
46 return at::_ops::__lshift___Tensor_out::call(self, other, out);
47}
48// aten::__lshift__.Tensor_out(Tensor self, Tensor other, *, Tensor(a!) out) -> Tensor(a!)
49inline at::Tensor & __lshift___outf(const at::Tensor & self, const at::Tensor & other, at::Tensor & out) {
50 return at::_ops::__lshift___Tensor_out::call(self, other, out);
51}
52
53}
54