|
@@ -1,7 +1,7 @@
|
|
|
/* StarPU --- Runtime system for heterogeneous multicore architectures.
|
|
|
*
|
|
|
* Copyright (C) 2009-2014 Université de Bordeaux 1
|
|
|
- * 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
|
|
@@ -172,13 +172,13 @@ void starpu_block_data_register(starpu_data_handle_t *handleptr, unsigned home_n
|
|
|
void starpu_block_ptr_register(starpu_data_handle_t handle, unsigned node,
|
|
|
uintptr_t ptr, uintptr_t dev_handle, size_t offset, uint32_t ldy, uint32_t ldz)
|
|
|
{
|
|
|
- struct starpu_block_interface *interface = starpu_data_get_interface_on_node(handle, node);
|
|
|
+ struct starpu_block_interface *block_interface = starpu_data_get_interface_on_node(handle, node);
|
|
|
starpu_data_ptr_register(handle, node);
|
|
|
- interface->ptr = ptr;
|
|
|
- interface->dev_handle = dev_handle;
|
|
|
- interface->offset = offset;
|
|
|
- interface->ldy = ldy;
|
|
|
- interface->ldz = ldz;
|
|
|
+ block_interface->ptr = ptr;
|
|
|
+ block_interface->dev_handle = dev_handle;
|
|
|
+ block_interface->offset = offset;
|
|
|
+ block_interface->ldy = ldy;
|
|
|
+ block_interface->ldz = ldz;
|
|
|
}
|
|
|
|
|
|
static uint32_t footprint_block_interface_crc32(starpu_data_handle_t handle)
|