Computes lhs %*% t(rhs). If rhs is missing, computes lhs %*% t(lhs).
Usage
nv_tcrossprod(lhs, rhs = NULL)
# S3 method for class 'AnvlArray'
tcrossprod(x, y = NULL, ...)Examples
x <- nv_matrix(1:6, nrow = 2, dtype = "f32")
nv_tcrossprod(x)
#> AnvlArray
#> 35 44
#> 44 56
#> [ CPUf32{2,2} ]