https://github.com/THUDM/ProNE
Raw File
Tip revision: 5c8a0eb804641307d1316672abf4d80b7bc53055 authored by lykeven on 04 August 2020, 14:33:04 UTC
add inner C++ function call
Tip revision: 5c8a0eb
ProNE.h
#include <iostream>
#include <fstream>
#include <cstdio>
#include <complex>
#include <set>
#include <cmath>
#include <map>
#include <ctime>
#include <eigen3/Eigen/Dense>
#include <eigen3/Eigen/Sparse>
#include <gflags/gflags.h>
#include <redsvd/redsvd.hpp>
#include <boost/math/special_functions/bessel.hpp>

extern "C" {
int main_f(int argc, char** argv);
int main_f2(char* filename, char* emb1, char* emb2, int num_node, int num_step, int num_thread, int num_rank, float theta, float mu);
}
back to top