Esempio n. 1
0
    def test_limb_conversion(self, run_eagerly, x_np, tf_type, max_bitlen,
                             tf_shape):
        context = tf_execution_context(run_eagerly)

        with context.scope():
            x = import_tensor(x_np)
            assert x.shape.as_list() == [1, 2], x.shape
            x_limbs = export_limbs_tensor(x,
                                          dtype=tf_type,
                                          max_bitlen=max_bitlen)
            assert x_limbs.shape.as_list() == x.shape.as_list() + (
                [tf_shape] if run_eagerly else [None]), x_limbs.shape
            x_norm = import_limbs_tensor(x_limbs)
            assert x_norm.shape.as_list() == x.shape.as_list(), x_norm.shape

            y = import_tensor(np.array([[30, 40]]))
            assert y.shape.as_list() == [1, 2], y.shape
            y_limbs = export_limbs_tensor(y,
                                          dtype=tf_type,
                                          max_bitlen=max_bitlen)
            assert y_limbs.shape.as_list() == y.shape.as_list() + (
                [tf_shape] if run_eagerly else [None]), y_limbs.shape
            y_norm = import_limbs_tensor(y_limbs)
            assert y_norm.shape.as_list() == y.shape.as_list(), y_norm.shape

            z = x_norm + y_norm
            res = export_tensor(z)

        np.testing.assert_array_equal(
            context.evaluate(res).astype(str), np.array([["40", "60"]]))
Esempio n. 2
0
    def test_inv(self, run_eagerly):
        def egcd(a, b):
            if a == 0:
                return (b, 0, 1)
            g, y, x = egcd(b % a, a)
            return (g, x - (b // a) * y, y)

        def inv(a, m):
            g, b, _ = egcd(a, m)
            return b % m

        x_raw = np.array([[123456789123456789123456789]])
        n_raw = np.array([[10000000]])
        y_raw = np.array([[inv(123456789123456789123456789, 10000000)]])

        context = tf_execution_context(run_eagerly)
        with context.scope():

            x = import_tensor(x_raw)
            n = import_tensor(n_raw)
            y = x.inv(n)
            y = export_tensor(y)

        np.testing.assert_array_equal(
            context.evaluate(y).astype(str), y_raw.astype(str))
Esempio n. 3
0
    def test_random_rsa_modulus(self, run_eagerly):
        bitlength = 128
        expected_shape = (1, 1)

        context = tf_execution_context(run_eagerly)
        with context.scope():
            p, q, n = random_rsa_modulus(bitlength=bitlength)

            p = export_tensor(p)
            q = export_tensor(q)
            n = export_tensor(n)

        assert p.shape == expected_shape
        assert q.shape == expected_shape
        assert n.shape == expected_shape

        assert isinstance(context.evaluate(p)[0][0], bytes)
        assert isinstance(context.evaluate(q)[0][0], bytes)
        assert isinstance(context.evaluate(n)[0][0], bytes)
Esempio n. 4
0
    def test_uniform_random(self, run_eagerly):
        shape = (2, 2)
        maxval = 2**100

        context = tf_execution_context(run_eagerly)
        with context.scope():
            x = random_uniform(shape=shape, maxval=maxval)
            x = export_tensor(x)

        assert x.shape == shape
        assert context.evaluate(x).shape == shape
Esempio n. 5
0
    def test_eval(self, run_eagerly):
        x_raw = np.array(
            [[123456789123456789123456789, 123456789123456789123456789]])

        context = tf_execution_context(run_eagerly)
        with context.scope():
            x = import_tensor(x_raw)
            assert x.shape == x_raw.shape
            x = export_tensor(x)
            assert x.shape == x_raw.shape

        np.testing.assert_array_equal(
            context.evaluate(x).astype(str), x_raw.astype(str))
Esempio n. 6
0
    def test_op(self, run_eagerly, op_name, op, x_raw, y_raw):
        z_raw = op(x_raw, y_raw)

        context = tf_execution_context(run_eagerly)
        with context.scope():

            x = import_tensor(x_raw)
            y = import_tensor(y_raw)
            z = op(x, y)

            z = export_tensor(z)

        np.testing.assert_array_equal(
            context.evaluate(z).astype(str), z_raw.astype(str))
Esempio n. 7
0
    def test_mod(self, run_eagerly):
        x_raw = np.array(
            [[123456789123456789123456789, 123456789123456789123456789]])
        n_raw = np.array([[10000]])
        y_raw = x_raw % n_raw

        context = tf_execution_context(run_eagerly)
        with context.scope():

            x = import_tensor(x_raw)
            n = import_tensor(n_raw)
            y = x % n
            y = export_tensor(y)

        np.testing.assert_array_equal(
            context.evaluate(y).astype(str), y_raw.astype(str))
Esempio n. 8
0
    def test_pow(self, run_eagerly, x_raw, y_raw):
        m_raw = np.array([[5]])

        z_raw = np.mod(np.power(x_raw, y_raw), m_raw)

        context = tf_execution_context(run_eagerly)
        with context.scope():

            x = import_tensor(x_raw)
            y = import_tensor(y_raw)
            m = import_tensor(m_raw)
            z = pow(x, y, m)

            z = export_tensor(z)

        np.testing.assert_array_equal(
            context.evaluate(z).astype(str), z_raw.astype(str))
Esempio n. 9
0
    def test_foo(
        self,
        x,
        tf_cast,
        np_cast,
        expected,
        convert_to_tf_tensor,
        run_eagerly,
    ):

        context = tf_execution_context(run_eagerly)
        with context.scope():

            y = tf.convert_to_tensor(x) if convert_to_tf_tensor else x
            y = import_tensor(y)
            z = export_tensor(y, dtype=tf_cast)

        actual = context.evaluate(z)
        actual = actual.astype(np_cast) if np_cast else actual
        assert (actual.dtype == expected.dtype
                ), "'{}' did not match expected '{}'".format(
                    actual.dtype, expected.dtype)
        np.testing.assert_array_equal(actual, expected)