Skip to content
Snippets Groups Projects
Commit ff1ef898 authored by Mathis Kelm's avatar Mathis Kelm
Browse files

Merge branch 'fix/multithreading-temp' into 'master'

Fix multi threading by using const ref to function

See merge request !3318

(cherry picked from commit 746a1b39)

09fa8e6c [parallel] Fix multi threading by using  const ref to function
parent 666d6404
No related branches found
No related tags found
1 merge request!3319Draft: Merge branch 'fix/multithreading-temp' into 'master'
Pipeline #22676 passed
Pipeline: dumux

#22681

    Pipeline: dumux

    #22680

      Pipeline: dumux

      #22679

        +2
        ......@@ -67,7 +67,7 @@ public:
        }
        private:
        FunctorType functor_;
        const FunctorType& functor_;
        std::size_t count_;
        };
        ......@@ -86,7 +86,7 @@ public:
        }
        private:
        FunctorType functor_;
        const FunctorType& functor_;
        Dune::IntegralRange<std::size_t> range_;
        };
        #endif
        ......@@ -107,7 +107,7 @@ public:
        }
        private:
        FunctorType functor_;
        const FunctorType& functor_;
        std::size_t count_;
        };
        #endif // HAVE_TBB
        ......@@ -127,7 +127,7 @@ public:
        }
        private:
        FunctorType functor_;
        const FunctorType& functor_;
        std::size_t count_;
        };
        #endif // HAVE_KOKKOS
        ......@@ -150,7 +150,7 @@ public:
        }
        private:
        FunctorType functor_;
        const FunctorType& functor_;
        std::size_t count_;
        };
        #endif // HAVE_OPENMP
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment