pytorch
7e7533b2 - Delete denseTypeIdWithDefault and toDense (#54016)

Commit
5 years ago
Delete denseTypeIdWithDefault and toDense (#54016) Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/54016 I managed to convince myself that typeIdWithDefault was sufficient for the sparse constructor case. Here is the reasoning. The surface reading of the use site of denseTypeIdWithDefault is to convert what could be a sparse dispatch key into the dense version so we can properly allocate underlying dense tensors for the sparse constructor call. But WHERE does this dispatch key come from? Inspection of call sites reveals that dispatch key is provided by torch::tensors::get_default_dispatch_key(). This key is NEVER sparse, as that would correspond to setting sparse tensors to be the default tensor via torch.set_default_tensor_type() (which is forbidden, and even if it worked most of everything in PyTorch would break). That means that typeIdWithDefault is a sufficient replacmenet. With denseTypeIdWithDefault removed, we can also delete toDense as this was the sole use of that function. Signed-off-by: Edward Z. Yang <ezyang@fb.com> Test Plan: Imported from OSS Reviewed By: mruberry Differential Revision: D27109511 Pulled By: ezyang fbshipit-source-id: c698eff0ab54c0c101fe9f55be3b7657584c4372
Author
Parents
Loading