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
747ea54a
Commit
747ea54a
authored
5 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Fix compilation with parsec
parent
eb14441f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
runtime/parsec/control/runtime_async.c
+1
-2
1 addition, 2 deletions
runtime/parsec/control/runtime_async.c
runtime/parsec/control/runtime_descriptor.c
+2
-2
2 additions, 2 deletions
runtime/parsec/control/runtime_descriptor.c
with
3 additions
and
4 deletions
runtime/parsec/control/runtime_async.c
+
1
−
2
View file @
747ea54a
...
...
@@ -29,7 +29,7 @@ int RUNTIME_sequence_create( CHAM_context_t *chamctxt,
parsec_context_t
*
parsec
=
(
parsec_context_t
*
)(
chamctxt
->
schedopt
);
parsec_taskpool_t
*
parsec_dtd_tp
=
parsec_dtd_taskpool_new
();
parsec_
enqueue
(
parsec
,
(
parsec_taskpool_t
*
)
parsec_dtd_tp
);
parsec_
context_add_taskpool
(
parsec
,
(
parsec_taskpool_t
*
)
parsec_dtd_tp
);
sequence
->
schedopt
=
parsec_dtd_tp
;
parsec_context_start
(
parsec
);
...
...
@@ -47,7 +47,6 @@ int RUNTIME_sequence_destroy( CHAM_context_t *chamctxt,
parsec_taskpool_t
*
parsec_dtd_tp
=
(
parsec_taskpool_t
*
)(
sequence
->
schedopt
);
assert
(
parsec_dtd_tp
);
parsec_dtd_taskpool_wait
(
parsec
,
parsec_dtd_tp
);
parsec_taskpool_free
(
parsec_dtd_tp
);
sequence
->
schedopt
=
NULL
;
...
...
This diff is collapsed.
Click to expand it.
runtime/parsec/control/runtime_descriptor.c
+
2
−
2
View file @
747ea54a
...
...
@@ -225,7 +225,7 @@ void RUNTIME_desc_create( CHAM_desc_t *mdesc )
data_collection
->
data_of_key
=
chameleon_parsec_data_of_key
;
data_collection
->
vpid_of
=
chameleon_parsec_vpid_of
;
data_collection
->
vpid_of_key
=
chameleon_parsec_vpid_of_key
;
#if defined(
parsec
_PROF_TRACE)
#if defined(
PARSEC
_PROF_TRACE)
{
int
rc
;
data_collection
->
key_to_string
=
chameleon_parsec_key_to_string
;
...
...
@@ -356,7 +356,7 @@ void RUNTIME_flush()
{
}
void
RUNTIME_desc_flush
(
const
CHAM_desc_t
*
desc
,
void
RUNTIME_desc_flush
(
const
CHAM_desc_t
*
desc
,
const
RUNTIME_sequence_t
*
sequence
)
{
parsec_taskpool_t
*
PARSEC_dtd_taskpool
=
(
parsec_taskpool_t
*
)(
sequence
->
schedopt
);
...
...
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