Mentions légales du service

Skip to content
Snippets Groups Projects
Commit c7061a85 authored by PRUVOST Florent's avatar PRUVOST Florent
Browse files

chameleon: avoid warning about implicit declaration

parent efef210b
No related branches found
No related tags found
No related merge requests found
...@@ -29,8 +29,9 @@ ...@@ -29,8 +29,9 @@
/* Common include for all steps of the tutorial */ /* Common include for all steps of the tutorial */
#include "lapack_to_morse.h" #include "lapack_to_morse.h"
/* Specific includes for step 6 */ /* Specific includes for step 7 */
#include <coreblas/include/lapacke.h> #include <coreblas/include/lapacke.h>
#include <coreblas/include/coreblas.h>
#include <morse.h> #include <morse.h>
#if defined(CHAMELEON_USE_MPI) #if defined(CHAMELEON_USE_MPI)
#include <mpi.h> #include <mpi.h>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* @copyright (c) 2009-2014 The University of Tennessee and The University * @copyright (c) 2009-2014 The University of Tennessee and The University
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2014 Inria. All rights reserved. * @copyright (c) 2012-2016 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
* @author Mathieu Faverge * @author Mathieu Faverge
* @author Cedric Augonnet * @author Cedric Augonnet
* @author Cedric Castagnede * @author Cedric Castagnede
* @author Florent Pruvost
* @date 2012-09-15 * @date 2012-09-15
* *
**/ **/
...@@ -70,6 +71,10 @@ int MORSE_InitPar (int nworkers, int ncudas, int nthreads_per_worker); ...@@ -70,6 +71,10 @@ int MORSE_InitPar (int nworkers, int ncudas, int nthreads_per_worker);
int MORSE_Finalize (void); int MORSE_Finalize (void);
int MORSE_Pause (void); int MORSE_Pause (void);
int MORSE_Resume (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_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_Tile_to_Lapack (MORSE_desc_t *A, void *Af77, int LDA);
int MORSE_Distributed_start(void); int MORSE_Distributed_start(void);
......
...@@ -57,6 +57,10 @@ ...@@ -57,6 +57,10 @@
#include <mpi.h> #include <mpi.h>
#endif #endif
#if defined (CHAMELEON_SCHED_STARPU)
#include <starpu.h>
#endif
static int RunTest(int *iparam, _PREC *dparam, double *t_); static int RunTest(int *iparam, _PREC *dparam, double *t_);
int ISEED[4] = {0,0,0,1}; /* initial seed for zlarnv() */ int ISEED[4] = {0,0,0,1}; /* initial seed for zlarnv() */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment