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
Merge requests
!434
Feature mpi comm user
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature mpi comm user
fpruvost/chameleon:feature-mpi-comm-user
into
master
Overview
14
Commits
5
Pipelines
0
Changes
1
Merged
PRUVOST Florent
requested to merge
fpruvost/chameleon:feature-mpi-comm-user
into
master
1 year ago
Overview
14
Commits
5
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
aca0e600
Show latest version
1 file
+
7
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
aca0e600
descriptor: cleanup gather
· aca0e600
Mathieu Faverge
authored
1 year ago
control/descriptor_ipiv.c
+
7
−
2
Options
@@ -240,11 +240,16 @@ int CHAMELEON_Ipiv_Flush( const CHAM_ipiv_t *ipiv,
@@ -240,11 +240,16 @@ int CHAMELEON_Ipiv_Flush( const CHAM_ipiv_t *ipiv,
*/
*/
int
CHAMELEON_Ipiv_Gather
(
CHAM_ipiv_t
*
ipivdesc
,
int
*
ipiv
,
int
root
)
int
CHAMELEON_Ipiv_Gather
(
CHAM_ipiv_t
*
ipivdesc
,
int
*
ipiv
,
int
root
)
{
{
int
status
;
CHAM_context_t
*
chamctxt
=
chameleon_context_self
();
CHAM_context_t
*
chamctxt
=
chameleon_context_self
();
RUNTIME_sequence_t
*
sequence
=
NULL
;
RUNTIME_sequence_t
*
sequence
=
NULL
;
int
status
;
chameleon_sequence_create
(
chamctxt
,
&
sequence
);
chameleon_sequence_create
(
chamctxt
,
&
sequence
);
/* Submit the tasks to collect the ipiv array on root */
RUNTIME_ipiv_gather
(
sequence
,
ipivdesc
,
ipiv
,
root
);
RUNTIME_ipiv_gather
(
sequence
,
ipivdesc
,
ipiv
,
root
);
/* Wait for the end */
chameleon_sequence_wait
(
chamctxt
,
sequence
);
chameleon_sequence_wait
(
chamctxt
,
sequence
);
status
=
sequence
->
status
;
status
=
sequence
->
status
;
chameleon_sequence_destroy
(
chamctxt
,
sequence
);
chameleon_sequence_destroy
(
chamctxt
,
sequence
);
Loading