crossprod)Computes t(A) %*% B (or t(A) %*% A when B is
NULL) on the Vulkan GPU, returning an R matrix, with a CPU fallback.
See ggml_matmul for the precision and dispatch notes.
ggml_crossprod(A, B = NULL, device = "auto", prec = "f32")t(A) %*% B as a numeric matrix.
A numeric matrix.
A numeric matrix with nrow(B) == nrow(A), or NULL
(default) for t(A) %*% A.
See ggml_matmul.