Skip to content

Commit 85b3af5

Browse files
committed
remove the non-used generators
1 parent e23962a commit 85b3af5

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

tests/test_data.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -493,20 +493,6 @@ def integers_ndim(ndim):
493493
i += 1
494494

495495

496-
def gen1():
497-
i = 0
498-
while True:
499-
yield np.ones((10, 100)) * i
500-
i += 1
501-
502-
503-
def gen2():
504-
i = 0
505-
while True:
506-
yield np.ones((20, 100)) * i
507-
i += 1
508-
509-
510496
@pytest.mark.usefixtures("strict_float32")
511497
class TestMinibatch:
512498
data = np.random.rand(30, 10)

0 commit comments

Comments
 (0)