mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
rm useless omp shared directive
This commit is contained in:
parent
1710c07f63
commit
65eba35f98
@ -121,7 +121,7 @@ void ei_run_parallel_gemm(const Functor& func, int rows, int cols)
|
||||
|
||||
GemmParallelInfo* info = new GemmParallelInfo[threads];
|
||||
|
||||
#pragma omp parallel for schedule(static,1) shared(info)
|
||||
#pragma omp parallel for schedule(static,1)
|
||||
for(int i=0; i<threads; ++i)
|
||||
{
|
||||
int r0 = i*blockRows;
|
||||
|
Loading…
Reference in New Issue
Block a user