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
8b2bd36a
Commit
8b2bd36a
authored
1 year ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
lacpy: Fix the check of the tile sizes
parent
cc3ec1dd
No related branches found
No related tags found
1 merge request
!392
Map Function: Add an access parameter to be able to generate data out of this function.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compute/zlacpy.c
+2
-2
2 additions, 2 deletions
compute/zlacpy.c
with
2 additions
and
2 deletions
compute/zlacpy.c
+
2
−
2
View file @
8b2bd36a
...
...
@@ -280,8 +280,8 @@ int CHAMELEON_zlacpy_Tile_Async( cham_uplo_t uplo, CHAM_desc_t *A, CHAM_desc_t *
return
chameleon_request_fail
(
sequence
,
request
,
CHAMELEON_ERR_ILLEGAL_VALUE
);
}
/* Check input arguments */
if
(
A
->
n
b
!=
A
->
mb
)
{
chameleon_error
(
"CHAMELEON_zlacpy_Tile_Async"
,
"only
square til
es supported"
);
if
(
(
A
->
m
b
!=
B
->
mb
)
||
(
A
->
nb
!=
B
->
nb
)
)
{
chameleon_error
(
"CHAMELEON_zlacpy_Tile_Async"
,
"only
matching tile siz
es supported"
);
return
chameleon_request_fail
(
sequence
,
request
,
CHAMELEON_ERR_ILLEGAL_VALUE
);
}
/* Check input arguments */
...
...
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