Skip to content
Snippets Groups Projects
Commit 444b759f authored by Robert Kloefkorn's avatar Robert Kloefkorn
Browse files

only compute thread number once per call.

parent 3c14ac39
No related branches found
No related tags found
No related merge requests found
......@@ -196,17 +196,19 @@ namespace Dune
};
template < class QuadratureType >
const RangeVectorType& rangeCache( const QuadratureType& quadrature ) const
const RangeVectorType& rangeCache( const QuadratureType& quadrature, const int thread ) const
{
assert( thread == ThreadManager::thread() );
return ReturnCache< QuadratureType, Conversion< QuadratureType, CachingInterface >::exists > ::
ranges( *this, quadrature, valueCaches_, localRangeCache_[ ThreadManager::thread() ] );
ranges( *this, quadrature, valueCaches_, localRangeCache_[ thread ] );
}
template < class QuadratureType >
const JacobianRangeVectorType& jacobianCache( const QuadratureType& quadrature ) const
const JacobianRangeVectorType& jacobianCache( const QuadratureType& quadrature, const int thread ) const
{
assert( thread == ThreadManager::thread() );
return ReturnCache< QuadratureType, Conversion< QuadratureType, CachingInterface >::exists > ::
jacobians( *this, quadrature, jacobianCaches_, localJacobianCache_[ ThreadManager::thread() ] );
jacobians( *this, quadrature, jacobianCaches_, localJacobianCache_[ thread ] );
}
private:
......
......@@ -226,9 +226,12 @@ namespace Dune
QuadratureType, RangeArray, DofVector > Traits;
typedef Fem :: EvaluateCallerInterface< Traits > BaseEvaluationType;
// get thread number
const int thread = ThreadManager :: thread();
// get base function evaluate caller (calls evaluateRanges)
const BaseEvaluationType& baseEval =
BaseEvaluationType::storage( *this, rangeCache( quad ), quad );
BaseEvaluationType::storage( *this, rangeCache( quad, thread ), quad, thread );
baseEval.evaluateRanges( quad, dofs, ranges );
#else
......@@ -274,9 +277,12 @@ namespace Dune
JacobianArray, DofVector, Geometry > Traits;
typedef Fem :: EvaluateCallerInterface< Traits > BaseEvaluationType;
// get thread number
const int thread = ThreadManager :: thread();
// get base function evaluate caller (calls axpyRanges)
const BaseEvaluationType& baseEval =
BaseEvaluationType::storage( *this, jacobianCache( quad ), quad );
BaseEvaluationType::storage( *this, jacobianCache( quad, thread ), quad, thread );
// call appropriate axpyJacobian method
baseEval.evaluateJacobians( quad, geometry(), dofs, jacobians );
......@@ -368,9 +374,12 @@ namespace Dune
QuadratureType, RangeArray, DofVector > Traits;
typedef Fem :: EvaluateCallerInterface< Traits > BaseEvaluationType;
// get thread number
const int thread = ThreadManager :: thread();
// get base function evaluate caller (calls axpyRanges)
const BaseEvaluationType& baseEval =
BaseEvaluationType::storage( *this, rangeCache( quad ), quad );
BaseEvaluationType::storage( *this, rangeCache( quad, thread ), quad, thread );
// call appropriate axpyRanges method
baseEval.axpyRanges( quad, rangeFactors, dofs );
......@@ -399,9 +408,12 @@ namespace Dune
JacobianArray, DofVector, Geometry > Traits;
typedef Fem :: EvaluateCallerInterface< Traits > BaseEvaluationType;
// get thread number
const int thread = ThreadManager :: thread();
// get base function evaluate caller (calls axpyRanges)
const BaseEvaluationType& baseEval =
BaseEvaluationType::storage( *this, jacobianCache( quad ), quad );
BaseEvaluationType::storage( *this, jacobianCache( quad, thread ), quad, thread );
// call appropriate axpyRanges method
baseEval.axpyJacobians( quad, geometry(), jacobianFactors, dofs );
......@@ -424,34 +436,16 @@ namespace Dune
GeometryType geometry () const { return entity().geometry(); }
template <class QuadratureType>
/*
#ifdef NEWBASEFCT_CACHING
const ScalarRangeType* rangeCache( const QuadratureType& quad ) const
{
return shapeFunctionSet().scalarShapeFunctionSet().impl().rangeCache( quad );
}
#else
*/
const RangeVectorType& rangeCache( const QuadratureType& quad ) const
const RangeVectorType& rangeCache( const QuadratureType& quad, const int thread ) const
{
return shapeFunctionSet().scalarShapeFunctionSet().impl().rangeCache( quad );
return shapeFunctionSet().scalarShapeFunctionSet().impl().rangeCache( quad, thread );
}
//#endif
template <class QuadratureType>
/*
#ifdef NEWBASEFCT_CACHING
const ScalarJacobianRangeType* jacobianCache( const QuadratureType& quad ) const
{
return shapeFunctionSet().scalarShapeFunctionSet().impl().jacobianCache( quad );
}
#else
*/
const JacobianRangeVectorType& jacobianCache( const QuadratureType& quad ) const
const JacobianRangeVectorType& jacobianCache( const QuadratureType& quad, const int thread ) const
{
return shapeFunctionSet().scalarShapeFunctionSet().impl().jacobianCache( quad );
return shapeFunctionSet().scalarShapeFunctionSet().impl().jacobianCache( quad, thread );
}
//#endif
private:
const EntityType *entity_;
ShapeFunctionSetType shapeFunctionSet_;
......
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