Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
S
src
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
71
Issues
71
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Code Review
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OPAL
src
Commits
337715e2
Commit
337715e2
authored
Nov 05, 2020
by
gsell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
non-standard type uint replaced
parent
d17a8c9d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
ippl/test/FFT/TestFFT.cpp
ippl/test/FFT/TestFFT.cpp
+4
-4
src/Solvers/MGPoissonSolver.h
src/Solvers/MGPoissonSolver.h
+1
-1
No files found.
ippl/test/FFT/TestFFT.cpp
View file @
337715e2
...
@@ -352,7 +352,7 @@ int main(int argc, char *argv[])
...
@@ -352,7 +352,7 @@ int main(int argc, char *argv[])
ccfft
.
setDirectionName
(
-
1
,
"inverse"
);
ccfft
.
setDirectionName
(
-
1
,
"inverse"
);
testmsg
<<
nLoop
<<
" x In-place CC transform using all-parallel layout ..."
<<
endl
;
testmsg
<<
nLoop
<<
" x In-place CC transform using all-parallel layout ..."
<<
endl
;
for
(
uint
i
=
0
;
i
<
nLoop
;
i
++
)
{
for
(
u
nsigned
int
i
=
0
;
i
<
nLoop
;
i
++
)
{
IpplTimings
::
startTimer
(
fftccppTimer
);
IpplTimings
::
startTimer
(
fftccppTimer
);
ccfft
.
transform
(
"forward"
,
CFieldPPStan
);
ccfft
.
transform
(
"forward"
,
CFieldPPStan
);
IpplTimings
::
stopTimer
(
fftccppTimer
);
IpplTimings
::
stopTimer
(
fftccppTimer
);
...
@@ -370,7 +370,7 @@ int main(int argc, char *argv[])
...
@@ -370,7 +370,7 @@ int main(int argc, char *argv[])
}
}
testmsg
<<
"In-place CC transform using layout with zeroth dim serial ..."
<<
endl
;
testmsg
<<
"In-place CC transform using layout with zeroth dim serial ..."
<<
endl
;
for
(
uint
i
=
0
;
i
<
nLoop
;
i
++
)
{
for
(
u
nsigned
int
i
=
0
;
i
<
nLoop
;
i
++
)
{
IpplTimings
::
startTimer
(
fftccpsTimer
);
IpplTimings
::
startTimer
(
fftccpsTimer
);
ccfft
.
transform
(
"forward"
,
CFieldSPStan
);
ccfft
.
transform
(
"forward"
,
CFieldSPStan
);
IpplTimings
::
stopTimer
(
fftccpsTimer
);
IpplTimings
::
stopTimer
(
fftccpsTimer
);
...
@@ -430,7 +430,7 @@ int main(int argc, char *argv[])
...
@@ -430,7 +430,7 @@ int main(int argc, char *argv[])
rcfft
.
setDirectionName
(
-
1
,
"inverse"
);
rcfft
.
setDirectionName
(
-
1
,
"inverse"
);
testmsg
<<
"RC transform using all-parallel layout ..."
<<
endl
;
testmsg
<<
"RC transform using all-parallel layout ..."
<<
endl
;
for
(
uint
i
=
0
;
i
<
nLoop
;
i
++
)
{
for
(
u
nsigned
int
i
=
0
;
i
<
nLoop
;
i
++
)
{
IpplTimings
::
startTimer
(
fftrcppTimer
);
IpplTimings
::
startTimer
(
fftrcppTimer
);
rcfft
.
transform
(
"forward"
,
RFieldPPStan
,
CFieldPPStan0h
,
constInput
);
rcfft
.
transform
(
"forward"
,
RFieldPPStan
,
CFieldPPStan0h
,
constInput
);
IpplTimings
::
stopTimer
(
fftrcppTimer
);
IpplTimings
::
stopTimer
(
fftrcppTimer
);
...
@@ -449,7 +449,7 @@ int main(int argc, char *argv[])
...
@@ -449,7 +449,7 @@ int main(int argc, char *argv[])
testmsg
<<
"RC transform using layout with zeroth dim serial ..."
<<
endl
;
testmsg
<<
"RC transform using layout with zeroth dim serial ..."
<<
endl
;
for
(
uint
i
=
0
;
i
<
nLoop
;
i
++
)
{
for
(
u
nsigned
int
i
=
0
;
i
<
nLoop
;
i
++
)
{
IpplTimings
::
startTimer
(
fftrcpsTimer
);
IpplTimings
::
startTimer
(
fftrcpsTimer
);
rcfft
.
transform
(
"forward"
,
RFieldSPStan
,
CFieldSPStan0h
,
constInput
);
rcfft
.
transform
(
"forward"
,
RFieldSPStan
,
CFieldSPStan0h
,
constInput
);
IpplTimings
::
stopTimer
(
fftrcpsTimer
);
IpplTimings
::
stopTimer
(
fftrcpsTimer
);
...
...
src/Solvers/MGPoissonSolver.h
View file @
337715e2
...
@@ -182,7 +182,7 @@ private:
...
@@ -182,7 +182,7 @@ private:
Teuchos
::
RCP
<
const
Comm_t
>
comm_mp
;
Teuchos
::
RCP
<
const
Comm_t
>
comm_mp
;
/// last N LHS's for extrapolating the new LHS as starting vector
/// last N LHS's for extrapolating the new LHS as starting vector
uint
nLHS_m
;
u
nsigned
int
nLHS_m
;
Teuchos
::
RCP
<
TpetraMultiVector_t
>
P_mp
;
Teuchos
::
RCP
<
TpetraMultiVector_t
>
P_mp
;
std
::
deque
<
TpetraVector_t
>
OldLHS
;
std
::
deque
<
TpetraVector_t
>
OldLHS
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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