0

I am trying to use VlFeat's vl_kd_forest_query and vl_kdforest_query_with_array. The documentation is poor. All it says is that vl_kdforest_query_with_array "can" make use of multiple cores for running. Does anyone know if this function already uses multiple cores or is there a way to make use of it? Thanks!

(I know one option is to go through the code, but just wanted to know if anyone already has this information.)

Nishita Sant
  • 23
  • 1
  • 6

1 Answers1

0

This function uses parallelization via OpenMP as you can see here:

#ifdef _OPENMP
#pragma omp for
#endif
for(qi = 0 ; qi < (signed)numQueries; ++ qi) {
    /* ... */
}
deltheil
  • 15,496
  • 2
  • 44
  • 64