torch.hash_tensor#
- torch.hash_tensor(input,*,mode=0)→Tensor#
Returns a hash of all elements in the
inputtensor.Currently only mode=0 (reduction via xor) is supported. The output will alwaysbe of type
torch.uint64. The elements ofinputare upcasted to their64 bit float / integer equivalent and bitcasted totorch.uint64beforereduction via xor.- Parameters
input (Tensor) – the input tensor.
- Keyword Arguments
mode (int) – The hash to use. Default: 0 (xor_reduction)
Example:
>>>a=torch.randn(1,3)>>>atensor([[ 1.1918, -1.1813, 0.3373]])>>>torch.hash_tensor(a)tensor(13822780554648485888, dtype=torch.uint64)
- torch.hash_tensor(input,dim,*,keepdim=False,mode=0)→Tensor
Returns the hash of each row of the
inputtensor in the givendimensiondimgiven by mode. Ifdimis a list of dimensions,reduce over all of them.If
keepdimisTrue, the output tensor is of the same sizeasinputexcept in the dimension(s)dimwhere it is of size 1.Otherwise,dimis squeezed (seetorch.squeeze()), resulting in theoutput tensor having 1 (orlen(dim)) fewer dimension(s).- Parameters
- Keyword Arguments
mode (int) – The hash to use. Default: 0 (xor_reduction)
Example:
>>>a=torch.randn(2,4)>>>atensor([[ 0.1317, -0.5554, -1.4724, -1.1391], [ 0.0778, -0.6070, 0.6375, 0.1798]])>>>torch.hash_tensor(a,1)tensor([9233691267014066176, 9255993250844508160], dtype=torch.uint64)