Skip to content
Snippets Groups Projects
Commit 2cd47d74 authored by Hunter Belanger's avatar Hunter Belanger Committed by Rasmus Munk Larsen
Browse files

Fixe Conversion Warning in Parallelizer

parent b8600422
No related branches found
No related tags found
No related merge requests found
......@@ -217,7 +217,7 @@ EIGEN_STRONG_INLINE void parallelize_gemm(const Functor& func, Index rows, Index
// Note that the actual number of threads might be lower than the number of
// requested ones
Index actual_threads = omp_get_num_threads();
GemmParallelInfo<Index> info(i, static_cast<int>(actual_threads), task_info);
GemmParallelInfo<Index> info(static_cast<int>(i), static_cast<int>(actual_threads), task_info);
Index blockCols = (cols / actual_threads) & ~Index(0x3);
Index blockRows = (rows / actual_threads);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment