Samuel Thibault vor 13 Jahren
Ursprung
Commit
f6a754b896
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 1 1
      src/common/htable32.h
  2. 1 1
      src/common/htable64.h

+ 1 - 1
src/common/htable32.h

@@ -25,7 +25,7 @@
 
 #define _STARPU_HTBL32_NODE_SIZE	8
 
-/* Hierarchical table: all nodes have a 2^16 arity . */
+/* Hierarchical table: all nodes have a 2^8 arity . */
 /* Note: this struct is used in include/starpu_perfmodel.h */
 struct starpu_htbl32_node {
 	unsigned nentries;

+ 1 - 1
src/common/htable64.h

@@ -25,7 +25,7 @@
 
 #define _STARPU_HTBL64_NODE_SIZE	8 
 
-/* Hierarchical table: all nodes have a 2^32 arity . */
+/* Hierarchical table: all nodes have a 2^8 arity . */
 struct starpu_htbl64_node {
 	unsigned nentries;
 	struct starpu_htbl64_node *children[1ULL<<_STARPU_HTBL64_NODE_SIZE];