|
|
@@ -2,7 +2,7 @@
|
|
|
*
|
|
|
* Copyright (C) 2009-2014 Université de Bordeaux 1
|
|
|
* Copyright (C) 2010 Mehdi Juhoor <mjuhoor@gmail.com>
|
|
|
- * Copyright (C) 2010, 2011, 2012, 2013 Centre National de la Recherche Scientifique
|
|
|
+ * Copyright (C) 2010, 2011, 2012, 2013, 2014 Centre National de la Recherche Scientifique
|
|
|
*
|
|
|
* StarPU is free software; you can redistribute it and/or modify
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
@@ -43,7 +43,7 @@ static void free_csr_buffer_on_node(void *data_interface, unsigned node);
|
|
|
static size_t csr_interface_get_size(starpu_data_handle_t handle);
|
|
|
static int csr_compare(void *data_interface_a, void *data_interface_b);
|
|
|
static uint32_t footprint_csr_interface_crc32(starpu_data_handle_t handle);
|
|
|
-static ssize_t describe(void *interface, char *buf, size_t size);
|
|
|
+static ssize_t describe(void *data_interface, char *buf, size_t size);
|
|
|
|
|
|
struct starpu_data_interface_ops starpu_interface_csr_ops =
|
|
|
{
|
|
|
@@ -293,9 +293,9 @@ static int copy_any_to_any(void *src_interface, unsigned src_node, void *dst_int
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-static ssize_t describe(void *interface, char *buf, size_t size)
|
|
|
+static ssize_t describe(void *data_interface, char *buf, size_t size)
|
|
|
{
|
|
|
- struct starpu_csr_interface *csr = (struct starpu_csr_interface *) interface;
|
|
|
+ struct starpu_csr_interface *csr = (struct starpu_csr_interface *) data_interface;
|
|
|
return snprintf(buf, size, "C%ux%ux%u",
|
|
|
(unsigned) csr->nnz,
|
|
|
(unsigned) csr->nrow,
|