Bläddra i källkod

mlr: Add meaning of combinations as comments

Samuel Thibault 5 år sedan
förälder
incheckning
a014b8b42a
1 ändrade filer med 2 tillägg och 0 borttagningar
  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 };