A few cleanups to threaded product code and test.

This commit is contained in:
Rasmus Munk Larsen
2024-08-09 09:35:23 -07:00
parent 59498c96fe
commit 99ffad1971
2 changed files with 2 additions and 2 deletions

View File

@@ -19,6 +19,7 @@ void test_parallelize_gemm() {
c.noalias() = a * b;
ThreadPool pool(num_threads);
Eigen::setGemmThreadPool(&pool);
MatrixXf c_threaded(n, n);
c_threaded.noalias() = a * b;