From 88f760cc32f4bc0bb581fc4e4f1ab190bd66745d Mon Sep 17 00:00:00 2001 From: qazal <77887910+Qazalin@users.noreply.github.com> Date: Fri, 15 Nov 2024 12:50:08 +0200 Subject: [PATCH] test_two_sum doesn't need del (#7711) --- test/test_schedule.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test_schedule.py b/test/test_schedule.py index 7b8d719904..b1a6f0ec95 100644 --- a/test/test_schedule.py +++ b/test/test_schedule.py @@ -311,7 +311,6 @@ class TestSchedule(unittest.TestCase): img = Tensor.empty(64,64) x = (img.sum(0) + img.sum(1)) out = x.relu() - del x # is 3 without this check_schedule(out, 2) #@unittest.skip("failing in old lazy")