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
Admin message
GitLab upgrade completed. Current version is 17.8.2.
Show more breadcrumbs
solverstack
Chameleon
Commits
068b79ac
Commit
068b79ac
authored
2 weeks ago
by
LISITO Alycia
Browse files
Options
Downloads
Patches
Plain Diff
codelet_zlacpy: correct callback
parent
5a36de61
No related branches found
Branches containing commit
No related tags found
1 merge request
!522
Small fixes for task refactoring
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
runtime/starpu/codelets/codelet_zlacpy.c
+2
-2
2 additions, 2 deletions
runtime/starpu/codelets/codelet_zlacpy.c
with
2 additions
and
2 deletions
runtime/starpu/codelets/codelet_zlacpy.c
+
2
−
2
View file @
068b79ac
...
...
@@ -106,7 +106,7 @@ insert_task_zlacpy_on_local_node( const RUNTIME_option_t *options,
starpu_data_handle_t
handleA
,
starpu_data_handle_t
handleB
)
{
void
(
*
callback
)(
void
*
)
=
options
->
profiling
?
cl_zlacpy_callback
:
NULL
;
void
(
*
callback
)(
void
*
)
=
NULL
;
//
options->profiling ? cl_zlacpy_callback : NULL;
#if defined(CHAMELEON_RUNTIME_SYNC)
starpu_data_cpy_priority
(
handleB
,
handleA
,
0
,
callback
,
NULL
,
options
->
priority
);
#else
...
...
@@ -120,7 +120,7 @@ insert_task_zlacpy_on_remote_node( const RUNTIME_option_t *options,
starpu_data_handle_t
handleA
,
starpu_data_handle_t
handleB
)
{
void
(
*
callback
)(
void
*
)
=
options
->
profiling
?
cl_zlacpy_callback
:
NULL
;
void
(
*
callback
)(
void
*
)
=
NULL
;
//
options->profiling ? cl_zlacpy_callback : NULL;
#if defined(CHAMELEON_RUNTIME_SYNC)
starpu_mpi_data_cpy_priority
(
handleB
,
handleA
,
options
->
sequence
->
comm
,
0
,
callback
,
NULL
,
options
->
priority
);
#else
...
...
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