| 1234567891011121314151617181920212223242526272829303132 |
- #if !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
- #include <ATen/core/TensorBase.h>
- #include <algorithm>
- #include <vector>
- namespace at::native {
- inline int64_t ensure_nonempty_dim(int64_t dim) {
- return std::max<int64_t>(dim, 1);
- }
- inline int64_t ensure_nonempty_size(const TensorBase &t, int64_t dim) {
- return t.dim() == 0 ? 1 : t.size(dim);
- }
- inline int64_t ensure_nonempty_stride(const TensorBase &t, int64_t dim) {
- return t.dim() == 0 ? 1 : t.stride(dim);
- }
- using IdxVec = std::vector<int64_t>;
- inline IdxVec ensure_nonempty_vec(IdxVec vec) {
- if (vec.empty()) {
- vec.push_back(1);
- }
- return vec;
- }
- } // namespace at::native
- #else
- #error "This file should not be included when either TORCH_STABLE_ONLY or TORCH_TARGET_VERSION is defined."
- #endif // !defined(TORCH_STABLE_ONLY) && !defined(TORCH_TARGET_VERSION)
|