You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In rapidobj.hpp:7085 the thread count is hardcoded to
auto num_threads = std::thread::hardware_concurrency();
Just asking if there is any chance to vary this from the ReadFile API or by altering some config/prefs. The usecase of that if user want to force rapidobj to load in 1 thread, e.x. while having parallelism on higher scale. Also, as far as i understand, single/multi threaded approach depends strictly on file size, which is clever, but not very flexible.
The text was updated successfully, but these errors were encountered:
In
rapidobj.hpp:7085
the thread count is hardcoded toauto num_threads = std::thread::hardware_concurrency();
Just asking if there is any chance to vary this from the
ReadFile
API or by altering some config/prefs. The usecase of that if user want to forcerapidobj
to load in 1 thread, e.x. while having parallelism on higher scale. Also, as far as i understand, single/multi threaded approach depends strictly on file size, which is clever, but not very flexible.The text was updated successfully, but these errors were encountered: