Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af72c76 commit d7280d2Copy full SHA for d7280d2
Lib/test/test_capi/test_opt.py
@@ -210,6 +210,8 @@ def f():
210
exe = get_first_executor(f)
211
self.assertIsNone(exe)
212
213
+
214
+@unittest.skipIf(os.getenv("PYTHON_UOPS_OPTIMIZE") == "0", "Needs uop optimizer to run.")
215
class TestUops(unittest.TestCase):
216
217
def test_basic_loop(self):
@@ -570,7 +572,7 @@ def testfunc(n):
570
572
self.assertLessEqual(count, 2)
571
573
574
-@unittest.skipIf(os.getenv("PYTHONUOPSOPTIMIZE", default=0) == 0, "Needs uop optimizer to run.")
575
576
class TestUopsOptimization(unittest.TestCase):
577
578
def _run_with_optimizer(self, testfunc, arg):
0 commit comments