Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Chameleon
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
65e547f7
Commit
65e547f7
authored
Jan 12, 2018
by
Mathieu Faverge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CLeanup those comment lines that messes the indentation
parent
7761fbae
Changes
50
Hide whitespace changes
Inline
Side-by-side
Showing
50 changed files
with
298 additions
and
149 deletions
+298
-149
compute/zbuild.c
compute/zbuild.c
+6
-3
compute/zgeadd.c
compute/zgeadd.c
+6
-3
compute/zgelqf.c
compute/zgelqf.c
+6
-3
compute/zgels.c
compute/zgels.c
+4
-2
compute/zgemm.c
compute/zgemm.c
+6
-3
compute/zgeqrf.c
compute/zgeqrf.c
+4
-2
compute/zgeqrs.c
compute/zgeqrs.c
+6
-3
compute/zgesv_incpiv.c
compute/zgesv_incpiv.c
+6
-3
compute/zgesv_nopiv.c
compute/zgesv_nopiv.c
+6
-3
compute/zgesvd.c
compute/zgesvd.c
+6
-3
compute/zgetrf_incpiv.c
compute/zgetrf_incpiv.c
+6
-3
compute/zgetrf_nopiv.c
compute/zgetrf_nopiv.c
+6
-3
compute/zgetrs_incpiv.c
compute/zgetrs_incpiv.c
+6
-3
compute/zgetrs_nopiv.c
compute/zgetrs_nopiv.c
+6
-3
compute/zheevd.c
compute/zheevd.c
+6
-3
compute/zhemm.c
compute/zhemm.c
+6
-3
compute/zher2k.c
compute/zher2k.c
+6
-3
compute/zherk.c
compute/zherk.c
+6
-3
compute/zhetrd.c
compute/zhetrd.c
+6
-3
compute/zlacpy.c
compute/zlacpy.c
+6
-3
compute/zlange.c
compute/zlange.c
+6
-3
compute/zlanhe.c
compute/zlanhe.c
+6
-3
compute/zlansy.c
compute/zlansy.c
+6
-3
compute/zlantr.c
compute/zlantr.c
+6
-3
compute/zlascal.c
compute/zlascal.c
+6
-3
compute/zlaset.c
compute/zlaset.c
+6
-3
compute/zlauum.c
compute/zlauum.c
+6
-3
compute/zplghe.c
compute/zplghe.c
+6
-3
compute/zplgsy.c
compute/zplgsy.c
+6
-3
compute/zplrnt.c
compute/zplrnt.c
+6
-3
compute/zposv.c
compute/zposv.c
+6
-3
compute/zpotrf.c
compute/zpotrf.c
+6
-3
compute/zpotri.c
compute/zpotri.c
+6
-3
compute/zpotrimm.c
compute/zpotrimm.c
+6
-3
compute/zpotrs.c
compute/zpotrs.c
+6
-3
compute/zsymm.c
compute/zsymm.c
+6
-3
compute/zsyr2k.c
compute/zsyr2k.c
+6
-3
compute/zsyrk.c
compute/zsyrk.c
+6
-3
compute/zsysv.c
compute/zsysv.c
+6
-3
compute/zsytrf.c
compute/zsytrf.c
+6
-3
compute/zsytrs.c
compute/zsytrs.c
+6
-3
compute/ztile.c
compute/ztile.c
+8
-4
compute/ztradd.c
compute/ztradd.c
+6
-3
compute/ztrmm.c
compute/ztrmm.c
+6
-3
compute/ztrsm.c
compute/ztrsm.c
+6
-3
compute/ztrsmpl.c
compute/ztrsmpl.c
+6
-3
compute/ztrtri.c
compute/ztrtri.c
+6
-3
compute/zunglq.c
compute/zunglq.c
+6
-3
compute/zungqr.c
compute/zungqr.c
+6
-3
compute/zunmqr.c
compute/zunmqr.c
+6
-3
No files found.
compute/zbuild.c
View file @
65e547f7
...
...
@@ -29,7 +29,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -143,7 +144,8 @@ int MORSE_zbuild( MORSE_enum uplo, int M, int N,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -205,7 +207,8 @@ int MORSE_zbuild_Tile( MORSE_enum uplo, MORSE_desc_t *A,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zgeadd.c
View file @
65e547f7
...
...
@@ -26,7 +26,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -184,7 +185,8 @@ int MORSE_zgeadd(MORSE_enum trans, int M, int N,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -256,7 +258,8 @@ int MORSE_zgeadd_Tile(MORSE_enum trans,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zgelqf.c
View file @
65e547f7
...
...
@@ -30,7 +30,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -146,7 +147,8 @@ int MORSE_zgelqf(int M, int N,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -206,7 +208,8 @@ int MORSE_zgelqf_Tile(MORSE_desc_t *A, MORSE_desc_t *T)
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zgels.c
View file @
65e547f7
...
...
@@ -217,7 +217,8 @@ int MORSE_zgels(MORSE_enum trans, int M, int N, int NRHS,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -294,7 +295,8 @@ int MORSE_zgels_Tile(MORSE_enum trans, MORSE_desc_t *A,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zgemm.c
View file @
65e547f7
...
...
@@ -50,7 +50,8 @@
*
*/
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -247,7 +248,8 @@ int MORSE_zgemm(MORSE_enum transA, MORSE_enum transB, int M, int N, int K,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -329,7 +331,8 @@ int MORSE_zgemm_Tile(MORSE_enum transA, MORSE_enum transB,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zgeqrf.c
View file @
65e547f7
...
...
@@ -29,7 +29,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -145,7 +146,8 @@ int MORSE_zgeqrf(int M, int N,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
compute/zgeqrs.c
View file @
65e547f7
...
...
@@ -30,7 +30,8 @@
#include "control/common.h"
#include <stdlib.h>
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -168,7 +169,8 @@ int MORSE_zgeqrs(int M, int N, int NRHS,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -229,7 +231,8 @@ int MORSE_zgeqrs_Tile(MORSE_desc_t *A, MORSE_desc_t *T, MORSE_desc_t *B)
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zgesv_incpiv.c
View file @
65e547f7
...
...
@@ -29,7 +29,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -166,7 +167,8 @@ int MORSE_zgesv_incpiv(int N, int NRHS,
morse_sequence_destroy
(
morse
,
sequence
);
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -233,7 +235,8 @@ int MORSE_zgesv_incpiv_Tile(MORSE_desc_t *A, MORSE_desc_t *L, int *IPIV, MORSE_d
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zgesv_nopiv.c
View file @
65e547f7
...
...
@@ -29,7 +29,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -165,7 +166,8 @@ int MORSE_zgesv_nopiv(int N, int NRHS,
morse_sequence_destroy
(
morse
,
sequence
);
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -225,7 +227,8 @@ int MORSE_zgesv_nopiv_Tile(MORSE_desc_t *A, MORSE_desc_t *B)
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zgesvd.c
View file @
65e547f7
...
...
@@ -31,7 +31,8 @@
#include <coreblas/lapacke.h>
#endif
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -238,7 +239,8 @@ int MORSE_zgesvd(MORSE_enum jobu, MORSE_enum jobvt,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -362,7 +364,8 @@ int MORSE_zgesvd_Tile(MORSE_enum jobu, MORSE_enum jobvt,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zgetrf_incpiv.c
View file @
65e547f7
...
...
@@ -29,7 +29,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -147,7 +148,8 @@ int MORSE_zgetrf_incpiv(int M, int N,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -210,7 +212,8 @@ int MORSE_zgetrf_incpiv_Tile(MORSE_desc_t *A, MORSE_desc_t *L, int *IPIV)
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zgetrf_nopiv.c
View file @
65e547f7
...
...
@@ -28,7 +28,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -143,7 +144,8 @@ int MORSE_zgetrf_nopiv(int M, int N,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -198,7 +200,8 @@ int MORSE_zgetrf_nopiv_Tile(MORSE_desc_t *A)
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zgetrs_incpiv.c
View file @
65e547f7
...
...
@@ -29,7 +29,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -172,7 +173,8 @@ int MORSE_zgetrs_incpiv(MORSE_enum trans, int N, int NRHS,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -236,7 +238,8 @@ int MORSE_zgetrs_incpiv_Tile(MORSE_desc_t *A, MORSE_desc_t *L, int *IPIV, MORSE_
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zgetrs_nopiv.c
View file @
65e547f7
...
...
@@ -30,7 +30,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -166,7 +167,8 @@ int MORSE_zgetrs_nopiv(MORSE_enum trans, int N, int NRHS,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -224,7 +226,8 @@ int MORSE_zgetrs_nopiv_Tile(MORSE_desc_t *A, MORSE_desc_t *B)
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zheevd.c
View file @
65e547f7
...
...
@@ -30,7 +30,8 @@
#include <coreblas/lapacke.h>
#endif
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -175,7 +176,8 @@ int MORSE_zheevd(MORSE_enum jobz, MORSE_enum uplo, int N,
morse_sequence_destroy
(
morse
,
sequence
);
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -267,7 +269,8 @@ int MORSE_zheevd_Tile(MORSE_enum jobz, MORSE_enum uplo,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zhemm.c
View file @
65e547f7
...
...
@@ -28,7 +28,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -210,7 +211,8 @@ int MORSE_zhemm(MORSE_enum side, MORSE_enum uplo, int M, int N,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -294,7 +296,8 @@ int MORSE_zhemm_Tile(MORSE_enum side, MORSE_enum uplo,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zher2k.c
View file @
65e547f7
...
...
@@ -28,7 +28,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -214,7 +215,8 @@ int MORSE_zher2k(MORSE_enum uplo, MORSE_enum trans, int N, int K,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -293,7 +295,8 @@ int MORSE_zher2k_Tile(MORSE_enum uplo, MORSE_enum trans,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zherk.c
View file @
65e547f7
...
...
@@ -28,7 +28,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -194,7 +195,8 @@ int MORSE_zherk(MORSE_enum uplo, MORSE_enum trans, int N, int K,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -268,7 +270,8 @@ int MORSE_zherk_Tile(MORSE_enum uplo, MORSE_enum trans,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zhetrd.c
View file @
65e547f7
...
...
@@ -30,7 +30,8 @@
#include <coreblas/lapacke.h>
#endif
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -189,7 +190,8 @@ int MORSE_zhetrd(MORSE_enum jobz, MORSE_enum uplo, int N,
morse_sequence_destroy
(
morse
,
sequence
);
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -291,7 +293,8 @@ int MORSE_zhetrd_Tile(MORSE_enum jobz, MORSE_enum uplo,
return
status
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zlacpy.c
View file @
65e547f7
...
...
@@ -28,7 +28,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -158,7 +159,8 @@ int MORSE_zlacpy(MORSE_enum uplo, int M, int N,
return
MORSE_SUCCESS
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -216,7 +218,8 @@ int MORSE_zlacpy_Tile(MORSE_enum uplo, MORSE_desc_t *A, MORSE_desc_t *B)
return
MORSE_SUCCESS
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zlange.c
View file @
65e547f7
...
...
@@ -26,7 +26,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -158,7 +159,8 @@ double MORSE_zlange(MORSE_enum norm, int M, int N,
return
value
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -215,7 +217,8 @@ double MORSE_zlange_Tile(MORSE_enum norm, MORSE_desc_t *A)
return
value
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zlanhe.c
View file @
65e547f7
...
...
@@ -26,7 +26,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -158,7 +159,8 @@ double MORSE_zlanhe(MORSE_enum norm, MORSE_enum uplo, int N,
return
value
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile
*
...
...
@@ -219,7 +221,8 @@ double MORSE_zlanhe_Tile(MORSE_enum norm, MORSE_enum uplo, MORSE_desc_t *A)
return
value
;
}
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t_Tile_Async
*
...
...
compute/zlansy.c
View file @
65e547f7
...
...
@@ -26,7 +26,8 @@
**/
#include "control/common.h"
/***************************************************************************//**
/**
********************************************************************************
*
* @ingroup MORSE_Complex64_t
*
...
...
@@ -156,7 +157,8 @@ double MORSE_zlansy(MORSE_enum norm, MORSE_enum uplo, int N,
return
value
;
}
/***************************************************************************//**
/**
********************************************************************************
*