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/_sparse_softmax_ops.h>
21
22namespace at {
23
24
25// aten::_sparse_softmax.int(Tensor self, int dim, ScalarType? dtype=None) -> Tensor
26inline at::Tensor _sparse_softmax(const at::Tensor & self, int64_t dim, c10::optional<at::ScalarType> dtype=c10::nullopt) {
27 return at::_ops::_sparse_softmax_int::call(self, dim, dtype);
28}
29
30// aten::_sparse_softmax.Dimname(Tensor self, Dimname dim, *, ScalarType? dtype=None) -> Tensor
31inline at::Tensor _sparse_softmax(const at::Tensor & self, at::Dimname dim, c10::optional<at::ScalarType> dtype=c10::nullopt) {
32 return at::_ops::_sparse_softmax_Dimname::call(self, dim, dtype);
33}
34
35// aten::_sparse_softmax(Tensor self, int dim, bool half_to_float) -> Tensor
36inline at::Tensor _sparse_softmax(const at::Tensor & self, int64_t dim, bool half_to_float) {
37 return at::_ops::_sparse_softmax::call(self, dim, half_to_float);
38}
39
40// aten::_sparse_softmax.out(Tensor self, int dim, bool half_to_float, *, Tensor(a!) out) -> Tensor(a!)
41inline at::Tensor & _sparse_softmax_out(at::Tensor & out, const at::Tensor & self, int64_t dim, bool half_to_float) {
42 return at::_ops::_sparse_softmax_out::call(self, dim, half_to_float, out);
43}
44// aten::_sparse_softmax.out(Tensor self, int dim, bool half_to_float, *, Tensor(a!) out) -> Tensor(a!)
45inline at::Tensor & _sparse_softmax_outf(const at::Tensor & self, int64_t dim, bool half_to_float, at::Tensor & out) {
46 return at::_ops::_sparse_softmax_out::call(self, dim, half_to_float, out);
47}
48
49}
50