|
| 1 | +#pragma once |
| 2 | + |
| 3 | +#include <c10/core/Backend.h> |
| 4 | +#include <c10/core/ScalarType.h> |
| 5 | +#include <c10/core/Layout.h> |
| 6 | + |
| 7 | + |
| 8 | + |
| 9 | +namespace at { |
| 10 | + |
| 11 | +// This class specifies a Backend and a ScalarType. Currently, it primarily |
| 12 | +// serves as a replacement return value for Tensor::type(). Previously, |
| 13 | +// Tensor::type() returned Type&, but we are changing Type to not be |
| 14 | +// dtype-specific. |
| 15 | +class DeprecatedTypeProperties { |
| 16 | + public: |
| 17 | + DeprecatedTypeProperties(Backend backend, ScalarType scalar_type) |
| 18 | + : backend_(backend), scalar_type_(scalar_type) {} |
| 19 | + |
| 20 | + Backend backend() const { |
| 21 | + return backend_; |
| 22 | + } |
| 23 | + |
| 24 | + bool is_sparse() const { |
| 25 | + return layout_from_backend(backend()) == kSparse; |
| 26 | + } |
| 27 | + |
| 28 | + DeviceType device_type() const { |
| 29 | + return backendToDeviceType(backend_); |
| 30 | + } |
| 31 | + |
| 32 | + bool is_cuda() const { |
| 33 | + return backendToDeviceType(backend_) == kCUDA; |
| 34 | + } |
| 35 | + |
| 36 | + ScalarType scalarType() const { |
| 37 | + return scalar_type_; |
| 38 | + } |
| 39 | + |
| 40 | + caffe2::TypeMeta typeMeta() const { |
| 41 | + return scalarTypeToTypeMeta(scalar_type_); |
| 42 | + } |
| 43 | + |
| 44 | + bool is_defined() const { |
| 45 | + return backend_ != Backend::Undefined && scalar_type_ != ScalarType::Undefined; |
| 46 | + } |
| 47 | + |
| 48 | + bool operator==(const DeprecatedTypeProperties& other) const { |
| 49 | + return backend_ == other.backend() && scalar_type_ == other.scalarType(); |
| 50 | + } |
| 51 | + |
| 52 | + bool operator!=(const DeprecatedTypeProperties& other) const { |
| 53 | + return !(*this == other); |
| 54 | + } |
| 55 | + |
| 56 | + std::string toString() const { |
| 57 | + std::stringstream ss; |
| 58 | + ss << at::toString(backend()) << at::toString(scalarType()) << "Type"; |
| 59 | + return ss.str(); |
| 60 | + } |
| 61 | + |
| 62 | + private: |
| 63 | + Backend backend_; |
| 64 | + ScalarType scalar_type_; |
| 65 | +}; |
| 66 | + |
| 67 | +} // namespace at |
0 commit comments