We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cef0ce2 commit 6d0b0f6Copy full SHA for 6d0b0f6
core/partitioning/segmentedblock/SegmentedBlock.h
@@ -82,9 +82,15 @@ struct SegmentedBlock {
82
max_shapes_ = in_shapes;
83
}
84
85
- const std::vector<std::vector<int64_t>> in_shapes() const {
+ const std::vector<std::vector<int64_t>> in_opt_shapes() const {
86
return opt_shapes_;
87
88
+ const std::vector<std::vector<int64_t>> in_min_shapes() const {
89
+ return min_shapes_;
90
+ }
91
+ const std::vector<std::vector<int64_t>> in_max_shapes() const {
92
+ return max_shapes_;
93
94
void register_intypes(std::vector<at::ScalarType>& in_types) {
95
in_types_ = in_types;
96
0 commit comments