crossprod,gpuMatrix,missing-method {gpuR} | R Documentation |
gpuMatrix Crossproduct
Description
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.
Usage
## S4 method for signature 'gpuMatrix,missing'
crossprod(x, y)
## S4 method for signature 'gpuMatrix,gpuMatrix'
crossprod(x, y)
## S4 method for signature 'gpuMatrix,matrix'
crossprod(x, y)
## S4 method for signature 'matrix,gpuMatrix'
crossprod(x, y)
## S4 method for signature 'gpuMatrix,missing'
tcrossprod(x, y)
## S4 method for signature 'gpuMatrix,gpuMatrix'
tcrossprod(x, y)
## S4 method for signature 'matrix,gpuMatrix'
tcrossprod(x, y)
## S4 method for signature 'gpuMatrix,matrix'
tcrossprod(x, y)
Arguments
x |
A gpuMatrix |
y |
A gpuMatrix |
Value
A gpuMatrix
Author(s)
Charles Determan Jr.
[Package gpuR version 2.0.6 Index]