Procházet zdrojové kódy

Fix typos (we do use a fortran ordering) and we inverted the order of ld and
nx.

Cédric Augonnet před 14 roky
rodič
revize
62cac04e7b
1 změnil soubory, kde provedl 3 přidání a 2 odebrání
  1. 3 2
      examples/basic_examples/mult.c

+ 3 - 2
examples/basic_examples/mult.c

@@ -190,9 +190,10 @@ static void partition_mult_data(void)
 	/* The BLAS data interface is described by 4 parameters: 
 	 *  - the location of the first element of the matrix to monitor (3rd
 	 *    argument)
-	 *  - the number of elements per row, ie. contiguous elements (4th arg)
 	 *  - the number of elements between columns, aka leading dimension
-	 *    (5th arg)
+	 *    (4th arg)
+	 *  - the number of (contiguous) elements per column, ie. contiguous
+	 *  elements (5th arg)
 	 *  - the number of columns (6th arg)
 	 * The first elements is a pointer to the data_handle that will be
 	 * associated to the matrix, and the second elements gives the memory