Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xcp ref implementation #2895

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

xcp ref implementation #2895

wants to merge 2 commits into from

Commits on Sep 10, 2024

  1. Added xcp ref implementation

    This routine computes the matrix of cross product
    of data stored in column major format, in batches.
    
    For matrix X of dimensions p x n, the i,j th entry
    of the cross product matrix is
    
    C_ij = \sum_k (x_ik-\mu_i) (x_jk-\mu_k)
    
    where x_ij is the jth element of the ith row, of the matrix X.
    
    Implementation uses the BLAS routine GEMM.
    
    Signed-off-by: Dhanus M Lal <[email protected]>
    DhanusML committed Sep 10, 2024
    Configuration menu
    Copy the full SHA
    478255a View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2024

  1. refactor and check for malloc fail

    Signed-off-by: Dhanus M Lal <[email protected]>
    DhanusML committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    0293b6f View commit details
    Browse the repository at this point in the history