Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dune-fem-dg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dune-fem
dune-fem-dg
Commits
444b759f
Commit
444b759f
authored
11 years ago
by
Robert Kloefkorn
Browse files
Options
Downloads
Patches
Plain Diff
only compute thread number once per call.
parent
3c14ac39
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/fem-dg/main/caching.hh
+6
-4
6 additions, 4 deletions
dune/fem-dg/main/caching.hh
dune/fem-dg/main/default.hh
+20
-26
20 additions, 26 deletions
dune/fem-dg/main/default.hh
with
26 additions
and
30 deletions
dune/fem-dg/main/caching.hh
+
6
−
4
View file @
444b759f
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
dune/fem-dg/main/default.hh
+
20
−
26
View file @
444b759f
...
...
@@ -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
),
qu
ad
);
BaseEvaluationType
::
storage
(
*
this
,
rangeCache
(
quad
,
thread
),
quad
,
thre
ad
);
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
),
qu
ad
);
BaseEvaluationType
::
storage
(
*
this
,
jacobianCache
(
quad
,
thread
),
quad
,
thre
ad
);
// 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
),
qu
ad
);
BaseEvaluationType
::
storage
(
*
this
,
rangeCache
(
quad
,
thread
),
quad
,
thre
ad
);
// 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
),
qu
ad
);
BaseEvaluationType
::
storage
(
*
this
,
jacobianCache
(
quad
,
thread
),
quad
,
thre
ad
);
// 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_
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment