Dorothydu's picture
Upload 50 random repository samples
9d3c8f5 verified
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
import unittest
import pytest
from tests.common import onnx_script_test_case
from tests.models import onnxfns1A
class TestOnnxFns(onnx_script_test_case.OnnxScriptTestCase):
@classmethod
def setUpClass(cls):
super().setUpClass()
cls.rtol = 1e-05
def test_onnxfns_relu(self):
self.run_onnx_test(onnxfns1A.Relu)
def test_onnxfns_selu(self):
self.run_onnx_test(onnxfns1A.Selu)
def test_onnxfns_elu(self):
self.run_onnx_test(onnxfns1A.Elu)
def test_onnxfns_elu05(self):
self.run_onnx_test(onnxfns1A.Elu05)
def test_onnxfns_thresholded_relu(self):
self.run_onnx_test(onnxfns1A.ThresholdedRelu)
def test_onnxfns_leaky_relu(self):
self.run_onnx_test(onnxfns1A.LeakyRelu)
def test_onnxfns_prelu(self):
self.run_onnx_test(onnxfns1A.PRelu)
def test_onnxfns_hard_sigmoid(self):
self.run_onnx_test(onnxfns1A.HardSigmoid)
def test_onnxfns_shrink(self):
self.run_onnx_test(onnxfns1A.Shrink)
def test_onnxfns_hard_softplus(self):
self.run_onnx_test(onnxfns1A.Softplus)
def test_onnxfns_hard_softsign(self):
self.run_onnx_test(onnxfns1A.Softsign)
@pytest.mark.xfail(
strict=True,
reason="Clip has optional input min and max. Need to find out how to pass default min and max to the test case executor.",
)
def test_onnxfns_hard_clip(self):
self.run_onnx_test(onnxfns1A.Clip)
if __name__ == "__main__":
unittest.main(verbosity=2)