mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00:00
Summary: Closes https://github.com/caffe2/caffe2/pull/1260 Differential Revision: D5906739 Pulled By: Yangqing fbshipit-source-id: e482ba9ba60b5337d9165f28f7ec68d4518a0902
78 lines
2.7 KiB
Python
78 lines
2.7 KiB
Python
# Copyright (c) 2016-present, Facebook, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
##############################################################################
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
from caffe2.python import core, workspace
|
|
from caffe2.python.test_util import TestCase
|
|
import numpy as np
|
|
|
|
|
|
lengths = [[0], [1, 2], [1, 0, 2, 0]]
|
|
features1 = [[],
|
|
[1, 2, 2],
|
|
[[1, 1], [2, 2], [2, 2]]
|
|
]
|
|
features2 = [[],
|
|
[2, 4, 4],
|
|
[[2, 2], [4, 4], [4, 4]]
|
|
]
|
|
|
|
lengths_exp = [[1], [1, 2], [1, 1, 2, 1]]
|
|
features1_exp = [[0],
|
|
[1, 2, 2],
|
|
[[1, 1], [0, 0], [2, 2], [2, 2], [0, 0]]]
|
|
features2_exp = [[0],
|
|
[2, 4, 4],
|
|
[[2, 2], [0, 0], [4, 4], [4, 4], [0, 0]]]
|
|
|
|
|
|
class TestEmptySampleOps(TestCase):
|
|
def test_emptysample(self):
|
|
for i in range(0, 3):
|
|
PadEmptyTest = core.CreateOperator(
|
|
'PadEmptySamples',
|
|
['lengths', 'features1', 'features2'],
|
|
['out_lengths', 'out_features1', 'out_features2'],
|
|
)
|
|
workspace.FeedBlob(
|
|
'lengths',
|
|
np.array(lengths[i], dtype=np.int32))
|
|
workspace.FeedBlob(
|
|
'features1',
|
|
np.array(features1[i], dtype=np.int64))
|
|
workspace.FeedBlob(
|
|
'features2',
|
|
np.array(features2[i], dtype=np.int64))
|
|
workspace.RunOperatorOnce(PadEmptyTest)
|
|
np.testing.assert_allclose(
|
|
lengths_exp[i],
|
|
workspace.FetchBlob('out_lengths'),
|
|
atol=1e-4, rtol=1e-4, err_msg='Mismatch in lengths')
|
|
np.testing.assert_allclose(
|
|
features1_exp[i],
|
|
workspace.FetchBlob('out_features1'),
|
|
atol=1e-4, rtol=1e-4, err_msg='Mismatch in features1')
|
|
np.testing.assert_allclose(
|
|
features2_exp[i],
|
|
workspace.FetchBlob('out_features2'),
|
|
atol=1e-4, rtol=1e-4, err_msg='Mismatch in features2')
|
|
|
|
if __name__ == "__main__":
|
|
import unittest
|
|
unittest.main()
|