Skip to content
Snippets Groups Projects
Commit 2af5e1ba authored by Moises Fernandez's avatar Moises Fernandez
Browse files

Changed to have a compiled version. Don't need to compile each run time

parent d27358fd
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,9 @@ extern "C" __global__ void fit_PVM_single_kernel( //INPUT
const double* bvecs,
const double* bvals,
const int nvox,
const int nfib,
const int ndirections,
const int nfib,
const int nparams,
const bool m_include_f0,
//INPUT-OUTPUT
double* params);
......@@ -21,7 +23,9 @@ extern "C" __global__ void fit_PVM_single_c_kernel( //INPUT
const double* bvecs,
const double* bvals,
const int nvox,
const int ndirections,
const int nfib,
const int nparams,
const bool m_eval_BIC,
const bool m_include_f0,
const bool m_return_fanning,
......@@ -34,7 +38,9 @@ extern "C" __global__ void fit_PVM_multi_kernel( //INPUT
const double* bvecs,
const double* bvals,
const int nvox,
const int nfib,
const int ndirections,
const int nfib,
const int nparams,
const bool m_include_f0,
//OUTPUT
double* params);
......@@ -45,7 +51,9 @@ extern "C" __global__ void get_residuals_PVM_single_kernel( //INPUT
const double* bvecs,
const double* bvals,
const int nvox,
const int ndirections,
const int nfib,
const int nparams,
const bool m_include_f0,
const bool* includes_f0,
//OUTPUT
......@@ -57,7 +65,9 @@ extern "C" __global__ void get_residuals_PVM_single_c_kernel( //INPUT
const double* bvecs,
const double* bvals,
const int nvox,
const int ndirections,
const int nfib,
const int nparams,
const bool m_include_f0,
const bool* includes_f0,
//OUTPUT
......@@ -70,7 +80,9 @@ extern "C" __global__ void get_residuals_PVM_multi_kernel( //INPUT
const double* bvecs,
const double* bvals,
const int nvox,
const int ndirections,
const int nfib,
const int nparams,
const bool m_include_f0,
const bool* includes_f0,
//OUTPUT
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment