2017-03-29 13:44:02 +00:00
|
|
|
## @package test_util
|
|
|
|
|
# Module caffe2.python.test_util
|
2016-05-13 21:43:48 +00:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
from __future__ import division
|
|
|
|
|
from __future__ import print_function
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
import numpy as np
|
2017-08-30 00:34:04 +00:00
|
|
|
from caffe2.python import core, workspace
|
2016-05-13 21:43:48 +00:00
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def rand_array(*dims):
|
|
|
|
|
# np.random.rand() returns float instead of 0-dim array, that's why need to
|
|
|
|
|
# do some tricks
|
|
|
|
|
return np.array(np.random.rand(*dims) - 0.5).astype(np.float32)
|
|
|
|
|
|
|
|
|
|
|
2018-09-25 17:48:02 +00:00
|
|
|
def randBlob(name, type, *dims, **kwargs):
|
|
|
|
|
offset = kwargs['offset'] if 'offset' in kwargs else 0.0
|
|
|
|
|
workspace.FeedBlob(name, np.random.rand(*dims).astype(type) + offset)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def randBlobFloat32(name, *dims, **kwargs):
|
|
|
|
|
randBlob(name, np.float32, *dims, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def randBlobsFloat32(names, *dims, **kwargs):
|
|
|
|
|
for name in names:
|
|
|
|
|
randBlobFloat32(name, *dims, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def str_compare(a, b, encoding="utf8"):
|
|
|
|
|
if isinstance(a, bytes):
|
|
|
|
|
a = a.decode(encoding)
|
|
|
|
|
if isinstance(b, bytes):
|
|
|
|
|
b = b.decode(encoding)
|
|
|
|
|
return a == b
|
|
|
|
|
|
|
|
|
|
|
2016-05-13 21:43:48 +00:00
|
|
|
class TestCase(unittest.TestCase):
|
2016-07-21 17:16:42 +00:00
|
|
|
@classmethod
|
|
|
|
|
def setUpClass(cls):
|
|
|
|
|
workspace.GlobalInit([
|
|
|
|
|
'caffe2',
|
|
|
|
|
'--caffe2_log_level=0',
|
|
|
|
|
])
|
2017-08-30 00:34:04 +00:00
|
|
|
# clear the default engines settings to separate out its
|
|
|
|
|
# affect from the ops tests
|
|
|
|
|
core.SetEnginePref({}, {})
|
2016-07-21 17:16:42 +00:00
|
|
|
|
2016-05-13 21:43:48 +00:00
|
|
|
def setUp(self):
|
2016-09-06 22:54:56 +00:00
|
|
|
self.ws = workspace.C.Workspace()
|
2016-05-13 21:43:48 +00:00
|
|
|
workspace.ResetWorkspace()
|
|
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
|
workspace.ResetWorkspace()
|