Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
7ca01e2b
Commit
7ca01e2b
authored
May 22, 2015
by
PRUVOST Florent
Browse files
change file names to avoid confusion with files coming from chameleon/control
parent
5353c7c6
Changes
70
Hide whitespace changes
Inline
Side-by-side
runtime/starpu/CMakeLists.txt
View file @
7ca01e2b
...
...
@@ -39,11 +39,11 @@ if ( CBLAS_FOUND AND LAPACKE_FOUND AND LAPACK_FOUND AND CUDA_FOUND AND CUDA_CUBL
endif
()
endif
()
# Generate
the magma
headers for all possible precisions
# --------------------------------------------
----------
# Generate headers for all possible precisions
# --------------------------------------------
set
(
RUNTIME_HDRS_GENERATED
""
)
set
(
ZHDR
include/codelet_z.h
include/
runtime_
codelet_z.h
)
precisions_rules_py
(
RUNTIME_HDRS_GENERATED
"
${
ZHDR
}
"
...
...
@@ -53,11 +53,11 @@ precisions_rules_py(RUNTIME_HDRS_GENERATED "${ZHDR}"
# Define the list of headers
# --------------------------
set
(
RUNTIME_HDRS
include/codelet_profile.h
include/codelets.h
include/morse_starpu.h
include/profiling.h
include/workspace.h
include/runtime_codelet_profile.h
include/runtime_codelets.h
include/runtime_profiling.h
include/runtime_workspace.h
${
RUNTIME_HDRS_GENERATED
}
)
...
...
@@ -74,8 +74,8 @@ add_custom_target(runtime_starpu_include ALL SOURCES ${RUNTIME_HDRS})
# -----------------------------------------------------
set
(
RUNTIME_COMMON_GENERATED
""
)
set
(
ZSRC
control/zprofiling.c
control/zlocality.c
control/
runtime_
zprofiling.c
control/
runtime_
zlocality.c
)
precisions_rules_py
(
RUNTIME_COMMON_GENERATED
"
${
ZSRC
}
"
...
...
@@ -83,13 +83,13 @@ precisions_rules_py(RUNTIME_COMMON_GENERATED "${ZSRC}"
TARGETDIR
"control"
)
set
(
RUNTIME_COMMON
control/control.c
control/context.c
control/descriptor.c
control/async.c
control/options.c
control/profiling.c
control/workspace.c
control/
runtime_
control.c
control/
runtime_
context.c
control/
runtime_
descriptor.c
control/
runtime_
async.c
control/
runtime_
options.c
control/
runtime_
profiling.c
control/
runtime_
workspace.c
codelets/codelet_dataflush.c
${
RUNTIME_COMMON_GENERATED
}
)
...
...
@@ -98,7 +98,7 @@ set(flags_to_add "")
foreach
(
_prec
${
CHAMELEON_PRECISION
}
)
set
(
flags_to_add
"
${
flags_to_add
}
-DPRECISION_
${
_prec
}
"
)
endforeach
()
set_source_files_properties
(
control/profiling.c PROPERTIES COMPILE_FLAGS
"
${
flags_to_add
}
"
)
set_source_files_properties
(
control/
runtime_
profiling.c PROPERTIES COMPILE_FLAGS
"
${
flags_to_add
}
"
)
# Generate the morse sources for all possible precisions
# ------------------------------------------------------
...
...
runtime/starpu/codelets/codelet_zasum.c
View file @
7ca01e2b
...
...
@@ -25,7 +25,7 @@
*
**/
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
#include "runtime_z.h"
void
MORSE_TASK_dzasum
(
MORSE_option_t
*
options
,
...
...
runtime/starpu/codelets/codelet_zaxpy.c
View file @
7ca01e2b
...
...
@@ -23,7 +23,7 @@
*
**/
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
void
MORSE_TASK_zaxpy
(
MORSE_option_t
*
options
,
int
M
,
MORSE_Complex64_t
alpha
,
...
...
runtime/starpu/codelets/codelet_zcallback.c
View file @
7ca01e2b
...
...
@@ -25,7 +25,7 @@
*
**/
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
CHAMELEON_CL_CB
(
zasum
,
starpu_matrix_get_nx
(
task
->
handles
[
0
]),
starpu_matrix_get_ny
(
task
->
handles
[
0
]),
0
,
M
*
N
);
CHAMELEON_CL_CB
(
zaxpy
,
starpu_matrix_get_nx
(
task
->
handles
[
0
]),
starpu_matrix_get_nx
(
task
->
handles
[
1
]),
0
,
M
);
...
...
runtime/starpu/codelets/codelet_zgeadd.c
View file @
7ca01e2b
...
...
@@ -27,7 +27,7 @@
*
**/
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
/**
*
...
...
runtime/starpu/codelets/codelet_zgelqt.c
View file @
7ca01e2b
...
...
@@ -30,7 +30,7 @@
**/
#include "coreblas/include/lapacke.h"
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
/**
*
...
...
runtime/starpu/codelets/codelet_zgemm.c
View file @
7ca01e2b
...
...
@@ -29,7 +29,7 @@
*
**/
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
/**
*
...
...
runtime/starpu/codelets/codelet_zgeqrt.c
View file @
7ca01e2b
...
...
@@ -30,7 +30,7 @@
**/
#include "coreblas/include/lapacke.h"
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
/**
*
...
...
runtime/starpu/codelets/codelet_zgessm.c
View file @
7ca01e2b
...
...
@@ -31,7 +31,7 @@
#include "coreblas/include/cblas.h"
#include "coreblas/include/lapacke.h"
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
/**
*
...
...
runtime/starpu/codelets/codelet_zgessq.c
View file @
7ca01e2b
...
...
@@ -25,7 +25,7 @@
*
**/
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
void
MORSE_TASK_zgessq
(
MORSE_option_t
*
options
,
int
m
,
int
n
,
...
...
runtime/starpu/codelets/codelet_zgetrf.c
View file @
7ca01e2b
...
...
@@ -28,7 +28,7 @@
**/
#include "coreblas/include/lapacke.h"
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
void
MORSE_TASK_zgetrf
(
MORSE_option_t
*
options
,
int
m
,
int
n
,
int
nb
,
...
...
runtime/starpu/codelets/codelet_zgetrf_incpiv.c
View file @
7ca01e2b
...
...
@@ -30,7 +30,7 @@
**/
#include "coreblas/include/lapacke.h"
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
/**
*
...
...
runtime/starpu/codelets/codelet_zgetrf_nopiv.c
View file @
7ca01e2b
...
...
@@ -26,7 +26,7 @@
*
**/
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
/**
*
...
...
runtime/starpu/codelets/codelet_zhemm.c
View file @
7ca01e2b
...
...
@@ -29,7 +29,7 @@
*
**/
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
/**
*
...
...
runtime/starpu/codelets/codelet_zher2k.c
View file @
7ca01e2b
...
...
@@ -29,7 +29,7 @@
*
**/
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
/**
*
...
...
runtime/starpu/codelets/codelet_zherk.c
View file @
7ca01e2b
...
...
@@ -29,7 +29,7 @@
*
**/
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
/**
*
...
...
runtime/starpu/codelets/codelet_zhessq.c
View file @
7ca01e2b
...
...
@@ -25,7 +25,7 @@
*
**/
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
void
MORSE_TASK_zhessq
(
MORSE_option_t
*
options
,
MORSE_enum
uplo
,
int
n
,
...
...
runtime/starpu/codelets/codelet_zlacpy.c
View file @
7ca01e2b
...
...
@@ -30,7 +30,7 @@
**/
#include "coreblas/include/lapacke.h"
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
/**
*
...
...
runtime/starpu/codelets/codelet_zlag2c.c
View file @
7ca01e2b
...
...
@@ -28,7 +28,7 @@
**/
#include "coreblas/include/lapacke.h"
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
/**
*
...
...
runtime/starpu/codelets/codelet_zlange.c
View file @
7ca01e2b
...
...
@@ -28,7 +28,7 @@
**/
#include "coreblas/include/lapacke.h"
#include "runtime/starpu/include/morse_starpu.h"
#include "runtime/starpu/include/codelet_z.h"
#include "runtime/starpu/include/
runtime_
codelet_z.h"
void
MORSE_TASK_zlange
(
MORSE_option_t
*
options
,
MORSE_enum
norm
,
int
M
,
int
N
,
int
NB
,
...
...
Prev
1
2
3
4
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment