(bool) whether the output tensor has dim retained or not.
dtype
(torch.dtype, optional) the desired data type of returned tensor. If specified, the input tensor is casted to dtype before the operation is performed. This is useful for preventing data type overflows. Default: NULL.
prod(input, dtype=NULL) -> Tensor
Returns the product of all elements in the input tensor.
Returns the product of each row of the input tensor in the given
dimension dim.
If keepdim is TRUE, the output tensor is of the same size
as input except in the dimension dim where it is of size 1.
Otherwise, dim is squeezed (see torch_squeeze), resulting in
the output tensor having 1 fewer dimension than input.