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
7384d533
Commit
7384d533
authored
2 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
tasks: Fix prototype of mixed precision conversion tasks
parent
035ab4aa
No related branches found
No related tags found
1 merge request
!344
Mixed Precision: Make sure the mixed precision conversion files are correctly handled during the compilation
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/chameleon/tasks_zc.h
+6
-6
6 additions, 6 deletions
include/chameleon/tasks_zc.h
with
6 additions
and
6 deletions
include/chameleon/tasks_zc.h
+
6
−
6
View file @
7384d533
...
...
@@ -31,12 +31,12 @@
* Declarations of QUARK wrappers (called by CHAMELEON) - alphabetical order
*/
void
INSERT_TASK_clag2z
(
const
RUNTIME_option_t
*
options
,
int
m
,
int
n
,
int
nb
,
CHAM_desc_t
*
A
,
int
Am
,
int
An
,
int
lda
,
CHAM_desc_t
*
B
,
int
Bm
,
int
Bn
,
int
ldb
);
int
m
,
int
n
,
int
nb
,
const
CHAM_desc_t
*
A
,
int
Am
,
int
An
,
const
CHAM_desc_t
*
B
,
int
Bm
,
int
Bn
);
void
INSERT_TASK_zlag2c
(
const
RUNTIME_option_t
*
options
,
int
m
,
int
n
,
int
nb
,
CHAM_desc_t
*
A
,
int
Am
,
int
An
,
int
lda
,
CHAM_desc_t
*
B
,
int
Bm
,
int
Bn
,
int
ldb
);
int
m
,
int
n
,
int
nb
,
const
CHAM_desc_t
*
A
,
int
Am
,
int
An
,
const
CHAM_desc_t
*
B
,
int
Bm
,
int
Bn
);
#endif
/* _chameleon_tasks_zc_h_ */
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