Cumprod
torch_cumprod(self, dim, dtype = NULL)
self
dim
dtype
torch.dtype
Returns the cumulative product of elements of input in the dimension dim.
input
For example, if input is a vector of size N, the result will also be a vector of size N, with elements.
if (torch_is_installed()) { a = torch_randn(c(10)) a torch_cumprod(a, dim=1) }
Useful links