Return the matrix cross-product of two conformable matrices using a GPU. This is equivalent to t(x) or x device and host is required.
# S4 method for gpuMatrix,missing
crossprod(x, y)# S4 method for gpuMatrix,gpuMatrix
crossprod(x, y)
# S4 method for gpuMatrix,matrix
crossprod(x, y)
# S4 method for matrix,gpuMatrix
crossprod(x, y)
# S4 method for gpuMatrix,missing
tcrossprod(x, y)
# S4 method for gpuMatrix,gpuMatrix
tcrossprod(x, y)
# S4 method for matrix,gpuMatrix
tcrossprod(x, y)
# S4 method for gpuMatrix,matrix
tcrossprod(x, y)
A gpuMatrix
A gpuMatrix
A gpuMatrix
Charles Determan Jr.