File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -715,6 +715,8 @@ bool PoissonReconLib::Reconstruct( const Parameters& params,
715
715
716
716
#ifdef WITH_OPENMP
717
717
ThreadPool::Init ((ThreadPool::ParallelType)(int )ThreadPool::OPEN_MP, std::thread::hardware_concurrency ());
718
+ #elif defined __aarch64__ // See https://github.com/mkazhdan/PoissonRecon/issues/190#issuecomment-922378290.
719
+ ThreadPool::Init ((ThreadPool::ParallelType)(int )ThreadPool::NONE, std::thread::hardware_concurrency ());
718
720
#else
719
721
ThreadPool::Init ((ThreadPool::ParallelType)(int )ThreadPool::THREAD_POOL, std::thread::hardware_concurrency ());
720
722
#endif
@@ -759,6 +761,8 @@ bool PoissonReconLib::Reconstruct( const Parameters& params,
759
761
760
762
#ifdef WITH_OPENMP
761
763
ThreadPool::Init ((ThreadPool::ParallelType)(int )ThreadPool::OPEN_MP, std::thread::hardware_concurrency ());
764
+ #elif defined __aarch64__ // See https://github.com/mkazhdan/PoissonRecon/issues/190#issuecomment-922378290.
765
+ ThreadPool::Init ((ThreadPool::ParallelType)(int )ThreadPool::NONE, std::thread::hardware_concurrency ());
762
766
#else
763
767
ThreadPool::Init ((ThreadPool::ParallelType)(int )ThreadPool::THREAD_POOL, std::thread::hardware_concurrency ());
764
768
#endif
You can’t perform that action at this time.
0 commit comments