-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathRcppExports.cpp
More file actions
92 lines (86 loc) · 2.98 KB
/
RcppExports.cpp
File metadata and controls
92 lines (86 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// Generated by using Rcpp::compileAttributes() -> do not edit by hand
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#include "../inst/include/RcppEigen.h"
#include <Rcpp.h>
using namespace Rcpp;
#ifdef RCPP_USE_GLOBAL_ROSTREAM
Rcpp::Rostream<true>& Rcpp::Rcout = Rcpp::Rcpp_cout_get();
Rcpp::Rostream<false>& Rcpp::Rcerr = Rcpp::Rcpp_cerr_get();
#endif
// eigen_version
Rcpp::IntegerVector eigen_version(bool single);
RcppExport SEXP _RcppEigen_eigen_version(SEXP singleSEXP) {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< bool >::type single(singleSEXP);
rcpp_result_gen = Rcpp::wrap(eigen_version(single));
return rcpp_result_gen;
END_RCPP
}
// eigen_version_typed
Rcpp::List eigen_version_typed();
RcppExport SEXP _RcppEigen_eigen_version_typed() {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
rcpp_result_gen = Rcpp::wrap(eigen_version_typed());
return rcpp_result_gen;
END_RCPP
}
// Eigen_SSE
bool Eigen_SSE();
RcppExport SEXP _RcppEigen_Eigen_SSE() {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
rcpp_result_gen = Rcpp::wrap(Eigen_SSE());
return rcpp_result_gen;
END_RCPP
}
// EigenNbThreads
int EigenNbThreads();
RcppExport SEXP _RcppEigen_EigenNbThreads() {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
rcpp_result_gen = Rcpp::wrap(EigenNbThreads());
return rcpp_result_gen;
END_RCPP
}
// EigenSetNbThreads
void EigenSetNbThreads(int n);
RcppExport SEXP _RcppEigen_EigenSetNbThreads(SEXP nSEXP) {
BEGIN_RCPP
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< int >::type n(nSEXP);
EigenSetNbThreads(n);
return R_NilValue;
END_RCPP
}
// fastLm_Impl
Rcpp::List fastLm_Impl(Rcpp::NumericMatrix X, Rcpp::NumericVector y, int type);
RcppExport SEXP _RcppEigen_fastLm_Impl(SEXP XSEXP, SEXP ySEXP, SEXP typeSEXP) {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< Rcpp::NumericMatrix >::type X(XSEXP);
Rcpp::traits::input_parameter< Rcpp::NumericVector >::type y(ySEXP);
Rcpp::traits::input_parameter< int >::type type(typeSEXP);
rcpp_result_gen = Rcpp::wrap(fastLm_Impl(X, y, type));
return rcpp_result_gen;
END_RCPP
}
static const R_CallMethodDef CallEntries[] = {
{"_RcppEigen_eigen_version", (DL_FUNC) &_RcppEigen_eigen_version, 1},
{"_RcppEigen_eigen_version_typed", (DL_FUNC) &_RcppEigen_eigen_version_typed, 0},
{"_RcppEigen_Eigen_SSE", (DL_FUNC) &_RcppEigen_Eigen_SSE, 0},
{"_RcppEigen_EigenNbThreads", (DL_FUNC) &_RcppEigen_EigenNbThreads, 0},
{"_RcppEigen_EigenSetNbThreads", (DL_FUNC) &_RcppEigen_EigenSetNbThreads, 1},
{"_RcppEigen_fastLm_Impl", (DL_FUNC) &_RcppEigen_fastLm_Impl, 3},
{NULL, NULL, 0}
};
RcppExport void R_init_RcppEigen(DllInfo *dll) {
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
R_useDynamicSymbols(dll, FALSE);
}