Mentions légales du service

Skip to content
Snippets Groups Projects
Commit ce3d81e9 authored by THIBAULT Samuel's avatar THIBAULT Samuel
Browse files

Constify option parameter for better compiler analysis

parent 3f6a359c
No related branches found
No related tags found
No related merge requests found
Showing
with 125 additions and 125 deletions
...@@ -148,23 +148,23 @@ void RUNTIME_sdisplay_oneprofile (MORSE_kernel_t); ...@@ -148,23 +148,23 @@ void RUNTIME_sdisplay_oneprofile (MORSE_kernel_t);
#include "runtime_zc.h" #include "runtime_zc.h"
#include "runtime_ds.h" #include "runtime_ds.h"
void MORSE_TASK_ztile_zero(MORSE_option_t *options, void MORSE_TASK_ztile_zero(const MORSE_option_t *options,
int X1, int X2, int Y1, int Y2, int X1, int X2, int Y1, int Y2,
MORSE_desc_t *A, int Am, int An, int lda); MORSE_desc_t *A, int Am, int An, int lda);
void MORSE_TASK_dtile_zero(MORSE_option_t *options, void MORSE_TASK_dtile_zero(const MORSE_option_t *options,
int X1, int X2, int Y1, int Y2, int X1, int X2, int Y1, int Y2,
MORSE_desc_t *A, int Am, int An, int lda); MORSE_desc_t *A, int Am, int An, int lda);
void MORSE_TASK_ctile_zero(MORSE_option_t *options, void MORSE_TASK_ctile_zero(const MORSE_option_t *options,
int X1, int X2, int Y1, int Y2, int X1, int X2, int Y1, int Y2,
MORSE_desc_t *A, int Am, int An, int lda); MORSE_desc_t *A, int Am, int An, int lda);
void MORSE_TASK_stile_zero(MORSE_option_t *options, void MORSE_TASK_stile_zero(const MORSE_option_t *options,
int X1, int X2, int Y1, int Y2, int X1, int X2, int Y1, int Y2,
MORSE_desc_t *A, int Am, int An, int lda); MORSE_desc_t *A, int Am, int An, int lda);
/* /*
* Mark a data as unused after this call * Mark a data as unused after this call
*/ */
void MORSE_TASK_dataflush(MORSE_option_t *options, void MORSE_TASK_dataflush(const MORSE_option_t *options,
MORSE_desc_t *A, int Am, int An); MORSE_desc_t *A, int Am, int An);
void MORSE_TASK_dataflush_all(); void MORSE_TASK_dataflush_all();
......
This diff is collapsed.
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "runtime/parsec/include/morse_parsec.h" #include "runtime/parsec/include/morse_parsec.h"
void MORSE_TASK_dataflush(MORSE_option_t *options, void MORSE_TASK_dataflush(const MORSE_option_t *options,
MORSE_desc_t *A, int Am, int An) MORSE_desc_t *A, int Am, int An)
{ {
(void)options; (void)A; (void)options; (void)A;
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -48,7 +48,7 @@ CORE_dzasum_parsec(dague_execution_unit_t *context, dague_execution_context_t *t ...@@ -48,7 +48,7 @@ CORE_dzasum_parsec(dague_execution_unit_t *context, dague_execution_context_t *t
return 0; return 0;
} }
void MORSE_TASK_dzasum(MORSE_option_t *options, void MORSE_TASK_dzasum(const MORSE_option_t *options,
MORSE_enum storev, MORSE_enum uplo, int M, int N, MORSE_enum storev, MORSE_enum uplo, int M, int N,
MORSE_desc_t *A, int Am, int An, int lda, MORSE_desc_t *A, int Am, int An, int lda,
MORSE_desc_t *B, int Bm, int Bn) MORSE_desc_t *B, int Bm, int Bn)
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -47,7 +47,7 @@ CORE_zaxpy_parsec(dague_execution_unit_t *context, dague_execution_context_t *th ...@@ -47,7 +47,7 @@ CORE_zaxpy_parsec(dague_execution_unit_t *context, dague_execution_context_t *th
return 0; return 0;
} }
void MORSE_TASK_zaxpy(MORSE_option_t *options, void MORSE_TASK_zaxpy(const MORSE_option_t *options,
int M, MORSE_Complex64_t *alpha, int M, MORSE_Complex64_t *alpha,
MORSE_desc_t *A, int Am, int An, int incA, MORSE_desc_t *A, int Am, int An, int incA,
MORSE_desc_t *B, int Bm, int Bn, int incB) MORSE_desc_t *B, int Bm, int Bn, int incB)
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -50,7 +50,7 @@ CORE_zbuild_parsec(dague_execution_unit_t *context, dague_execution_context_t *t ...@@ -50,7 +50,7 @@ CORE_zbuild_parsec(dague_execution_unit_t *context, dague_execution_context_t *t
return 0; return 0;
} }
void MORSE_TASK_zbuild( MORSE_option_t *options, void MORSE_TASK_zbuild( const MORSE_option_t *options,
MORSE_desc_t *A, int Am, int An, int lda, MORSE_desc_t *A, int Am, int An, int lda,
void *user_data, void* user_build_callback ) void *user_data, void* user_build_callback )
{ {
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -111,7 +111,7 @@ CORE_zgeadd_parsec(dague_execution_unit_t *context, dague_execution_context_t *t ...@@ -111,7 +111,7 @@ CORE_zgeadd_parsec(dague_execution_unit_t *context, dague_execution_context_t *t
* \retval <0 if -i, the i-th argument had an illegal value * \retval <0 if -i, the i-th argument had an illegal value
* *
******************************************************************************/ ******************************************************************************/
void MORSE_TASK_zgeadd(MORSE_option_t *options, void MORSE_TASK_zgeadd(const MORSE_option_t *options,
MORSE_enum trans, int m, int n, int nb, MORSE_enum trans, int m, int n, int nb,
MORSE_Complex64_t alpha, MORSE_desc_t *A, int Am, int An, int lda, MORSE_Complex64_t alpha, MORSE_desc_t *A, int Am, int An, int lda,
MORSE_Complex64_t beta, MORSE_desc_t *B, int Bm, int Bn, int ldb) MORSE_Complex64_t beta, MORSE_desc_t *B, int Bm, int Bn, int ldb)
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -114,7 +114,7 @@ CORE_zgelqt_parsec(dague_execution_unit_t *context, dague_execution_context_t *t ...@@ -114,7 +114,7 @@ CORE_zgelqt_parsec(dague_execution_unit_t *context, dague_execution_context_t *t
return 0; return 0;
} }
void MORSE_TASK_zgelqt(MORSE_option_t *options, void MORSE_TASK_zgelqt(const MORSE_option_t *options,
int m, int n, int ib, int nb, int m, int n, int ib, int nb,
MORSE_desc_t *A, int Am, int An, int lda, MORSE_desc_t *A, int Am, int An, int lda,
MORSE_desc_t *T, int Tm, int Tn, int ldt) MORSE_desc_t *T, int Tm, int Tn, int ldt)
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -68,7 +68,7 @@ CORE_zgemm_parsec(dague_execution_unit_t *context, dague_execution_context_t *th ...@@ -68,7 +68,7 @@ CORE_zgemm_parsec(dague_execution_unit_t *context, dague_execution_context_t *th
return 0; return 0;
} }
void MORSE_TASK_zgemm(MORSE_option_t *options, void MORSE_TASK_zgemm(const MORSE_option_t *options,
MORSE_enum transA, int transB, MORSE_enum transA, int transB,
int m, int n, int k, int nb, int m, int n, int k, int nb,
MORSE_Complex64_t alpha, MORSE_desc_t *A, int Am, int An, int lda, MORSE_Complex64_t alpha, MORSE_desc_t *A, int Am, int An, int lda,
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -115,7 +115,7 @@ CORE_zgeqrt_parsec (dague_execution_unit_t *context, dague_execution_context_t * ...@@ -115,7 +115,7 @@ CORE_zgeqrt_parsec (dague_execution_unit_t *context, dague_execution_context_t *
return 0; return 0;
} }
void MORSE_TASK_zgeqrt(MORSE_option_t *options, void MORSE_TASK_zgeqrt(const MORSE_option_t *options,
int m, int n, int ib, int nb, int m, int n, int ib, int nb,
MORSE_desc_t *A, int Am, int An, int lda, MORSE_desc_t *A, int Am, int An, int lda,
MORSE_desc_t *T, int Tm, int Tn, int ldt) MORSE_desc_t *T, int Tm, int Tn, int ldt)
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -102,7 +102,7 @@ CORE_zgessm_parsec(dague_execution_unit_t *context, dague_execution_context_t *t ...@@ -102,7 +102,7 @@ CORE_zgessm_parsec(dague_execution_unit_t *context, dague_execution_context_t *t
return 0; return 0;
} }
void MORSE_TASK_zgessm(MORSE_option_t *options, void MORSE_TASK_zgessm(const MORSE_option_t *options,
int m, int n, int k, int ib, int nb, int m, int n, int k, int ib, int nb,
int *IPIV, int *IPIV,
MORSE_desc_t *L, int Lm, int Ln, int ldl, MORSE_desc_t *L, int Lm, int Ln, int ldl,
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -44,7 +44,7 @@ CORE_zgessq_parsec(dague_execution_unit_t *context, dague_execution_context_t *t ...@@ -44,7 +44,7 @@ CORE_zgessq_parsec(dague_execution_unit_t *context, dague_execution_context_t *t
return 0; return 0;
} }
void MORSE_TASK_zgessq( MORSE_option_t *options, void MORSE_TASK_zgessq( const MORSE_option_t *options,
int m, int n, int m, int n,
MORSE_desc_t *A, int Am, int An, int lda, MORSE_desc_t *A, int Am, int An, int lda,
MORSE_desc_t *SCALESUMSQ, int SCALESUMSQm, int SCALESUMSQn ) MORSE_desc_t *SCALESUMSQ, int SCALESUMSQm, int SCALESUMSQn )
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -50,7 +50,7 @@ CORE_zgetrf_parsec(dague_execution_unit_t *context, dague_execution_context_t *t ...@@ -50,7 +50,7 @@ CORE_zgetrf_parsec(dague_execution_unit_t *context, dague_execution_context_t *t
return 0; return 0;
} }
void MORSE_TASK_zgetrf(MORSE_option_t *options, void MORSE_TASK_zgetrf(const MORSE_option_t *options,
int m, int n, int nb, int m, int n, int nb,
MORSE_desc_t *A, int Am, int An, int lda, MORSE_desc_t *A, int Am, int An, int lda,
int *IPIV, int *IPIV,
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -108,7 +108,7 @@ CORE_zgetrf_incpiv_parsec(dague_execution_unit_t *context, dague_execution_conte ...@@ -108,7 +108,7 @@ CORE_zgetrf_incpiv_parsec(dague_execution_unit_t *context, dague_execution_conte
return 0; return 0;
} }
void MORSE_TASK_zgetrf_incpiv(MORSE_option_t *options, void MORSE_TASK_zgetrf_incpiv(const MORSE_option_t *options,
int m, int n, int ib, int nb, int m, int n, int ib, int nb,
MORSE_desc_t *A, int Am, int An, int lda, MORSE_desc_t *A, int Am, int An, int lda,
MORSE_desc_t *L, int Lm, int Ln, int ldl, MORSE_desc_t *L, int Lm, int Ln, int ldl,
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -95,7 +95,7 @@ CORE_zgetrf_nopiv_parsec(dague_execution_unit_t *context, dague_execution_contex ...@@ -95,7 +95,7 @@ CORE_zgetrf_nopiv_parsec(dague_execution_unit_t *context, dague_execution_contex
return 0; return 0;
} }
void MORSE_TASK_zgetrf_nopiv(MORSE_option_t *options, void MORSE_TASK_zgetrf_nopiv(const MORSE_option_t *options,
int m, int n, int ib, int nb, int m, int n, int ib, int nb,
MORSE_desc_t *A, int Am, int An, int lda, MORSE_desc_t *A, int Am, int An, int lda,
int iinfo) int iinfo)
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -67,7 +67,7 @@ CORE_zhemm_parsec(dague_execution_unit_t *context, dague_execution_context_t *th ...@@ -67,7 +67,7 @@ CORE_zhemm_parsec(dague_execution_unit_t *context, dague_execution_context_t *th
return 0; return 0;
} }
void MORSE_TASK_zhemm(MORSE_option_t *options, void MORSE_TASK_zhemm(const MORSE_option_t *options,
MORSE_enum side, MORSE_enum uplo, MORSE_enum side, MORSE_enum uplo,
int m, int n, int nb, int m, int n, int nb,
MORSE_Complex64_t alpha, MORSE_desc_t *A, int Am, int An, int lda, MORSE_Complex64_t alpha, MORSE_desc_t *A, int Am, int An, int lda,
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -67,7 +67,7 @@ CORE_zher2k_parsec(dague_execution_unit_t *context, dague_execution_context_t *t ...@@ -67,7 +67,7 @@ CORE_zher2k_parsec(dague_execution_unit_t *context, dague_execution_context_t *t
return 0; return 0;
} }
void MORSE_TASK_zher2k(MORSE_option_t *options, void MORSE_TASK_zher2k(const MORSE_option_t *options,
MORSE_enum uplo, MORSE_enum trans, MORSE_enum uplo, MORSE_enum trans,
int n, int k, int nb, int n, int k, int nb,
MORSE_Complex64_t alpha, MORSE_desc_t *A, int Am, int An, int lda, MORSE_Complex64_t alpha, MORSE_desc_t *A, int Am, int An, int lda,
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -63,7 +63,7 @@ CORE_zherk_parsec(dague_execution_unit_t *context, dague_execution_context_t * t ...@@ -63,7 +63,7 @@ CORE_zherk_parsec(dague_execution_unit_t *context, dague_execution_context_t * t
return 0; return 0;
} }
void MORSE_TASK_zherk(MORSE_option_t *options, void MORSE_TASK_zherk(const MORSE_option_t *options,
MORSE_enum uplo, MORSE_enum trans, MORSE_enum uplo, MORSE_enum trans,
int n, int k, int nb, int n, int k, int nb,
double alpha, MORSE_desc_t *A, int Am, int An, int lda, double alpha, MORSE_desc_t *A, int Am, int An, int lda,
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -44,7 +44,7 @@ CORE_zhessq_parsec(dague_execution_unit_t *context, dague_execution_context_t *t ...@@ -44,7 +44,7 @@ CORE_zhessq_parsec(dague_execution_unit_t *context, dague_execution_context_t *t
return 0; return 0;
} }
void MORSE_TASK_zhessq( MORSE_option_t *options, void MORSE_TASK_zhessq( const MORSE_option_t *options,
MORSE_enum uplo, int n, MORSE_enum uplo, int n,
MORSE_desc_t *A, int Am, int An, int lda, MORSE_desc_t *A, int Am, int An, int lda,
MORSE_desc_t *SCALESUMSQ, int SCALESUMSQm, int SCALESUMSQn ) MORSE_desc_t *SCALESUMSQ, int SCALESUMSQm, int SCALESUMSQn )
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* of Tennessee Research Foundation. * of Tennessee Research Foundation.
* All rights reserved. * All rights reserved.
* @copyright (c) 2012-2015 Inria. All rights reserved. * @copyright (c) 2012-2015 Inria. All rights reserved.
* @copyright (c) 2012-2015 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved. * @copyright (c) 2012-2016 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* *
**/ **/
...@@ -54,7 +54,7 @@ CORE_zlacpy_parsec(dague_execution_unit_t *context, dague_execution_context_t * ...@@ -54,7 +54,7 @@ CORE_zlacpy_parsec(dague_execution_unit_t *context, dague_execution_context_t *
return 0; return 0;
} }
void MORSE_TASK_zlacpy(MORSE_option_t *options, void MORSE_TASK_zlacpy(const MORSE_option_t *options,
MORSE_enum uplo, int m, int n, int nb, MORSE_enum uplo, int m, int n, int nb,
MORSE_desc_t *A, int Am, int An, int lda, MORSE_desc_t *A, int Am, int An, int lda,
MORSE_desc_t *B, int Bm, int Bn, int ldb) MORSE_desc_t *B, int Bm, int Bn, int ldb)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment