Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
hyteg
hyteg
Commits
0e8f0262
Commit
0e8f0262
authored
Apr 11, 2022
by
Nils Kohl
🌝
Browse files
Trying to fix Intel compiler issues.
parent
9cf99c3c
Pipeline
#39118
passed with stages
in 116 minutes and 19 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/hyteg/dgfunctionspace/DGFunction.cpp
View file @
0e8f0262
...
...
@@ -782,7 +782,7 @@ ValueType DGFunction< ValueType >::getMaxMagnitude( uint_t level, bool mpiReduce
{
for
(
uint_t
i
=
0
;
i
<
numDofs
;
i
++
)
{
const
auto
val
=
abs
(
dofs
[
volumedofspace
::
indexing
::
index
(
const
auto
val
=
std
::
abs
(
dofs
[
volumedofspace
::
indexing
::
index
(
idxIt
.
x
(),
idxIt
.
y
(),
idxIt
.
z
(),
cellType
,
i
,
numDofs
,
level
,
memLayout
)]
);
localMax
=
std
::
max
(
localMax
,
val
);
}
...
...
@@ -809,7 +809,7 @@ ValueType DGFunction< ValueType >::getMaxMagnitude( uint_t level, bool mpiReduce
{
for
(
uint_t
i
=
0
;
i
<
numDofs
;
i
++
)
{
const
auto
val
=
abs
(
const
auto
val
=
std
::
abs
(
dofs
[
volumedofspace
::
indexing
::
index
(
idxIt
.
x
(),
idxIt
.
y
(),
faceType
,
i
,
numDofs
,
level
,
memLayout
)]
);
localMax
=
std
::
max
(
localMax
,
val
);
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment