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
2cfae895
Commit
2cfae895
authored
5 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
plrnt: Remove the check for square tiles that is useless for plrnt kernel
parent
06e70618
No related branches found
No related tags found
1 merge request
!201
Modify the map function to take into parameters an variadic number of data
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compute/zplrnt.c
+2
-7
2 additions, 7 deletions
compute/zplrnt.c
with
2 additions
and
7 deletions
compute/zplrnt.c
+
2
−
7
View file @
2cfae895
...
...
@@ -11,14 +11,14 @@
*
* @brief Chameleon zplrnt wrappers
*
* @version 1.
2
.0
* @version 1.
3
.0
* @comment This file has been automatically generated
* from Plasma 2.5.0 for CHAMELEON 0.9.2
* @author Mathieu Faverge
* @author Emmanuel Agullo
* @author Cedric Castagnede
* @author Florent Pruvost
* @date 202
2
-0
2-22
* @date 202
4
-0
3-08
* @precisions normal z -> s d c
*
*/
...
...
@@ -251,11 +251,6 @@ int CHAMELEON_zplrnt_Tile_Async( CHAM_desc_t *A,
chameleon_error
(
"CHAMELEON_zplrnt_Tile"
,
"invalid descriptor"
);
return
chameleon_request_fail
(
sequence
,
request
,
CHAMELEON_ERR_ILLEGAL_VALUE
);
}
/* Check input arguments */
if
(
A
->
nb
!=
A
->
mb
)
{
chameleon_error
(
"CHAMELEON_zplrnt_Tile"
,
"only square tiles supported"
);
return
chameleon_request_fail
(
sequence
,
request
,
CHAMELEON_ERR_ILLEGAL_VALUE
);
}
/* Quick return */
if
(
chameleon_min
(
A
->
m
,
A
->
n
)
==
0
)
...
...
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