GPU detection is done once per physical node
[alexxy/gromacs.git] / include / string2.h
index 807eff30760ecb92270cb94af8af3673eff9ae9d..4e94036938dce7b6de22b9cc1fa3d90a1c3edf7b 100644 (file)
@@ -136,14 +136,19 @@ extern const unsigned int
     gmx_string_hash_init;
 
 /* Return a hash of the string according to Dan J. Bernsteins algorithm.
- * This routine only uses characters for which isalnum(c) is true,
- * and all characters are converted to upper case.
  * On the first invocation for a new string, use the constant
  * gmx_string_hash_init for the second argument. If you want to create a hash
  * corresponding to several concatenated strings, provide the returned hash
  * value as hash_init for the second string, etc.
  */
 unsigned int
+gmx_string_fullhash_func(const char *s, unsigned int hash_init);
+
+/* Identical to gmx_string_fullhash_func, except that
+ * this routine only uses characters for which isalnum(c) is true,
+ * and all characters are converted to upper case.
+ */
+unsigned int
 gmx_string_hash_func(const char *s, unsigned int hash_init);
 
 /** Pattern matcing with wildcards. */