"git@developer.sourcefind.cn:renzhc/diffusers_dcu.git" did not exist on "b8896a154aeef0256c53dc920cccd893a71d77ff"
Commit 09a9ad6d authored by Davis King's avatar Davis King
Browse files

Fixed inconsistent random seeding in test.

parent f9b272fe
...@@ -108,7 +108,7 @@ namespace ...@@ -108,7 +108,7 @@ namespace
matrix<double> L = randm(m,rank, rnd)*randm(rank,n, rnd); matrix<double> L = randm(m,rank, rnd)*randm(rank,n, rnd);
//matrix<double> R = randm(m,rank, rnd)*randm(rank,n2, rnd); //matrix<double> R = randm(m,rank, rnd)*randm(rank,n2, rnd);
matrix<double> R = L*randm(n,n2); matrix<double> R = L*randm(n,n2, rnd);
//matrix<double> L = randm(m,n, rnd); //matrix<double> L = randm(m,n, rnd);
//matrix<double> R = randm(m,n2, rnd); //matrix<double> R = randm(m,n2, rnd);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment