Browse Source

fix comment

Samuel Thibault 13 years ago
parent
commit
f6a754b896
2 changed files with 2 additions and 2 deletions
  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];