Commit 572c36d2 by Wuwei Lin Committed by Tianqi Chen

Fix doc of strided_slice (#2103)

parent 50b829cd
......@@ -133,7 +133,7 @@ struct StridedSliceAttrs : public tvm::AttrsNode<StridedSliceAttrs> {
TVM_ATTR_FIELD(begin)
.describe("Indices for begin of slice, begin index is also inclusive");
TVM_ATTR_FIELD(end)
.describe("Indices for end of slice, end index is also inclusive");
.describe("Indices for end of slice, end index is exclusive");
TVM_ATTR_FIELD(strides).set_default(Array<Integer>({}))
.describe("Stride values of the slice");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment