xla
xla copied to clipboard
Fallback to CPU for dot implementation for long tensors
Fall back to cpu implementation for dot product if both the tensor are int64. #6700
Is this the only operation missing support for long dtype? I assume this is TPU specific?
Is this the only operation missing support for
longdtype? I assume this is TPU specific?
On more testing, I found when one of the tensors is a long and other is any integral type, it still doesn't work. Change the implementation to reflect this. Yes, this is only for TPU.