remove fake test

This commit is contained in:
George Hotz 2023-02-25 10:21:07 -08:00
parent 8b96522e1d
commit 1d01842232
1 changed files with 0 additions and 4 deletions

View File

@ -163,10 +163,6 @@ class TestSpeed(unittest.TestCase):
def f(a, b): return a+2.0
helper_test_generic_square('add_constant', 4096, f, f, onearg=True)
def test_add_constant_zero(self):
def f(a, b): return a+0.0
helper_test_generic_square('add_constant_zero', 4096, f, f, onearg=True)
def test_add_sq(self):
def f(a, b): return a*a + b*b
helper_test_generic_square('add_sq', 4096, f, f)