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
1f7476fe
Commit
1f7476fe
authored
7 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Remove magma from crontrol directory
parent
73b87ca5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!44
Magma
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
control/common.h
+2
-10
2 additions, 10 deletions
control/common.h
control/config.h.in
+0
-3
0 additions, 3 deletions
control/config.h.in
control/control.c
+0
-6
0 additions, 6 deletions
control/control.c
control/workspace.c
+0
-4
0 additions, 4 deletions
control/workspace.c
with
2 additions
and
23 deletions
control/common.h
+
2
−
10
View file @
1f7476fe
...
@@ -69,17 +69,9 @@
...
@@ -69,17 +69,9 @@
#include
<mpi.h>
#include
<mpi.h>
#endif
#endif
/** ****************************************************************************
* Linear Algebra headers
**/
#if defined(CHAMELEON_USE_MAGMA) && !defined(CHAMELEON_SIMULATION)
#include
<magma.h>
#endif
/** ****************************************************************************
/** ****************************************************************************
* Line to avoid conflict with
magma, because, we don't know why
* Line to avoid conflict with
other linear algebra libraries, because, we
* but lapacke provide a wrong interface of lapack in fortran
*
don't know why
but lapacke provide a wrong interface of lapack in fortran
**/
**/
#ifndef LAPACK_NAME
#ifndef LAPACK_NAME
#define LAPACK_NAME(a, b) lapackef77_##a
#define LAPACK_NAME(a, b) lapackef77_##a
...
...
This diff is collapsed.
Click to expand it.
control/config.h.in
+
0
−
3
View file @
1f7476fe
...
@@ -42,7 +42,4 @@
...
@@ -42,7 +42,4 @@
#cmakedefine HAVE_STARPU_MPI_COMM_RANK
#cmakedefine HAVE_STARPU_MPI_COMM_RANK
#cmakedefine HAVE_STARPU_MPI_CACHED_RECEIVE
#cmakedefine HAVE_STARPU_MPI_CACHED_RECEIVE
/* MAGMA functions */
#cmakedefine HAVE_MAGMA_GETRF_INCPIV_GPU
#endif /* CONFIG_H_HAS_BEEN_INCLUDED */
#endif /* CONFIG_H_HAS_BEEN_INCLUDED */
This diff is collapsed.
Click to expand it.
control/control.c
+
0
−
6
View file @
1f7476fe
...
@@ -110,9 +110,6 @@ int MORSE_InitPar(int ncpus, int ncudas, int nthreads_per_worker)
...
@@ -110,9 +110,6 @@ int MORSE_InitPar(int ncpus, int ncudas, int nthreads_per_worker)
}
}
}
}
# endif
# endif
#endif
#if defined(CHAMELEON_USE_MAGMA) && !defined(CHAMELEON_SIMULATION)
magma_init
();
#endif
#endif
RUNTIME_init_scheduler
(
morse
,
ncpus
,
ncudas
,
nthreads_per_worker
);
RUNTIME_init_scheduler
(
morse
,
ncpus
,
ncudas
,
nthreads_per_worker
);
return
MORSE_SUCCESS
;
return
MORSE_SUCCESS
;
...
@@ -142,9 +139,6 @@ int MORSE_Finalize(void)
...
@@ -142,9 +139,6 @@ int MORSE_Finalize(void)
RUNTIME_barrier
(
morse
);
RUNTIME_barrier
(
morse
);
# endif
# endif
RUNTIME_finalize_scheduler
(
morse
);
RUNTIME_finalize_scheduler
(
morse
);
#if defined(CHAMELEON_USE_MAGMA) && !defined(CHAMELEON_SIMULATION)
magma_finalize
();
#endif
#if defined(CHAMELEON_USE_MPI)
#if defined(CHAMELEON_USE_MPI)
if
(
!
morse
->
mpi_outer_init
)
if
(
!
morse
->
mpi_outer_init
)
...
...
This diff is collapsed.
Click to expand it.
control/workspace.c
+
0
−
4
View file @
1f7476fe
...
@@ -133,10 +133,6 @@ int morse_alloc_ipiv(int M, int N, MORSE_enum func, int type, MORSE_desc_t **des
...
@@ -133,10 +133,6 @@ int morse_alloc_ipiv(int M, int N, MORSE_enum func, int type, MORSE_desc_t **des
NB
=
MORSE_NB
;
NB
=
MORSE_NB
;
IB
=
MORSE_IB
;
IB
=
MORSE_IB
;
#if defined(CHAMELEON_USE_MAGMA)
/* IB *= 2; */
#endif
NT
=
(
N
%
NB
==
0
)
?
(
N
/
NB
)
:
((
N
/
NB
)
+
1
);
NT
=
(
N
%
NB
==
0
)
?
(
N
/
NB
)
:
((
N
/
NB
)
+
1
);
MT
=
(
M
%
NB
==
0
)
?
(
M
/
NB
)
:
((
M
/
NB
)
+
1
);
MT
=
(
M
%
NB
==
0
)
?
(
M
/
NB
)
:
((
M
/
NB
)
+
1
);
...
...
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