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/33431 Some elementwise operators don't have shape and type inference specified for the output tensor: `BitwiseOr`, `BitwiseAnd`, `BitwiseXor`, `Not`, `Sign`. This change fixes this issue: - For `Not` and `Sign` operators, the output has the same type and shape as the input, so `IdenticalTypeAndShapeOfInput` function is used to specify that. - For bitwise operators created by `CAFFE2_SCHEMA_FOR_BINARY_BITWISE_OP` macro, the type and shape inference rules should be the same as for other binary element-wise operators, so `TensorInferenceFunction(ElementwiseOpShapeInference)` is used to specify that. Also some tests were modified to ensure that the shape and type are inferred (`ensure_outputs_are_inferred` parameter) Test Plan: ``` CAFFE2_ASSERT_SHAPEINFERENCE=1 buck test caffe2/caffe2/python/operator_test:elementwise_ops_test CAFFE2_ASSERT_SHAPEINFERENCE=1 buck test caffe2/caffe2/python/operator_test:math_ops_test ``` Note that the tests have to be executed with `CAFFE2_ASSERT_SHAPEINFERENCE=1` in order to fail upon shape inference failure. Reviewed By: idning Differential Revision: D19880164 fbshipit-source-id: 5d7902e045d79e5669e5e98dfb13a39711294939
54 lines
1.7 KiB
Python
54 lines
1.7 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,
|
|
ensure_outputs_are_inferred=True)
|
|
|
|
@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, ensure_outputs_are_inferred=True)
|
|
self.assertDeviceChecks(dc, op, [X], [0])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|