Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 75e821c9 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

quark: Fix the dag generation. task_flags do not longer exists (Thanks @ltaief)

parent 7f5eb8fe
No related branches found
No related tags found
1 merge request!266Fix many issues
......@@ -22,9 +22,9 @@
#define _core_blas_dag_h_
#if defined(QUARK_DOT_DAG_ENABLE) /* || 1 */
#define DAG_SET_PROPERTIES( _name, _color ) \
QUARK_Task_Flag_Set(task_flags, TASK_LABEL, (intptr_t)(_name)); \
QUARK_Task_Flag_Set(task_flags, TASK_COLOR, (intptr_t)(_color));
#define DAG_SET_PROPERTIES( _name, _color ) \
QUARK_Task_Flag_Set( (Quark_Task_Flags*)opt, TASK_LABEL, (intptr_t)(_name) ); \
QUARK_Task_Flag_Set( (Quark_Task_Flags*)opt, TASK_COLOR, (intptr_t)(_color) );
#else
#define DAG_SET_PROPERTIES( _name, _color )
#endif
......
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