Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Chameleon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
Chameleon
Commits
f8b229e3
Commit
f8b229e3
authored
7 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Restore the parsec flushes
parent
57f29b37
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!74
Update PaRSEC naming to the last version
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
runtime/parsec/codelets/codelet_dataflush.c
+8
-12
8 additions, 12 deletions
runtime/parsec/codelets/codelet_dataflush.c
runtime/parsec/control/runtime_async.c
+1
-1
1 addition, 1 deletion
runtime/parsec/control/runtime_async.c
with
9 additions
and
13 deletions
runtime/parsec/codelets/codelet_dataflush.c
+
8
−
12
View file @
f8b229e3
...
@@ -23,25 +23,21 @@
...
@@ -23,25 +23,21 @@
#include
"chameleon/morse_tasks.h"
#include
"chameleon/morse_tasks.h"
void
MORSE_TASK_flush_data
(
const
MORSE_option_t
*
options
,
void
MORSE_TASK_flush_data
(
const
MORSE_option_t
*
options
,
const
MORSE_desc_t
*
A
,
int
Am
,
int
An
)
const
MORSE_desc_t
*
A
,
int
Am
,
int
An
)
{
{
(
void
)
options
;
(
void
)
A
;
(
void
)
Am
;
(
void
)
An
;
parsec_taskpool_t
*
PARSEC_dtd_taskpool
=
(
parsec_taskpool_t
*
)(
options
->
sequence
->
schedopt
)
;
/*
parsec_dtd_data_flush
(
PARSEC_dtd_taskpool
,
RTBLKADDR
(
A
,
MORSE_Complex64_t
,
Am
,
An
)
);
* This is useful for StarPU and PaRSEC MPI implementation, if it happens in
* Quark, it will need to be done carefuly to not break other runtimes.
*/
}
}
void
MORSE_TASK_flush_desc
(
const
MORSE_option_t
*
options
,
void
MORSE_TASK_flush_desc
(
const
MORSE_option_t
*
options
,
MORSE_enum
uplo
,
const
MORSE_desc_t
*
A
)
MORSE_enum
uplo
,
const
MORSE_desc_t
*
A
)
{
{
(
void
)
options
;
(
void
)
uplo
;
(
void
)
A
;
parsec_taskpool_t
*
PARSEC_dtd_taskpool
=
(
parsec_taskpool_t
*
)(
options
->
sequence
->
schedopt
)
;
/*
parsec_dtd_data_flush_all
(
PARSEC_dtd_taskpool
,
(
parsec_data_collection_t
*
)(
A
->
schedopt
)
);
* This is useful for StarPU and PaRSEC MPI implementation, if it happens in
* Quark, it will need to be done carefuly to not break other runtimes.
(
void
)
uplo
;
*/
}
}
void
MORSE_TASK_flush_all
()
void
MORSE_TASK_flush_all
()
...
...
This diff is collapsed.
Click to expand it.
runtime/parsec/control/runtime_async.c
+
1
−
1
View file @
f8b229e3
...
@@ -37,7 +37,7 @@ int RUNTIME_sequence_destroy(MORSE_context_t *morse, MORSE_sequence_t *sequence)
...
@@ -37,7 +37,7 @@ int RUNTIME_sequence_destroy(MORSE_context_t *morse, MORSE_sequence_t *sequence)
assert
(
parsec_dtd_tp
);
assert
(
parsec_dtd_tp
);
// TODO: switch to a patial wait
// TODO: switch to a pa
r
tial wait
//parsec_dtd_taskpool_wait(parsec, parsec_dtd_tp);
//parsec_dtd_taskpool_wait(parsec, parsec_dtd_tp);
parsec_context_wait
(
parsec
);
parsec_context_wait
(
parsec
);
...
...
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