From 22c70bdc9dc860dfac1f5b6fcd9a54646145f80e Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Mon, 15 Jan 2018 13:44:36 +0100 Subject: [PATCH] Rename funciton in quark --- runtime/quark/control/runtime_descriptor.c | 2 +- runtime/quark/include/chameleon_quark.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/quark/control/runtime_descriptor.c b/runtime/quark/control/runtime_descriptor.c index d9198f0e5..3832d9926 100644 --- a/runtime/quark/control/runtime_descriptor.c +++ b/runtime/quark/control/runtime_descriptor.c @@ -91,7 +91,7 @@ RUNTIME_data_flush( const MORSE_sequence_t *sequence, return; } -void *RUNTIME_desc_getaddr( const MORSE_desc_t *desc, int m, int n ) +void *RUNTIME_data_getaddr( const MORSE_desc_t *desc, int m, int n ) { return desc->get_blkaddr( desc, m, n ); } diff --git a/runtime/quark/include/chameleon_quark.h b/runtime/quark/include/chameleon_quark.h index 50d11f521..231e8acf3 100644 --- a/runtime/quark/include/chameleon_quark.h +++ b/runtime/quark/include/chameleon_quark.h @@ -40,7 +40,7 @@ typedef struct quark_option_s { /* * Access to block pointer and leading dimension */ -#define RTBLKADDR( desc, type, m, n ) ( (type*)RUNTIME_desc_getaddr( desc, m, n ) ) +#define RTBLKADDR( desc, type, m, n ) ( (type*)RUNTIME_data_getaddr( desc, m, n ) ) #define RUNTIME_BEGIN_ACCESS_DECLARATION -- GitLab