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/20502 Following D15307410 removing more floating point exceptions in unit tests Reviewed By: hx89 Differential Revision: D15340930 fbshipit-source-id: 269fc75e0800bc9d39126767a0f3ca15cd8b0cad
52 lines
1.6 KiB
Python
52 lines
1.6 KiB
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
|
|
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 TestMathOps(serial.SerializedTestCase):
|
|
|
|
@given(X=hu.tensor(),
|
|
exponent=st.floats(min_value=2.0, max_value=3.0),
|
|
**hu.gcs)
|
|
def test_elementwise_power(self, X, exponent, gc, dc):
|
|
# negative integer raised with non-integer exponent is domain error
|
|
X = np.abs(X)
|
|
def powf(X):
|
|
return (X ** exponent,)
|
|
|
|
def powf_grad(g_out, outputs, fwd_inputs):
|
|
return (exponent * (fwd_inputs[0] ** (exponent - 1)) * g_out,)
|
|
|
|
op = core.CreateOperator(
|
|
"Pow", ["X"], ["Y"], exponent=exponent)
|
|
|
|
self.assertReferenceChecks(gc, op, [X], powf,
|
|
output_to_grad="Y",
|
|
grad_reference=powf_grad),
|
|
|
|
@serial.given(X=hu.tensor(),
|
|
exponent=st.floats(min_value=-3.0, max_value=3.0),
|
|
**hu.gcs)
|
|
def test_sign(self, X, exponent, gc, dc):
|
|
def signf(X):
|
|
return [np.sign(X)]
|
|
|
|
op = core.CreateOperator(
|
|
"Sign", ["X"], ["Y"])
|
|
|
|
self.assertReferenceChecks(gc, op, [X], signf),
|
|
self.assertDeviceChecks(dc, op, [X], [0])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|