浏览代码

mlr: Add meaning of combinations as comments

Samuel Thibault 5 年之前
父节点
当前提交
a014b8b42a
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      examples/mlr/mlr.c

+ 2 - 0
examples/mlr/mlr.c

@@ -110,7 +110,9 @@ static struct starpu_perfmodel cl_model_init =
    template.
  */
 
+/* M^2 * N^1 * K^0 */
 static unsigned combi1 [3]		= {	2,	1,	0 };
+/* M^0 * N^3 * K^1 */
 static unsigned combi2 [3]		= {	0,	3,	1 };
 
 static unsigned *combinations[] = { combi1, combi2 };