Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
ScalFMM
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
solverstack
ScalFMM
Commits
d8ebb5c3
Commit
d8ebb5c3
authored
May 26, 2016
by
Martin Khannouz
Committed by
Berenger Bramas
Mar 14, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
blockedMpiChebyshev ORDER set to 4 and add action to proceed when calling execute
parent
ff34f1f0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
Tests/GroupTree/testBlockedMpiChebyshev.cpp
Tests/GroupTree/testBlockedMpiChebyshev.cpp
+4
-3
No files found.
Tests/GroupTree/testBlockedMpiChebyshev.cpp
View file @
d8ebb5c3
...
...
@@ -62,7 +62,7 @@ int main(int argc, char* argv[]){
typedef
double
FReal
;
// Initialize the types
static
const
int
ORDER
=
6
;
static
const
int
ORDER
=
4
;
typedef
FInterpMatrixKernelR
<
FReal
>
MatrixKernelClass
;
typedef
FChebCellPODCore
GroupCellSymbClass
;
...
...
@@ -161,6 +161,7 @@ int main(int argc, char* argv[]){
timer
.
tac
();
//std::cerr << "Done " << "(@Creating and Inserting Particles = " << timer.elapsed() << "s)." << std::endl;
int
operationsToProceed
=
FFmmP2M
|
FFmmM2M
|
FFmmM2L
|
FFmmL2L
|
FFmmL2P
|
FFmmP2P
;
{
// -----------------------------------------------------
//std::cout << "\nChebyshev FMM (ORDER="<< ORDER << ") ... " << std::endl;
...
...
@@ -172,7 +173,7 @@ int main(int argc, char* argv[]){
mpiComm
.
global
().
barrier
();
timer
.
tic
();
starpu_fxt_start_profiling
();
groupalgo
.
execute
();
groupalgo
.
execute
(
operationsToProceed
);
mpiComm
.
global
().
barrier
();
starpu_fxt_stop_profiling
();
timer
.
tac
();
...
...
@@ -204,7 +205,7 @@ int main(int argc, char* argv[]){
FmmClass
algorithm
(
mpiComm
.
global
(),
&
treeCheck
,
&
kernels
);
mpiComm
.
global
().
barrier
();
timer
.
tic
();
algorithm
.
execute
();
algorithm
.
execute
(
operationsToProceed
);
mpiComm
.
global
().
barrier
();
timer
.
tac
();
timeAverage
(
mpiComm
.
global
().
processId
(),
mpiComm
.
global
().
processCount
(),
timer
.
elapsed
());
...
...
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