Created by: wangkuiyi
What doesn't this following line in Tensor::mutable_data mean?
Tensor::mutable_data
return reinterpret_cast<T*>(reinterpret_cast<uintptr_t>(holder_->ptr()) + offset_);
Why not just use static_cast<T*>?
static_cast<T*>