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
baf17853
Commit
baf17853
authored
3 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Backport assert and unregistration fix from recursive branch
parent
acc7fd61
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!287
Backport assert and unregistration fix from recursive branch
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
runtime/starpu/control/runtime_descriptor.c
+1
-1
1 addition, 1 deletion
runtime/starpu/control/runtime_descriptor.c
runtime/starpu/interface/cham_tile_interface.c
+4
-1
4 additions, 1 deletion
runtime/starpu/interface/cham_tile_interface.c
with
5 additions
and
2 deletions
runtime/starpu/control/runtime_descriptor.c
+
1
−
1
View file @
baf17853
...
...
@@ -240,7 +240,7 @@ void RUNTIME_desc_destroy( CHAM_desc_t *desc )
for
(
m
=
0
;
m
<
lmt
;
m
++
)
{
if
(
*
handle
!=
NULL
)
{
starpu_data_unregister
_submit
(
*
handle
);
starpu_data_unregister
(
*
handle
);
*
handle
=
NULL
;
}
handle
++
;
...
...
This diff is collapsed.
Click to expand it.
runtime/starpu/interface/cham_tile_interface.c
+
4
−
1
View file @
baf17853
...
...
@@ -299,7 +299,7 @@ cti_alloc_compare(void *data_interface_a, void *data_interface_b)
starpu_cham_tile_interface_t
*
cham_tile_b
=
(
starpu_cham_tile_interface_t
*
)
data_interface_b
;
/* Two matrices are considered compatible if they have the same allocated size */
return
(
cham_tile_a
->
allocsize
==
cham_tile_b
->
allocsize
);
return
(
cham_tile_a
->
allocsize
==
cham_tile_b
->
allocsize
);
}
static
void
...
...
@@ -585,6 +585,9 @@ static int cti_copy_any_to_any( void *src_interface, unsigned src_node,
assert
(
ld_src
>=
m
);
assert
(
ld_dst
>=
m
);
assert
(
m
==
cham_tile_dst
->
tile
.
m
);
assert
(
n
==
cham_tile_dst
->
tile
.
n
);
#if defined(CHAMELEON_KERNELS_TRACE)
fprintf
(
stderr
,
"[ANY->ANY] src(%s, type:%s, m=%d, n=%d, ld=%d, ptr:%p) dest(%s, type:%s, m=%d, n=%d, ld=%d, ptr:%p)
\n
"
,
...
...
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