mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00:00
Summary: Verified both tests are passing on rocm 2.1 env. Pull Request resolved: https://github.com/pytorch/pytorch/pull/16853 Differential Revision: D13996279 Pulled By: bddppq fbshipit-source-id: c0df610d7d9ca8d80ed2d1339cdadef59105a71c
73 lines
2.3 KiB
Python
73 lines
2.3 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
|
|
|
|
import hypothesis.strategies as st
|
|
import numpy as np
|
|
from functools import partial
|
|
|
|
from caffe2.python import core
|
|
import caffe2.python.hypothesis_test_util as hu
|
|
import caffe2.python.serialized_test.serialized_test_util as serial
|
|
|
|
|
|
def _unique_ref(x, return_inverse):
|
|
ret = np.unique(x, return_inverse=return_inverse)
|
|
if not return_inverse:
|
|
ret = [ret]
|
|
return ret
|
|
|
|
|
|
class TestUniqueOps(serial.SerializedTestCase):
|
|
@serial.given(
|
|
X=hu.tensor1d(
|
|
# allow empty
|
|
min_len=0,
|
|
dtype=np.int32,
|
|
# allow negatives
|
|
elements=st.integers(min_value=-10, max_value=10)),
|
|
return_remapping=st.booleans(),
|
|
**hu.gcs
|
|
)
|
|
def test_unique_op(self, X, return_remapping, gc, dc):
|
|
# impl of unique op does not guarantees return order, sort the input
|
|
# so different impl return same outputs
|
|
X = np.sort(X)
|
|
|
|
op = core.CreateOperator(
|
|
"Unique",
|
|
['X'],
|
|
["U", "remap"] if return_remapping else ["U"],
|
|
)
|
|
self.assertDeviceChecks(
|
|
device_options=dc,
|
|
op=op,
|
|
inputs=[X],
|
|
outputs_to_check=[0, 1] if return_remapping else [0]
|
|
)
|
|
self.assertReferenceChecks(
|
|
device_option=gc,
|
|
op=op,
|
|
inputs=[X],
|
|
reference=partial(_unique_ref, return_inverse=return_remapping),
|
|
)
|
|
|
|
if __name__ == "__main__":
|
|
import unittest
|
|
unittest.main()
|