Closed nthiery closed 7 years ago
Attachment: trac_10950-hash_matrices-nt.patch.gz
Description changed:
---
+++
@@ -1,6 +1,4 @@
-The current hash function for generic dense matrices suffers from hard
-collisions with permutation matrices. For example: all permutation
-matrices of size 4 have hash 0!
+The current hash function for generic dense matrices suffers from hard collisions with permutation matrices. For example: all permutation matrices of size 4 have hash 0!
sage: def mat(p): m = p.to_matrix(); m.set_immutable(); return m
@@ -30,11 +28,7 @@
I stumbled on this when profiling some code using Weyl groups that
-heavily used caching (the hash of a weyl group element is the hash of
-the underlying matrix). I gained a speed factor of 10x by just
-tweaking the hash of matrices as in the attached patch. Now, I have no
-idea if in general that would be a good hash for matrices, so please
-some expert write an appropriate patch.
+heavily used caching (the hash of a weyl group element is the hash of the underlying matrix). I gained a speed factor of 10x by just tweaking the hash of matrices as in the attached patch. Now, I have no idea if in general that would be a good hash for matrices, so please some expert write an appropriate patch.
Cheers,
Nicolas
Note that in m = p.to_matrix()
, the matrix m is sparse, not dense (as far as I can tell), so you'll need to patch both matrix_dense.pyx and matrix_sparse.pyx.
Replying to @jhpalmieri:
Note that in
m = p.to_matrix()
, the matrix m is sparse, not dense (as far as I can tell), so you'll need to patch both matrix_dense.pyx and matrix_sparse.pyx.
Oops. I changed my examples at the last minute, thinking that permutation matrices would feel less exotic than Weyl groups, but I forgot to actually check that my patch fixed the problem for those. Thanks for pointing this out!
Changed keywords from Weyl groups to Weyl groups, permutation matrices, hash
Oops again ... Please ignore the second attachment; it's a duplicate of the first. Anyone with power: feel free to delete
This is still true. I'd say it's just true of "dense" collections of matrices:
def imm(A):
A.set_immutable()
return A
sage: V={imm(matrix([a,b,c,d])) for a in [-1..1] for b in [-1..1] for c in [-1..1] for d in [-1..1]}
sage: H={hash(v) for v in V}
sage: Ht={hash(tuple(v.list())) for v in V}
sage: len(V); len (H); len(Ht)
81
14
69
so I think this problem might need a little bump in priority.
I opened #19050 while not knowing about this one! Funny numbers.
It would be easy to design a robust hash for dense matrices. But we do want to have the same hash for sparse and dense matrices. As a consequence the hash should just be computed from the set {(i,j,v)
} of nonzero values v
at position (i,j)
. We could do a reasonable hash by asking this list to be sorted lexicographically in (i,j)
(that would cost a log(num of entries)
).
For polynomials this is exactly the same setting with the list (exponent, coefficient)
. See #21284.
The question: for sparse matrices (respectively sparse or multivariate polynomials), would it be reasonable to sort the indices in the hash function?
This may be a silly question, but why does this happen?
sage: hash((0, 1, -1, -1)) == hash((0, 1, 0, 0))
True
How about just doing a frozenset
instead of sorting the tuples?
@tscrim: using frozenset
, the hash function would be less robust and, more importantly, would be very hard to optimize in specialized classes. You don't want the construction of a frozenset each time __hash__
is called (eg for dense matrices or univariate polynomial the list of exponents naturally come in order).
Replying to @videlec:
@tscrim: using
frozenset
, the hash function would be less robust
I don't see how, but maybe I don't understand what you think it will be less robust with respect to.
and, more importantly, would be very hard to optimize in specialized classes.
I don't see why you would need to optimize the hash function. The bottleneck would be iterating over the non-zero values, which is (would be?) a separate method.
You don't want the construction of a frozenset each time
__hash__
is called (eg for dense matrices or univariate polynomial the list of exponents naturally come in order).
Do you really want to sort a list of triples every time for sparse matrices? Inserting n objects into a hash table is much faster than that: O(n) vs O(n log n) for sorting them. We might want to consider (continuing) to cache the __hash__
as well.
I also don't see why polynomials should come into an argument here.
However, here is another thought for a hash function:
temp = [0,0,0]
for i,j in self.nonzero_positions():
temp[0] += i
temp[1] += j
temp[2] += self[i,j]
return hash(tuple(temp))
First of all, the hash function is time critical and caching a hash is useless. You are almost never trying to test A = A
(are you?). At least, upstream Python decided not to cache it for tuples and frozensets based on concrete benchmarking.
Let me consider a first concrete situation. I have 2 invertible matrices 3x3 matrices and I want to check whether there is a multiplicative relation among them. It is likely that I need to consider products of size 20, that is put in a set around 320 matrices. Building a frozenset for each of them would be a considerable waste and caching would not help.
A situation for which caching might be useful is when you have a "combinatorial" free module with a basis made of matrices and you encode your vectors using your matrices as keys. Though, that might be a problem of datastructure here (the keys are completely static).
Do you have more concrete situations where hashing is involved?
For sorting the indices, I believe that in most situations hashing will be used on dense matrices. For them, you can go through the (i,j)
indices in any order you like.
Concerning collisions, I don't believe your hash function was a serious proposal. Let us consider n x n
matrices with entries {0,1}
. Let N = n2. You know that you have 2N such matrices and it is easy to see that you have a polynomial number of values produced by your hash function (around N2 N2 N = N5 if I am optimistic). Even on permutation matrices, your hash function would perform terribly.
The relevance of polynomials is that you have the same kind of troubles passing from univariate (coefficients in a list like structure) to multivariate (coefficients in a dictionary like structure). See #21284.
Replying to @jhpalmieri:
This may be a silly question, but why does this happen?
sage: hash((0, 1, -1, -1)) == hash((0, 1, 0, 0)) True
Interesting. This is how Python implements hashing for tuples:
sage: def tuplehash(t):
....: n = len(t)
....: x = 3430008
....: for i in range(n):
....: h = hash(t[i])
....: x = (x ^^ h) * (1000003 + (82520 + 2*n)*i)
....: return x + 97531
The resulting value should be reduced mod 232 or 264 depending on the system.
The reason for the collision is that N ^^ -2 == -N
for any odd N
. The choice of a XOR operation there is strange, since most simple hash functions would use addition instead. See https://en.wikipedia.org/wiki/Universal_hashing#Constructions for example.
Replying to @tscrim:
However, here is another thought for a hash function:
temp = [0,0,0] for i,j in self.nonzero_positions(): temp[0] += i temp[1] += j temp[2] += self[i,j] return hash(tuple(temp))
I like the idea but not the concrete implementation. It does avoid sorting but there needs to be more mixing. Something like
h = 0
for i,j in self.nonzero_positions():
h += H(i, j, self[i,j])
return h
where H
is a simple hash function.
Author: Jeroen Demeyer
Let me give this a shot...
Dependencies: #24090
Replying to @videlec:
First of all, the hash function is time critical and caching a hash is useless. You are almost never trying to test
A = A
(are you?). At least, upstream Python decided not to cache it for tuples and frozensets based on concrete benchmarking.Let me consider a first concrete situation. I have 2 invertible matrices 3x3 matrices and I want to check whether there is a multiplicative relation among them. It is likely that I need to consider products of size 20, that is put in a set around 320 matrices. Building a frozenset for each of them would be a considerable waste and caching would not help.
It depends on what you mean by "considerable waste." In terms of computational complexity, it just adds to the constant (or probably would not even be contributing asymptotically for dense matrices). However, I do agree that it effectively doubles the memory footprint for dense matrices.
A situation for which caching might be useful is when you have a "combinatorial" free module with a basis made of matrices and you encode your vectors using your matrices as keys. Though, that might be a problem of datastructure here (the keys are completely static).
Do you have more concrete situations where hashing is involved?
As you mentioned, when they are used for keys of a module implemented as a dict
, such for CombinatorialFreeModule
elements, or for defining objects such as FiniteDimensionalAlgebra
. Granted, in these situations the matrices are relatively small.
For sorting the indices, I believe that in most situations hashing will be used on dense matrices. For them, you can go through the
(i,j)
indices in any order you like.
I have been doing a bunch of stuff with sparse matrices recently (computing representations of Lie algebras) and have encountered things that are optimized for dense matrices that are used by sparse matrices as well. So I'd appreciate it if we didn't make the hash worse for sparse matrices just because it is better of dense matrices.
Concerning collisions, I don't believe your hash function was a serious proposal.
It was just a thought on how to remove the dependence on the order and not fully fleshed out. I know I'm less experienced in this area, but I am legitimately trying to help.
Let us consider
n x n
matrices with entries{0,1}
. Let N = n2. You know that you have 2N such matrices and it is easy to see that you have a polynomial number of values produced by your hash function (around N2 N2 N = N5 if I am optimistic). Even on permutation matrices, your hash function would perform terribly.
I agree that it would not perform well in this case. What do you think about Jeoren's modification. I think it works well for both dense and sparse matrices and should work better than my proposal.
The relevance of polynomials is that you have the same kind of troubles passing from univariate (coefficients in a list like structure) to multivariate (coefficients in a dictionary like structure). See #21284.
For the multivariate polynomials, it looks like what is used is Jeroen's proposal. Although we could have a completely different solution for polynomials because the data structure for dense univariate is 1D and sparse k-variate are kD, whereas matrices are strictly 2D.
Commit: f67a883
Branch pushed to git repo; I updated commit sha1. New commits:
f67a883 | Fix doctests |
Description changed:
---
+++
@@ -6,25 +6,26 @@
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
-In general, we would hope to get n! below: +After applying this branch:
- sage: len(set([ hash(mat(p)) for p in Permutations(1) ]))
- 1
- sage: len(set([ hash(mat(p)) for p in Permutations(2) ]))
- 1
- sage: len(set([ hash(mat(p)) for p in Permutations(3) ]))
- 5
- sage: len(set([ hash(mat(p)) for p in Permutations(4) ]))
- 1
- sage: len(set([ hash(mat(p)) for p in Permutations(5) ]))
- 16
- sage: len(set([ hash(mat(p)) for p in Permutations(6) ]))
- 16
- sage: len(set([ hash(mat(p)) for p in Permutations(7) ]))
- 32
- sage: len(set([ hash(mat(p)) for p in Permutations(8) ]))
- 1
+sage: def hashmat(p): m = p.to_matrix(); m.set_immutable(); return hash(m)
+sage: len(set(hashmat(p) for p in Permutations(1)))
+1
+sage: len(set(hashmat(p) for p in Permutations(2)))
+2
+sage: len(set(hashmat(p) for p in Permutations(3)))
+6
+sage: len(set(hashmat(p) for p in Permutations(4)))
+24
+sage: len(set(hashmat(p) for p in Permutations(5)))
+120
+sage: len(set(hashmat(p) for p in Permutations(6)))
+720
+sage: len(set(hashmat(p) for p in Permutations(7)))
+5040
+sage: len(set(hashmat(p) for p in Permutations(8)))
+40320
I stumbled on this when profiling some code using Weyl groups that
Description changed:
---
+++
@@ -5,6 +5,13 @@
sage: [ hash(mat(p)) for p in Permutations(4) ]
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
+ +I stumbled on this when profiling some code using Weyl groups that +heavily used caching (the hash of a weyl group element is the hash of the underlying matrix). I gained a speed factor of 10x by just tweaking the hash of matrices. + +Cheers,
After applying this branch:
@@ -28,9 +35,6 @@ 40320
-I stumbled on this when profiling some code using Weyl groups that
-heavily used caching (the hash of a weyl group element is the hash of the underlying matrix). I gained a speed factor of 10x by just tweaking the hash of matrices as in the attached patch. Now, I have no idea if in general that would be a good hash for matrices, so please some expert write an appropriate patch.
+As extra bonus, this branch ensures that scalar matrices have the same hash as the scalar. This means one extra case where `A == B` implies `hash(A) == hash(B)`.
-Cheers,
- Nicolas
Feel free to comment. This is essentially "needs review" except that I haven't run all doctests yet.
Nice! Would be interesting to test in conjunction with #23706.
Instead of hash(self.get_unsafe(i, j))
what about introducing self._entry_hash(i, j)
?
Replying to @videlec:
Instead of
hash(self.get_unsafe(i, j))
what about introducingself._entry_hash(i, j)
?
Please elaborate. Why should I do that?
Branch pushed to git repo; I updated commit sha1. This was a forced push. New commits:
d159670 | Fix doctests |
Reorganized the code a bit, added documentation in matrix0.pyx
to explain why I did things the way I did.
Replying to @jdemeyer:
Replying to @videlec:
Instead of
hash(self.get_unsafe(i, j))
what about introducingself._entry_hash(i, j)
?Please elaborate. Why should I do that?
To make hashing faster! That would be a method easy to implement for extension classes that store the data as a C attribute. In such situation you don't want to build a Python object each time you compute the hash of an entry. And you don't want to copy/paste of the _hash_
function either.
Replying to @videlec:
To make hashing faster! That would be a method easy to implement for extension classes that store the data as a C attribute. In such situation you don't want to build a Python object each time you compute the hash of an entry. And you don't want to copy/paste of the
_hash_
function either.
On the other hand, you force every Matrix
class to implement yet another method...
I'm not really convinced... in any case, that can wait for a follow-up ticket.
Replying to @jdemeyer:
Replying to @videlec:
To make hashing faster! That would be a method easy to implement for extension classes that store the data as a C attribute. In such situation you don't want to build a Python object each time you compute the hash of an entry. And you don't want to copy/paste of the
_hash_
function either.On the other hand, you force every
Matrix
class to implement yet another method...
It would not be forced: return hash(self._get_unsafe(i,j))
is a reasonable default.
I'm not really convinced... in any case, that can wait for a follow-up ticket.
Agreed, it can wait.
Replying to @videlec:
It would not be forced:
return hash(self._get_unsafe(i,j))
is a reasonable default.
But that would add an extra level of indirection in the general case, slowing that down.
Reviewer: Travis Scrimshaw, Vincent Delecroix
I don't think there should be any Python object getting created by _get_unsafe
, just a pointer to a Python object. What would be a use-case for implementing a custom _entry_hash
?
Anyways, since you say it can wait for a followup and this is a good improvement, I am setting it to a positive review. If you still want to discuss things first, feel free to revert.
Replying to @tscrim:
I don't think there should be any Python object getting created by
_get_unsafe
...only if the entries of the matrix are stored as Python objects. For many specialized classes (matrices over ZZ or over finite fields), the entries are stored in some C array, so _get_unsafe()
does need to create a Python object.
Some more comments:
This hash function is a lot better than the old one. However, it is far from perfect:
sage: M = diagonal_matrix([0, 1, -2, 1]); M.set_immutable(); hash(M)
0
Still, it is the best hash that I could come up with which is very efficient for sparse matrices: it takes time O(s)
with s
the number of non-zero entries of a matrix (independent of the size of the matrix). If you are willing to sort the indices (as suggested in [comment:7]), you get a better hash but with a runtime of O(s log(s))
.
The current hash function for generic dense matrices suffers from hard collisions with permutation matrices. For example: all permutation matrices of size 4 have hash 0!
I stumbled on this when profiling some code using Weyl groups that heavily used caching (the hash of a weyl group element is the hash of the underlying matrix). I gained a speed factor of 10x by just tweaking the hash of matrices.
Cheers, Nicolas
After applying this branch:
As extra bonus, this branch ensures that scalar matrices have the same hash as the scalar. This means one extra case where
A == B
implieshash(A) == hash(B)
.Depends on #24090
CC: @sagetrac-sage-combinat
Component: linear algebra
Keywords: Weyl groups, permutation matrices, hash
Author: Jeroen Demeyer
Branch:
da5c1ff
Reviewer: Travis Scrimshaw, Vincent Delecroix
Issue created by migration from https://trac.sagemath.org/ticket/10950