mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/16106 Differential Revision: D13709490 Pulled By: bddppq fbshipit-source-id: 1b5b32261f06543371f7bd7ac9b11957a5eb4ad0
30 lines
901 B
Python
30 lines
901 B
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
import math
|
|
|
|
from caffe2.python import core
|
|
from hypothesis import given
|
|
from hypothesis import strategies as st
|
|
import caffe2.python.hypothesis_test_util as hu
|
|
import caffe2.python.serialized_test.serialized_test_util as serial
|
|
|
|
import numpy as np
|
|
import unittest
|
|
|
|
|
|
class TestErfOp(serial.SerializedTestCase):
|
|
@serial.given(
|
|
X=hu.tensor(elements=st.floats(min_value=-0.7, max_value=0.7)),
|
|
**hu.gcs)
|
|
def test_erf(self, X, gc, dc):
|
|
op = core.CreateOperator('Erf', ["X"], ["Y"])
|
|
self.assertReferenceChecks(gc, op, [X], lambda x: (np.vectorize(math.erf)(X),))
|
|
self.assertDeviceChecks(dc, op, [X], [0])
|
|
self.assertGradientChecks(gc, op, [X], 0, [0])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|