https://github.com/THUDM/ProNE
Raw File
Tip revision: 873630a5943f3eba8f4bbc9751fdf16af98d2171 authored by lykeven on 26 May 2020, 12:18:34 UTC
update
Tip revision: 873630a
frpca.h

#include "matrix_vector_functions_intel_mkl_ext.h"
#include <math.h>

void LUfraction(mat *A, mat *L);

void eigSVD(mat* A, mat **U, mat **S, mat **V);

void frPCAt(mat_csr *A, mat **U, mat **S, mat **V, int k, int q);


void frPCA(mat_csr *A, mat **U, mat **S, mat **V, int k, int q);


void randQB_basic_csr(mat_csr *M, int k, int p, mat **U, mat **S, mat **V);
back to top