mirror of https://github.com/Jittor/Jittor
33 lines
923 B
Python
33 lines
923 B
Python
# ***************************************************************
|
|
# Copyright (c) 2021 Jittor. All Rights Reserved.
|
|
# Maintainers: Dun Liang <randonlang@gmail.com>.
|
|
# This file is subject to the terms and conditions defined in
|
|
# file 'LICENSE.txt', which is part of this source code package.
|
|
# ***************************************************************
|
|
import unittest
|
|
import jittor as jt
|
|
import numpy as np
|
|
|
|
|
|
class TestFuser(unittest.TestCase):
|
|
def test_wrong_fuse(self):
|
|
a = jt.array([1])
|
|
b = jt.random([10,])
|
|
c = (a * b).sum() + (a + 1)
|
|
print(c)
|
|
|
|
def test_wrong_fuse2(self):
|
|
a = jt.array([1])
|
|
b = jt.random([10,])
|
|
c = jt.random([100,])
|
|
bb = a*b
|
|
cc = a*c
|
|
jt.sync([bb,cc])
|
|
np.testing.assert_allclose(b.data, bb.data)
|
|
np.testing.assert_allclose(c.data, cc.data)
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main() |