Skip to content

Commit 6d0b0f6

Browse files
committed
chore: Address review commentas
Signed-off-by: Dheeraj Peri <[email protected]>
1 parent cef0ce2 commit 6d0b0f6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

core/partitioning/segmentedblock/SegmentedBlock.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,15 @@ struct SegmentedBlock {
8282
max_shapes_ = in_shapes;
8383
}
8484
}
85-
const std::vector<std::vector<int64_t>> in_shapes() const {
85+
const std::vector<std::vector<int64_t>> in_opt_shapes() const {
8686
return opt_shapes_;
8787
}
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+
}
8894
void register_intypes(std::vector<at::ScalarType>& in_types) {
8995
in_types_ = in_types;
9096
}

0 commit comments

Comments
 (0)