Chain_matmul
Source:R/gen-namespace-docs.R, R/gen-namespace-examples.R, R/gen-namespace.R
torch_chain_matmul.RdChain_matmul
TEST
Returns the matrix product of the \(N\) 2-D tensors. This product is efficiently computed
using the matrix chain order algorithm which selects the order in which incurs the lowest cost in terms
of arithmetic operations ([CLRS]_). Note that since this is a function to compute the product, \(N\)
needs to be greater than or equal to 2; if equal to 2 then a trivial matrix-matrix product is returned.
If \(N\) is 1, then this is a no-op - the original matrix is returned as is.
Examples
if (torch_is_installed()) {
a = torch_randn(c(3, 4))
b = torch_randn(c(4, 5))
c = torch_randn(c(5, 6))
d = torch_randn(c(6, 7))
torch_chain_matmul(list(a, b, c, d))
}
#> torch_tensor
#> -1.2029 -2.0450 2.4284 -7.1311 6.7158 -5.4069 0.1777
#> 6.3938 5.2837 -1.8047 6.3869 -12.6956 5.5038 -1.4108
#> -1.0549 -0.1195 -1.1142 2.9631 0.4509 0.5574 0.0348
#> [ CPUFloatType{3,7} ]