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
87f0342b
Commit
87f0342b
authored
9 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
control header files are internal to the library, they should not be included in public headers
parent
f9300b07
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
control/async.c
+0
-1
0 additions, 1 deletion
control/async.c
control/common.h
+9
-3
9 additions, 3 deletions
control/common.h
include/morse.h.in
+1
-9
1 addition, 9 deletions
include/morse.h.in
with
10 additions
and
13 deletions
control/async.c
+
0
−
1
View file @
87f0342b
...
...
@@ -30,7 +30,6 @@
* @brief Group routines exposed to users to handle asynchronous tasks execution
*
*/
#include
<stdlib.h>
#include
"control/common.h"
#include
"runtime.h"
...
...
This diff is collapsed.
Click to expand it.
control/common.h
+
9
−
3
View file @
87f0342b
...
...
@@ -31,6 +31,7 @@
#ifndef _MORSE_COMMON_H_
#define _MORSE_COMMON_H_
#include
<stdlib.h>
#include
<stdio.h>
#include
<math.h>
#include
<string.h>
...
...
@@ -73,7 +74,6 @@
#include
<magma.h>
#endif
/** ****************************************************************************
* Line to avoid conflict with magma, because, we don't know why
* but lapacke provide a wrong interface of lapack in fortran
...
...
@@ -81,15 +81,21 @@
#ifndef LAPACK_NAME
#define LAPACK_NAME(a, b) lapackef77_##a
#endif
/** ****************************************************************************
* Chameleon header files
**/
#include
"morse.h"
#include
"coreblas/include/coreblas.h"
#if defined(CHAMELEON_USE_CUDA)
#include
"cudablas/include/cudablas.h"
#endif
#include
"morse.h"
#include
"control/global.h"
#include
"control/auxiliary.h"
#include
"control/context.h"
#include
"control/descriptor.h"
#include
"control/tile.h"
#include
"control/async.h"
#include
"control/bulge.h"
...
...
This diff is collapsed.
Click to expand it.
include/morse.h.in
+
1
−
9
View file @
87f0342b
...
...
@@ -55,14 +55,6 @@
*/
#include "morse_simulate.h"
/* ****************************************************************************
* Set of routines which can be useful fo users
*/
#include "control/context.h"
#include "control/descriptor.h"
/* ****************************************************************************
* MORSE Functions
*/
...
...
@@ -72,7 +64,6 @@ extern "C" {
/* Auxiliary */
int MORSE_Version (int *ver_major, int *ver_minor, int *ver_micro);
int MORSE_Element_Size(int type);
int MORSE_My_Mpi_Rank (void);
int MORSE_Init (int nworkers, int ncudas);
int MORSE_InitPar (int nworkers, int ncudas, int nthreads_per_worker);
...
...
@@ -87,6 +78,7 @@ int MORSE_Distributed_size (int*size);
int MORSE_Distributed_rank (int*rank);
/* Descriptor */
int MORSE_Element_Size(int type);
int MORSE_Desc_Create (MORSE_desc_t **desc, void *mat, MORSE_enum dtyp,
int mb, int nb, int bsiz, int lm, int ln,
int i, int j, int m, int n, int p, int q);
...
...
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