mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00:00
Summary: Per title Test Plan: Fixes existing tests Reviewed By: robieta Differential Revision: D28690296 fbshipit-source-id: d7b5b5065517373b75d501872814c89b24ec8cfc
30 lines
749 B
Python
30 lines
749 B
Python
|
|
|
|
|
|
|
|
|
|
import math
|
|
|
|
from caffe2.python import core
|
|
from hypothesis import given, settings
|
|
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):
|
|
@given(
|
|
X=hu.tensor(elements=hu.floats(min_value=-0.7, max_value=0.7)),
|
|
**hu.gcs)
|
|
@settings(deadline=10000)
|
|
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()
|