70 lines
2.7 KiB
C++
70 lines
2.7 KiB
C++
#pragma once
|
|
|
|
// @generated by torchgen/gen.py from Function.h
|
|
|
|
#include <ATen/Context.h>
|
|
#include <ATen/DeviceGuard.h>
|
|
#include <ATen/TensorUtils.h>
|
|
#include <ATen/TracerMode.h>
|
|
#include <ATen/core/Generator.h>
|
|
#include <ATen/core/Reduction.h>
|
|
#include <ATen/core/Tensor.h>
|
|
#include <c10/core/Scalar.h>
|
|
#include <c10/core/Storage.h>
|
|
#include <c10/core/TensorOptions.h>
|
|
#include <c10/util/Deprecated.h>
|
|
#include <c10/util/Optional.h>
|
|
|
|
|
|
|
|
#include <ATen/ops/unflatten_ops.h>
|
|
|
|
namespace at {
|
|
|
|
|
|
// aten::unflatten.int(Tensor(a) self, int dim, SymInt[] sizes) -> Tensor(a)
|
|
inline at::Tensor unflatten(const at::Tensor & self, int64_t dim, at::IntArrayRef sizes) {
|
|
return at::_ops::unflatten_int::call(self, dim, c10::fromIntArrayRefSlow(sizes));
|
|
}
|
|
namespace symint {
|
|
template <typename T, typename = std::enable_if_t<std::is_same<T, int64_t>::value>>
|
|
at::Tensor unflatten(const at::Tensor & self, int64_t dim, at::IntArrayRef sizes) {
|
|
return at::_ops::unflatten_int::call(self, dim, c10::fromIntArrayRefSlow(sizes));
|
|
}
|
|
}
|
|
|
|
// aten::unflatten.int(Tensor(a) self, int dim, SymInt[] sizes) -> Tensor(a)
|
|
inline at::Tensor unflatten_symint(const at::Tensor & self, int64_t dim, c10::SymIntArrayRef sizes) {
|
|
return at::_ops::unflatten_int::call(self, dim, sizes);
|
|
}
|
|
namespace symint {
|
|
template <typename T, typename = std::enable_if_t<std::is_same<T, c10::SymInt>::value>>
|
|
at::Tensor unflatten(const at::Tensor & self, int64_t dim, c10::SymIntArrayRef sizes) {
|
|
return at::_ops::unflatten_int::call(self, dim, sizes);
|
|
}
|
|
}
|
|
|
|
// aten::unflatten.Dimname(Tensor(a) self, Dimname dim, SymInt[] sizes, Dimname[] names) -> Tensor(a)
|
|
inline at::Tensor unflatten(const at::Tensor & self, at::Dimname dim, at::IntArrayRef sizes, at::DimnameList names) {
|
|
return at::_ops::unflatten_Dimname::call(self, dim, c10::fromIntArrayRefSlow(sizes), names);
|
|
}
|
|
namespace symint {
|
|
template <typename T, typename = std::enable_if_t<std::is_same<T, int64_t>::value>>
|
|
at::Tensor unflatten(const at::Tensor & self, at::Dimname dim, at::IntArrayRef sizes, at::DimnameList names) {
|
|
return at::_ops::unflatten_Dimname::call(self, dim, c10::fromIntArrayRefSlow(sizes), names);
|
|
}
|
|
}
|
|
|
|
// aten::unflatten.Dimname(Tensor(a) self, Dimname dim, SymInt[] sizes, Dimname[] names) -> Tensor(a)
|
|
inline at::Tensor unflatten_symint(const at::Tensor & self, at::Dimname dim, c10::SymIntArrayRef sizes, at::DimnameList names) {
|
|
return at::_ops::unflatten_Dimname::call(self, dim, sizes, names);
|
|
}
|
|
namespace symint {
|
|
template <typename T, typename = std::enable_if_t<std::is_same<T, c10::SymInt>::value>>
|
|
at::Tensor unflatten(const at::Tensor & self, at::Dimname dim, c10::SymIntArrayRef sizes, at::DimnameList names) {
|
|
return at::_ops::unflatten_Dimname::call(self, dim, sizes, names);
|
|
}
|
|
}
|
|
|
|
}
|