mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00:00
37 lines
921 B
Python
37 lines
921 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 hypothesis.strategies as st
|
|
import caffe2.python.hypothesis_test_util as hu
|
|
import numpy as np
|
|
|
|
import unittest
|
|
|
|
|
|
class TestCeil(hu.HypothesisTestCase):
|
|
|
|
@given(X=hu.tensor(),
|
|
engine=st.sampled_from(["", "CUDNN"]),
|
|
**hu.gcs)
|
|
def test_ceil(self, X, gc, dc, engine):
|
|
op = core.CreateOperator("Ceil", ["X"], ["Y"], engine=engine)
|
|
|
|
def ceil_ref(X):
|
|
return (np.ceil(X),)
|
|
|
|
self.assertReferenceChecks(
|
|
device_option=gc,
|
|
op=op,
|
|
inputs=[X],
|
|
reference=ceil_ref)
|
|
|
|
# Check over multiple devices
|
|
self.assertDeviceChecks(dc, op, [X], [0])
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|