Files
pytorch/caffe2/python/scope_test.py
Aaron Gokaslan 748bac8757 [BE]: Apply pyupgrade yield from and unit test alias upgrades (#94309)
Applies some more harmless pyupgrades. This one gets rid of deprecated aliases in unit_tests and more upgrades yield for loops into yield from generators which are more performance and propagates more information / exceptions from original generator. This is the modern recommended way of forwarding generators.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/94309
Approved by: https://github.com/albanD
2023-02-07 20:08:58 +00:00

153 lines
5.1 KiB
Python

from caffe2.python import scope, core, workspace
import unittest
import threading
import time
SUCCESS_COUNT = 0
def thread_runner(idx, testobj):
global SUCCESS_COUNT
testobj.assertEquals(scope.CurrentNameScope(), "")
testobj.assertEquals(scope.CurrentDeviceScope(), None)
namescope = "namescope_{}".format(idx)
dsc = core.DeviceOption(workspace.GpuDeviceType, idx)
with scope.DeviceScope(dsc):
with scope.NameScope(namescope):
testobj.assertEquals(scope.CurrentNameScope(), namescope + "/")
testobj.assertEquals(scope.CurrentDeviceScope(), dsc)
time.sleep(0.01 + idx * 0.01)
testobj.assertEquals(scope.CurrentNameScope(), namescope + "/")
testobj.assertEquals(scope.CurrentDeviceScope(), dsc)
testobj.assertEquals(scope.CurrentNameScope(), "")
testobj.assertEquals(scope.CurrentDeviceScope(), None)
SUCCESS_COUNT += 1
class TestScope(unittest.TestCase):
def testNamescopeBasic(self):
self.assertEqual(scope.CurrentNameScope(), "")
with scope.NameScope("test_scope"):
self.assertEqual(scope.CurrentNameScope(), "test_scope/")
self.assertEqual(scope.CurrentNameScope(), "")
def testNamescopeAssertion(self):
self.assertEqual(scope.CurrentNameScope(), "")
try:
with scope.NameScope("test_scope"):
self.assertEqual(scope.CurrentNameScope(), "test_scope/")
raise Exception()
except Exception:
pass
self.assertEqual(scope.CurrentNameScope(), "")
def testEmptyNamescopeBasic(self):
self.assertEqual(scope.CurrentNameScope(), "")
with scope.NameScope("test_scope"):
with scope.EmptyNameScope():
self.assertEqual(scope.CurrentNameScope(), "")
self.assertEqual(scope.CurrentNameScope(), "test_scope/")
def testDevicescopeBasic(self):
self.assertEqual(scope.CurrentDeviceScope(), None)
dsc = core.DeviceOption(workspace.GpuDeviceType, 9)
with scope.DeviceScope(dsc):
self.assertEqual(scope.CurrentDeviceScope(), dsc)
self.assertEqual(scope.CurrentDeviceScope(), None)
def testEmptyDevicescopeBasic(self):
self.assertEqual(scope.CurrentDeviceScope(), None)
dsc = core.DeviceOption(workspace.GpuDeviceType, 9)
with scope.DeviceScope(dsc):
self.assertEqual(scope.CurrentDeviceScope(), dsc)
with scope.EmptyDeviceScope():
self.assertEqual(scope.CurrentDeviceScope(), None)
self.assertEqual(scope.CurrentDeviceScope(), dsc)
self.assertEqual(scope.CurrentDeviceScope(), None)
def testDevicescopeAssertion(self):
self.assertEqual(scope.CurrentDeviceScope(), None)
dsc = core.DeviceOption(workspace.GpuDeviceType, 9)
try:
with scope.DeviceScope(dsc):
self.assertEqual(scope.CurrentDeviceScope(), dsc)
raise Exception()
except Exception:
pass
self.assertEqual(scope.CurrentDeviceScope(), None)
def testTags(self):
self.assertEqual(scope.CurrentDeviceScope(), None)
extra_info1 = ["key1:value1"]
extra_info2 = ["key2:value2"]
extra_info3 = ["key3:value3"]
extra_info_1_2 = ["key1:value1", "key2:value2"]
extra_info_1_2_3 = ["key1:value1", "key2:value2", "key3:value3"]
with scope.DeviceScope(core.DeviceOption(0, extra_info=extra_info1)):
self.assertEqual(scope.CurrentDeviceScope().extra_info, extra_info1)
with scope.DeviceScope(core.DeviceOption(0, extra_info=extra_info2)):
self.assertEqual(scope.CurrentDeviceScope().extra_info, extra_info_1_2)
with scope.DeviceScope(core.DeviceOption(0, extra_info=extra_info3)):
self.assertEqual(
scope.CurrentDeviceScope().extra_info, extra_info_1_2_3
)
self.assertEqual(scope.CurrentDeviceScope().extra_info, extra_info_1_2)
self.assertEqual(scope.CurrentDeviceScope().extra_info, extra_info1)
self.assertEqual(scope.CurrentDeviceScope(), None)
def testMultiThreaded(self):
"""
Test that name/device scope are properly local to the thread
and don't interfere
"""
global SUCCESS_COUNT
self.assertEqual(scope.CurrentNameScope(), "")
self.assertEqual(scope.CurrentDeviceScope(), None)
threads = []
for i in range(4):
threads.append(threading.Thread(
target=thread_runner,
args=(i, self),
))
for t in threads:
t.start()
with scope.NameScope("master"):
self.assertEqual(scope.CurrentDeviceScope(), None)
self.assertEqual(scope.CurrentNameScope(), "master/")
for t in threads:
t.join()
self.assertEqual(scope.CurrentNameScope(), "master/")
self.assertEqual(scope.CurrentDeviceScope(), None)
# Ensure all threads succeeded
self.assertEqual(SUCCESS_COUNT, 4)