mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00:00
24 lines
621 B
Python
24 lines
621 B
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
from caffe2.python import core
|
|
from hypothesis import given
|
|
import caffe2.python.hypothesis_test_util as hu
|
|
|
|
import unittest
|
|
|
|
|
|
class TestSoftplus(hu.HypothesisTestCase):
|
|
|
|
@given(X=hu.tensor(),
|
|
**hu.gcs)
|
|
def test_softplus(self, X, gc, dc):
|
|
op = core.CreateOperator("Softplus", ["X"], ["Y"])
|
|
self.assertDeviceChecks(dc, op, [X], [0])
|
|
self.assertGradientChecks(gc, op, [X], 0, [0])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|