mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00:00
17 lines
421 B
Python
17 lines
421 B
Python
|
|
from __future__ import absolute_import
|
||
|
|
from __future__ import division
|
||
|
|
from __future__ import print_function
|
||
|
|
from __future__ import unicode_literals
|
||
|
|
|
||
|
|
from caffe2.python import convert, workspace
|
||
|
|
from caffe2.proto import caffe2_pb2, torch_pb2
|
||
|
|
import unittest
|
||
|
|
import numpy as np
|
||
|
|
|
||
|
|
class TestOperator(unittest.TestCase):
|
||
|
|
def setUp(self):
|
||
|
|
workspace.ResetWorkspace()
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
unittest.main()
|