|
@@ -2,7 +2,7 @@
|
|
|
*
|
|
|
* Copyright (C) 2011,2012,2017 Inria
|
|
|
* Copyright (C) 2010-2018 CNRS
|
|
|
- * Copyright (C) 2009-2011,2014-2017 Université de Bordeaux
|
|
|
+ * Copyright (C) 2009-2011,2014-2017,2019 Université de Bordeaux
|
|
|
*
|
|
|
* 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
|
|
@@ -206,6 +206,16 @@ Set the coordinates of the data, to be shown in various profiling tools.
|
|
|
\p dimensions is the number of subsequent \c int parameters.
|
|
|
This can be for instance the tile coordinates within a big matrix.
|
|
|
|
|
|
+\fn void starpu_data_set_ooc_flag(starpu_data_handle_t handle, unsigned flag)
|
|
|
+\ingroup API_Data_Management
|
|
|
+Set whether this data should be elligible to be evicted to disk storage (1) or
|
|
|
+not (0). The default is 1.
|
|
|
+
|
|
|
+\fn unsigned starpu_data_get_ooc_flag(starpu_data_handle_t handle)
|
|
|
+\ingroup API_Data_Management
|
|
|
+Get whether this data was set to be elligible to be evicted to disk storage (1) or
|
|
|
+not (0).
|
|
|
+
|
|
|
\fn int starpu_data_fetch_on_node(starpu_data_handle_t handle, unsigned node, unsigned async)
|
|
|
\ingroup API_Data_Management
|
|
|
Issue a fetch request for the data \p handle to \p node, i.e.
|