We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eda1557 commit b3f675fCopy full SHA for b3f675f
test/legacy_test/test_kron_op.py
@@ -157,6 +157,19 @@ def setUp(self):
157
self.inputs = {'X': x, 'Y': y}
158
self.outputs = {'Out': out_ref}
159
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
172
173
174
@unittest.skipIf(
175
not core.is_compiled_with_cuda()
0 commit comments