File tree 2 files changed +2
-8
lines changed
2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 262
262
"ElementwiseSubScalarFloatModule_basic" ,
263
263
"ElementwiseSubScalarIntModule_basic" ,
264
264
265
- # ERROR: Exception: Unsupported: missing default value for argument 0 in schema for aten.div.Tensor_mode
266
- "ElementwiseDivRoundingModeFloorModule_basic" ,
267
- "ElementwiseDivRoundingModeTruncModule_basic" ,
265
+ # ERROR: 'torch.aten.mul.Tensor' op operand #1 must be Any Torch tensor type, but got '!torch.int'
268
266
"AdaptiveAvgPool1dStaticLargerOutput_basic" ,
269
267
"AdaptiveAvgPool1dGeneralDynamic_basic" ,
270
268
274
272
"TensorFloatModule_basic" ,
275
273
"TensorIntModule_basic" ,
276
274
277
- # ERROR: Exception: Unsupported: missing default value for argument 0 in schema for aten.randn.generator
278
- "RandnGeneratorF64Module_basic" ,
279
- "RandnGeneratorModule_basic" ,
280
-
281
275
# START tests failing due to: complex floating point ops
282
276
# END tests failing due to: complex floating point ops
283
277
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def _check_meta_val(node):
77
77
assert len (node .args ) < len (node .target ._schema .arguments )
78
78
for i , argument in enumerate (
79
79
node .target ._schema .arguments [len (node .args ):]):
80
- if not argument .has_default_value ():
80
+ if not argument .has_default_value () and argument . name not in node . kwargs :
81
81
raise Exception (
82
82
f"Unsupported: missing default value for argument { i } in schema for { node .target } "
83
83
)
You can’t perform that action at this time.
0 commit comments