This commit fixes Tensor_InsertSliceOp size inputs/attributes description. Before this commit, the description says the size inputs/attributes denote the size of the return type.
But according to InsertSliceOpConstantArgumentFolder in lib/Dialect/Tensor/IR/TensorOps.cpp, the size inputs/attributes actually denote the size of the source type. After some off-line discussion with the author of TensorOps.td and TensorOps.cpp, it is a typo in the Op description.
This commit updates the Op description to match the actual usage.