1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
#pragma once
#include <c10/util/Optional.h>
#include <torch/csrc/lazy/core/ir.h>
#include <torch/csrc/lazy/core/shape.h>
#include <memory>
#include <vector>
namespace torch {
namespace lazy {
struct TORCH_API SelectInfo {
bool operator==(const SelectInfo& ref) const {
return dim == ref.dim && start == ref.start && end == ref.end &&
stride == ref.stride;
}
int64_t dim = 0;
int64_t start = 0;
int64_t end = 0;
int64_t stride = 0;
};
struct TORCH_API AsStridedInfo {
bool operator==(const AsStridedInfo& ref) const {
return offset == ref.offset && stride == ref.stride;
}
std::vector<int64_t> stride;
int64_t offset = 0;
};
struct TORCH_API DiagonalInfo {
bool operator==(const DiagonalInfo& ref) const {
return offset == ref.offset && dim1 == ref.dim1 && dim2 == ref.dim2;
}
int64_t offset = 0;
int64_t dim1 = 0;
int64_t dim2 = 1;
};
struct TORCH_API ViewInfo {
enum class Type {
kInvalid,
kNarrow,
kNoOp,
kPermute,
kReshape,
kResize,
kSelect,
kAsStrided,
kDiagonal,
kSqueeze,
kUnsqueeze,
};
ViewInfo() = default;
ViewInfo(Type view_type, Shape shape, Shape source_shape);
ViewInfo(Type view_type, Shape shape, Shape source_shape, int64_t sqi);
ViewInfo(
Type view_type,
Shape source_shape,
std::vector<int64_t> permutation);
ViewInfo(Type view_type, const Shape& source_shape, SelectInfo select);
ViewInfo(
Type view_type,
Shape shape,
Shape source_shape,
AsStridedInfo as_strided);
ViewInfo(Type view_type, const Shape& source_shape, DiagonalInfo diagonal);
bool operator==(const ViewInfo& ref) const {
return view_type == ref.view_type && shape == ref.shape &&
indices == ref.indices && source_shape == ref.source_shape &&
permutation == ref.permutation && select == ref.select &&
as_strided == ref.as_strided && diagonal == ref.diagonal;
}
Type view_type = Type::kInvalid;
// The shape of the result of a view. In case of narrowing, this represents
// the size of the narrow slice.
Shape shape;
// In case of narrowing, the starting indices from where the narrow slice is
// cut.
std::vector<int64_t> indices;
// The shape of the source of this view.
Shape source_shape;
// The permutation to be used. If empty, this is not a permute operation.
std::vector<int64_t> permutation;
// Information used for sliced views.
c10::optional<SelectInfo> select;
// Information used for as_strided views.
c10::optional<AsStridedInfo> as_strided;
// Information used for diagonal views.
c10::optional<DiagonalInfo> diagonal;
// Squeeze/Unsqueeze Index
int64_t squeeze_index;
};
// When a "view" (capture by reference) is taken on a node, an Alias object is
// created on the captured node itself, with its current IR Node value.
class TORCH_API Alias {
public:
struct UpdateData {
Value ir_value;
std::vector<ViewInfo> view_infos;
};
explicit Alias(Value ir_value) : root_ir_value_(std::move(ir_value)) {}
size_t generation() const {
return generation_;
}
// Appends an update to the IR value stored within the alias. The ir_value is
// the value to be written, and view_infos represents the forward path from
// the alias's ir_value to the update ir_value.
void Update(Value ir_value, std::vector<ViewInfo> view_infos);
Value SyncUpdateOperations();
private:
// The IR value which is the root at which the view was created.
Value root_ir_value_;
// The stacked updates on the view. Orders matter, as most recent updates
// might overwrite older ones.
std::vector<UpdateData> updates_;
// Incremented every time an update happens. Used by view to track alias
// changes and regenerate the most current value.
size_t generation_ = 0;
};
class TORCH_API LazyView {
public:
LazyView(Shape shape, std::shared_ptr<Alias> alias, ViewInfo view_info);
LazyView(
Shape shape,
std::shared_ptr<Alias> alias,
std::vector<ViewInfo> view_infos);
void Update(Value ir_value);
const Shape& shape() const {
return shape_;
}
const std::shared_ptr<Alias>& alias() const {
return alias_;
}
std::shared_ptr<LazyView> CreateSubView(Shape shape, ViewInfo view_info);
// Extracts the current IrNode out of a view, into a IrNode structure
// where the updated fields tells whether a new IR value has been created, or
// the cached one returned.
std::tuple<Value, bool> GetViewIrNode();
bool IsUpToDate() const {
return ir_value_ && generation_ == alias_->generation();
}
private:
std::vector<ViewInfo> view_infos_;
Shape shape_;
std::shared_ptr<Alias> alias_;
Value ir_value_;
size_t generation_ = 0;
};
} // namespace lazy
} // namespace torch
|