Skip to content

Commit b3f675f

Browse files
committed
Fix
1 parent eda1557 commit b3f675f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

test/legacy_test/test_kron_op.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,19 @@ def setUp(self):
157157
self.inputs = {'X': x, 'Y': y}
158158
self.outputs = {'Out': out_ref}
159159

160+
def test_check_grad(self):
161+
self.check_grad(
162+
['X', 'Y'],
163+
'Out',
164+
check_pir=True,
165+
)
166+
167+
def test_check_grad_ignore_x(self):
168+
pass
169+
170+
def test_check_grad_ignore_y(self):
171+
pass
172+
160173

161174
@unittest.skipIf(
162175
not core.is_compiled_with_cuda()

0 commit comments

Comments
 (0)