From a43c2f1e98241fd818b218a21dfcf1ca121fde05 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Thu, 26 May 2016 02:18:44 +0200
Subject: [PATCH] Fix dep structure of RNG test

---
 test/test_loopy.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/test_loopy.py b/test/test_loopy.py
index 70885b879..a341eb81b 100644
--- a/test/test_loopy.py
+++ b/test/test_loopy.py
@@ -2578,9 +2578,9 @@ def test_random123(ctx_factory, tp):
             """
             <> key2 = make_uint2(i, 324830944) {inames=i}
             <> key4 = make_uint4(i, 324830944, 234181, 2233) {inames=i}
-            <> ctr = make_uint4(0, 1, 2, 3) {inames=i}
-            <> real, ctr = philox4x32_TYPE(ctr, key2)
-            <> imag, ctr = threefry4x32_TYPE(ctr, key4)
+            <> ctr = make_uint4(0, 1, 2, 3)  {inames=i,id=init_ctr}
+            <> real, ctr = philox4x32_TYPE(ctr, key2)  {dep=init_ctr}
+            <> imag, ctr = threefry4x32_TYPE(ctr, key4)  {dep=init_ctr}
 
             out[i, 0] = real.s0 + 1j * imag.s0
             out[i, 1] = real.s1 + 1j * imag.s1
-- 
GitLab