Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 5353c7c6 authored by PRUVOST Florent's avatar PRUVOST Florent
Browse files

change file names to avoid confusion with files coming from chameleon/control

parent 98d9fa75
No related branches found
No related tags found
No related merge requests found
...@@ -62,8 +62,8 @@ add_custom_target(runtime_quark_include ALL SOURCES ${RUNTIME_HDRS}) ...@@ -62,8 +62,8 @@ add_custom_target(runtime_quark_include ALL SOURCES ${RUNTIME_HDRS})
# ----------------------------------------------------- # -----------------------------------------------------
set(RUNTIME_COMMON_GENERATED "") set(RUNTIME_COMMON_GENERATED "")
set(ZSRC set(ZSRC
control/zprofiling.c control/runtime_zprofiling.c
control/zlocality.c control/runtime_zlocality.c
) )
precisions_rules_py(RUNTIME_COMMON_GENERATED "${ZSRC}" precisions_rules_py(RUNTIME_COMMON_GENERATED "${ZSRC}"
...@@ -71,12 +71,12 @@ precisions_rules_py(RUNTIME_COMMON_GENERATED "${ZSRC}" ...@@ -71,12 +71,12 @@ precisions_rules_py(RUNTIME_COMMON_GENERATED "${ZSRC}"
TARGETDIR "control") TARGETDIR "control")
set(RUNTIME_COMMON set(RUNTIME_COMMON
control/async.c control/runtime_async.c
control/context.c control/runtime_context.c
control/control.c control/runtime_control.c
control/descriptor.c control/runtime_descriptor.c
control/options.c control/runtime_options.c
control/profiling.c control/runtime_profiling.c
codelets/codelet_dataflush.c codelets/codelet_dataflush.c
${RUNTIME_COMMON_GENERATED} ${RUNTIME_COMMON_GENERATED}
) )
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
/** /**
* *
* @file async.c * @file runtime_async.c
* *
* MORSE async routines * MORSE async routines
* MORSE is a software package provided by Univ. of Tennessee, * MORSE is a software package provided by Univ. of Tennessee,
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include <stdlib.h> #include <stdlib.h>
#include "runtime/quark/include/morse_quark.h" #include "runtime/quark/include/morse_quark.h"
/******************************************************************************* /** *****************************************************************************
* Create a sequence * Create a sequence
**/ **/
int RUNTIME_sequence_create(MORSE_context_t *morse, MORSE_sequence_t *sequence) int RUNTIME_sequence_create(MORSE_context_t *morse, MORSE_sequence_t *sequence)
...@@ -41,7 +41,7 @@ int RUNTIME_sequence_create(MORSE_context_t *morse, MORSE_sequence_t *sequence) ...@@ -41,7 +41,7 @@ int RUNTIME_sequence_create(MORSE_context_t *morse, MORSE_sequence_t *sequence)
return MORSE_SUCCESS; return MORSE_SUCCESS;
} }
/******************************************************************************* /** *****************************************************************************
* Destroy a sequence * Destroy a sequence
**/ **/
int RUNTIME_sequence_destroy(MORSE_context_t *morse, MORSE_sequence_t *sequence) int RUNTIME_sequence_destroy(MORSE_context_t *morse, MORSE_sequence_t *sequence)
...@@ -50,7 +50,7 @@ int RUNTIME_sequence_destroy(MORSE_context_t *morse, MORSE_sequence_t *sequence) ...@@ -50,7 +50,7 @@ int RUNTIME_sequence_destroy(MORSE_context_t *morse, MORSE_sequence_t *sequence)
return MORSE_SUCCESS; return MORSE_SUCCESS;
} }
/******************************************************************************* /** *****************************************************************************
* Wait for the completion of a sequence * Wait for the completion of a sequence
**/ **/
int RUNTIME_sequence_wait(MORSE_context_t *morse, MORSE_sequence_t *sequence ) int RUNTIME_sequence_wait(MORSE_context_t *morse, MORSE_sequence_t *sequence )
...@@ -59,7 +59,7 @@ int RUNTIME_sequence_wait(MORSE_context_t *morse, MORSE_sequence_t *sequence ) ...@@ -59,7 +59,7 @@ int RUNTIME_sequence_wait(MORSE_context_t *morse, MORSE_sequence_t *sequence )
return MORSE_SUCCESS; return MORSE_SUCCESS;
} }
/******************************************************************************* /** *****************************************************************************
* Terminate a sequence * Terminate a sequence
**/ **/
void RUNTIME_sequence_flush(void *quark, MORSE_sequence_t *sequence, MORSE_request_t *request, int status) void RUNTIME_sequence_flush(void *quark, MORSE_sequence_t *sequence, MORSE_request_t *request, int status)
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
/** /**
* *
* @file context.c * @file runtime_context.c
* *
* MORSE auxiliary routines * MORSE auxiliary routines
* MORSE is a software package provided by Univ. of Tennessee, * MORSE is a software package provided by Univ. of Tennessee,
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
/** /**
* *
* @file control.c * @file runtime_control.c
* *
* MORSE auxiliary routines * MORSE auxiliary routines
* MORSE is a software package provided by Univ. of Tennessee, * MORSE is a software package provided by Univ. of Tennessee,
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
/** /**
* *
* @file descriptor.c * @file runtime_descriptor.c
* *
* MORSE auxiliary routines * MORSE auxiliary routines
* MORSE is a software package provided by Univ. of Tennessee, * MORSE is a software package provided by Univ. of Tennessee,
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
/** /**
* *
* @file options.c * @file runtime_options.c
* *
* MORSE auxiliary routines * MORSE auxiliary routines
* MORSE is a software package provided by Univ. of Tennessee, * MORSE is a software package provided by Univ. of Tennessee,
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
/** /**
* *
* @file profiling.c * @file runtime_profiling.c
* *
* MORSE auxiliary routines * MORSE auxiliary routines
* MORSE is a software package provided by Univ. of Tennessee, * MORSE is a software package provided by Univ. of Tennessee,
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
/** /**
* *
* @file zlocality.c * @file runtime_zlocality.c
* *
* MORSE codelets kernel * MORSE codelets kernel
* MORSE is a software package provided by Univ. of Tennessee, * MORSE is a software package provided by Univ. of Tennessee,
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
/** /**
* *
* @file zprofiling.c * @file runtime_zprofiling.c
* *
* MORSE codelets kernel * MORSE codelets kernel
* MORSE is a software package provided by Univ. of Tennessee, * MORSE is a software package provided by Univ. of Tennessee,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment