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
c7061a85
Commit
c7061a85
authored
8 years ago
by
PRUVOST Florent
Browse files
Options
Downloads
Patches
Plain Diff
chameleon: avoid warning about implicit declaration
parent
efef210b
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
example/lapack_to_morse/step7.h
+2
-1
2 additions, 1 deletion
example/lapack_to_morse/step7.h
include/morse.h.in
+6
-1
6 additions, 1 deletion
include/morse.h.in
timing/timing.c
+4
-0
4 additions, 0 deletions
timing/timing.c
with
12 additions
and
2 deletions
example/lapack_to_morse/step7.h
+
2
−
1
View file @
c7061a85
...
...
@@ -29,8 +29,9 @@
/* Common include for all steps of the tutorial */
#include
"lapack_to_morse.h"
/* Specific includes for step
6
*/
/* Specific includes for step
7
*/
#include
<coreblas/include/lapacke.h>
#include
<coreblas/include/coreblas.h>
#include
<morse.h>
#if defined(CHAMELEON_USE_MPI)
#include
<mpi.h>
...
...
This diff is collapsed.
Click to expand it.
include/morse.h.in
+
6
−
1
View file @
c7061a85
...
...
@@ -3,7 +3,7 @@
* @copyright (c) 2009-2014 The University of Tennessee and The University
* of Tennessee Research Foundation.
* All rights reserved.
* @copyright (c) 2012-201
4
Inria. All rights reserved.
* @copyright (c) 2012-201
6
Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
*
**/
...
...
@@ -21,6 +21,7 @@
* @author Mathieu Faverge
* @author Cedric Augonnet
* @author Cedric Castagnede
* @author Florent Pruvost
* @date 2012-09-15
*
**/
...
...
@@ -70,6 +71,10 @@ int MORSE_InitPar (int nworkers, int ncudas, int nthreads_per_worker);
int MORSE_Finalize (void);
int MORSE_Pause (void);
int MORSE_Resume (void);
int MORSE_Distributed_start (void);
int MORSE_Distributed_stop (void);
int MORSE_Comm_size ( int *size );
int MORSE_Comm_rank ( int *rank );
int MORSE_Lapack_to_Tile (void *Af77, int LDA, MORSE_desc_t *A);
int MORSE_Tile_to_Lapack (MORSE_desc_t *A, void *Af77, int LDA);
int MORSE_Distributed_start(void);
...
...
This diff is collapsed.
Click to expand it.
timing/timing.c
+
4
−
0
View file @
c7061a85
...
...
@@ -57,6 +57,10 @@
#include
<mpi.h>
#endif
#if defined (CHAMELEON_SCHED_STARPU)
#include
<starpu.h>
#endif
static
int
RunTest
(
int
*
iparam
,
_PREC
*
dparam
,
double
*
t_
);
int
ISEED
[
4
]
=
{
0
,
0
,
0
,
1
};
/* initial seed for zlarnv() */
...
...
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