torch.kron¶
- 
torch.kron(input, other, *, out=None) → Tensor¶
- Computes the Kronecker product, denoted by , of - inputand- other.- If - inputis a tensor and- otheris a tensor, the result will be a tensor with the following entries:- where for . If one tensor has fewer dimensions than the other it is unsqueezed until it has the same number of dimensions. - Supports real-valued and complex-valued inputs. - Note - This function generalizes the typical definition of the Kronecker product for two matrices to two tensors, as described above. When - inputis a matrix and- otheris a matrix, the result will be a block matrix:- where - inputis and- otheris .- Parameters
- Keyword Arguments
- out (Tensor, optional) – The output tensor. Ignored if - None. Default:- None
 - Examples: - >>> mat1 = torch.eye(2) >>> mat2 = torch.ones(2, 2) >>> torch.kron(mat1, mat2) tensor([[1., 1., 0., 0.], [1., 1., 0., 0.], [0., 0., 1., 1.], [0., 0., 1., 1.]]) >>> mat1 = torch.eye(2) >>> mat2 = torch.arange(1, 5).reshape(2, 2) >>> torch.kron(mat1, mat2) tensor([[1., 2., 0., 0.], [3., 4., 0., 0.], [0., 0., 1., 2.], [0., 0., 3., 4.]])